/* ============================================================
   LARA SALON — Main Stylesheet
   Fonts: Playfair Display (display) + Jost (body) via Google Fonts
   ============================================================ */

:root {
  --ivory: #faf7f2;
  --cream: #f3ede4;
  --white: #ffffff;
  --charcoal: #221f1c;
  --ink: #3a352f;
  --muted: #8a8178;
  --rose: #c19a6b;
  --rose-dark: #a97f4f;
  --rose-light: #e8d7c0;
  --blush: #f7ede2;
  --shadow-sm: 0 4px 14px rgba(34, 31, 28, 0.07);
  --shadow-md: 0 12px 34px rgba(34, 31, 28, 0.12);
  --shadow-lg: 0 24px 60px rgba(34, 31, 28, 0.18);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.2;
  font-weight: 600;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

section { padding: 96px 0; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ivory);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader__logo {
  font-family: var(--font-display);
  font-size: 2rem; letter-spacing: 4px; color: var(--charcoal);
  animation: pulse 1.6s ease-in-out infinite;
}
.preloader__logo span { color: var(--rose); }
.preloader__bar {
  width: 160px; height: 2px; background: var(--rose-light);
  overflow: hidden; border-radius: 2px;
}
.preloader__bar::after {
  content: ""; display: block; height: 100%; width: 40%;
  background: var(--rose);
  animation: loading 1.2s var(--ease) infinite;
}
@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s ease, box-shadow 0.4s ease;
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

/* Inner pages open on a dark page-hero image; keep header text light until scrolled */
body:not([data-page="home"]) .header:not(.scrolled) .logo,
body:not([data-page="home"]) .header:not(.scrolled) .nav__link {
  color: var(--white);
}
body:not([data-page="home"]) .header:not(.scrolled) .logo span {
  color: var(--rose-light);
}
body:not([data-page="home"]) .header:not(.scrolled) .nav__link::after {
  background: var(--rose-light);
}
body:not([data-page="home"]) .header:not(.scrolled) .nav__link.active {
  color: var(--rose-light);
}
body:not([data-page="home"]) .header:not(.scrolled) .hamburger span {
  background: var(--white);
}
body:not([data-page="home"]) .header:not(.scrolled) .btn--outline {
  color: var(--white); border-color: rgba(255, 255, 255, 0.6);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem; letter-spacing: 3px;
  color: var(--charcoal); font-weight: 700;
}
.logo span { color: var(--rose); }

.nav__list { display: flex; gap: 34px; align-items: center; }
.nav__link {
  position: relative;
  font-size: 0.92rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--rose);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--rose-dark); }
.nav__link:hover::after, .nav__link.active::after {
  transform: scaleX(1); transform-origin: left;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 34px;
  background: var(--charcoal); color: var(--white);
  font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--charcoal); border-radius: 50px;
  position: relative; overflow: hidden; z-index: 1;
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--rose);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}
.btn:hover { border-color: var(--rose); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:hover::before { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn--outline {
  background: transparent; color: var(--charcoal);
}
.btn--outline:hover { color: var(--white); }
.btn--light { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn--light:hover { color: var(--white); }

.nav__cta { padding: 11px 26px; }

/* Hamburger */
.hamburger {
  display: none;
  background: none; border: 0;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  z-index: 1102;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--charcoal);
  transition: transform 0.4s var(--ease), opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  padding: 140px 0 80px;
  background:
    linear-gradient(100deg, rgba(250, 247, 242, 0.97) 38%, rgba(250, 247, 242, 0.35) 70%, rgba(250, 247, 242, 0.05)),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?q=80&w=1920&auto=format&fit=crop") center/cover no-repeat;
}
.hero__content { max-width: 620px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.85rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--rose-dark); margin-bottom: 22px;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}
.hero__eyebrow::before {
  content: ""; width: 48px; height: 1px; background: var(--rose);
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 26px;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.4s forwards;
}
.hero__title em { font-style: italic; color: var(--rose-dark); }
.hero__text {
  font-size: 1.15rem; color: var(--muted); max-width: 480px;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}
.hero__actions {
  display: flex; gap: 18px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}
.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted);
}
.hero__scroll svg { width: 20px; height: 20px; color: var(--rose); animation: bob 1.8s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 190px 0 110px;
  text-align: center;
  position: relative;
  background:
    linear-gradient(rgba(34, 31, 28, 0.62), rgba(34, 31, 28, 0.62)),
    var(--page-hero-img, url("https://images.unsplash.com/photo-1560066984-138dadb4c035?q=80&w=1920&auto=format&fit=crop")) center/cover no-repeat;
}
.page-hero__title {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 14px;
  animation: fadeUp 0.9s var(--ease) 0.15s backwards;
}
.page-hero__crumbs {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px; text-transform: uppercase; font-size: 0.85rem;
  animation: fadeUp 0.9s var(--ease) 0.35s backwards;
}
.page-hero__crumbs a { color: var(--rose-light); transition: color 0.3s ease; }
.page-hero__crumbs a:hover { color: var(--white); }

/* ---------- Section headings ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head--left { text-align: left; margin-inline: 0; }
.section-head__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--rose-dark);
  font-size: 0.82rem; letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head__eyebrow::before, .section-head__eyebrow::after {
  content: ""; width: 34px; height: 1px; background: var(--rose);
}
.section-head--left .section-head__eyebrow::after { display: none; }
.section-head__title { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 16px; }
.section-head__text { color: var(--muted); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--left { transform: translateX(-56px); }
.reveal--right { transform: translateX(56px); }
.reveal--left.visible, .reveal--right.visible { transform: translateX(0); }
.reveal--zoom { transform: scale(0.9); }
.reveal--zoom.visible { transform: scale(1); }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.09); }
.service-card__price {
  position: absolute; top: 16px; right: 16px;
  background: rgba(250, 247, 242, 0.94);
  color: var(--rose-dark);
  font-size: 0.82rem; letter-spacing: 1px; font-weight: 600;
  padding: 7px 16px; border-radius: 40px;
  box-shadow: var(--shadow-sm);
}
.service-card__body { padding: 30px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.service-card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--blush); color: var(--rose-dark);
  border-radius: 50%;
  margin-bottom: 18px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.5s var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--rose); color: var(--white);
  transform: rotate(-8deg) scale(1.08);
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card__title { font-size: 1.35rem; margin-bottom: 10px; }
.service-card__text { color: var(--muted); font-size: 0.98rem; flex: 1; }
.service-card__link {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--rose-dark); font-size: 0.88rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  width: fit-content;
  transition: gap 0.35s var(--ease), color 0.3s ease;
}
.service-card__link svg { width: 16px; height: 16px; }
.service-card__link:hover { gap: 14px; color: var(--charcoal); }

/* ---------- About / split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split__media { position: relative; }
.split__media > img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; object-fit: cover; width: 100%;
}
.split__media::before {
  content: "";
  position: absolute; inset: 24px -24px -24px 24px;
  border: 2px solid var(--rose-light);
  border-radius: var(--radius);
  z-index: -1;
  transition: inset 0.5s var(--ease);
}
.split__media:hover::before { inset: 14px -14px -14px 14px; }
.split__badge {
  position: absolute; bottom: 34px; left: -34px;
  background: var(--rose); color: var(--white);
  border-radius: var(--radius);
  padding: 24px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: floaty 4s ease-in-out infinite;
}
.split__badge strong { font-family: var(--font-display); font-size: 2.3rem; display: block; }
.split__badge span { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.split__list { margin: 26px 0 34px; display: grid; gap: 14px; }
.split__list li {
  display: flex; align-items: center; gap: 14px;
  color: var(--ink);
}
.split__list svg {
  width: 20px; height: 20px; color: var(--rose); flex-shrink: 0;
}

/* ---------- Stats ---------- */
.stats {
  background: var(--charcoal);
  padding: 80px 0;
  background-image:
    linear-gradient(rgba(34, 31, 28, 0.93), rgba(34, 31, 28, 0.93)),
    url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?q=80&w=1920&auto=format&fit=crop");
  background-size: cover; background-position: center; background-attachment: fixed;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--rose-light);
}
.stat__label {
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 2px; text-transform: uppercase; font-size: 0.85rem;
  margin-top: 6px;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease, border-color 0.45s ease;
}
.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--rose);
}
.feature__icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: grid; place-items: center;
  background: var(--blush); color: var(--rose-dark);
  border-radius: 50%;
  transition: transform 0.5s var(--ease), background 0.4s ease, color 0.4s ease;
}
.feature:hover .feature__icon {
  background: var(--rose); color: var(--white);
  transform: scale(1.1) rotate(6deg);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.filter-bar {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px; margin-bottom: 46px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--rose-light);
  color: var(--ink);
  padding: 10px 26px; border-radius: 40px;
  font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.3s var(--ease);
}
.filter-btn:hover { transform: translateY(-2px); border-color: var(--rose); }
.filter-btn.active { background: var(--rose); border-color: var(--rose); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1.05;
  cursor: pointer;
  opacity: 1; transform: scale(1);
  transition: opacity 0.45s ease, transform 0.45s var(--ease);
}
.gallery-item.hide { opacity: 0; transform: scale(0.85); position: absolute; pointer-events: none; visibility: hidden; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(34, 31, 28, 0.82), rgba(34, 31, 28, 0.05) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay h3 {
  color: var(--white); font-size: 1.25rem;
  transform: translateY(16px);
  transition: transform 0.5s var(--ease);
}
.gallery-item__overlay span {
  color: var(--rose-light); font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  transform: translateY(16px);
  transition: transform 0.5s var(--ease) 0.08s;
}
.gallery-item:hover .gallery-item__overlay h3,
.gallery-item:hover .gallery-item__overlay span { transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(20, 18, 16, 0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(86vw, 980px); max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: scale(0.92);
  transition: transform 0.45s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox__caption {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  color: var(--white); font-family: var(--font-display); font-size: 1.3rem;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--rose); transform: scale(1.08); }
.lightbox__close { top: 28px; right: 28px; }
.lightbox__nav svg, .lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav--prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 28px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.08); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s ease;
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.team-card__media { position: relative; overflow: hidden; aspect-ratio: 1 / 1.1; }
.team-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.6s ease;
}
.team-card:hover .team-card__media img { transform: scale(1.08); }
.team-card__socials {
  position: absolute; inset: auto 0 0 0;
  display: flex; justify-content: center; gap: 12px;
  padding: 18px;
  background: linear-gradient(to top, rgba(34, 31, 28, 0.75), transparent);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.team-card:hover .team-card__socials { transform: translateY(0); }
.team-card__socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--white); color: var(--charcoal);
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}
.team-card__socials a:hover { background: var(--rose); color: var(--white); transform: translateY(-4px); }
.team-card__socials svg { width: 17px; height: 17px; }
.team-card__body { padding: 26px 24px 30px; }
.team-card__body h3 { font-size: 1.3rem; }
.team-card__role {
  color: var(--rose-dark); font-size: 0.82rem;
  letter-spacing: 2px; text-transform: uppercase;
  margin: 6px 0 12px;
}
.team-card__bio { color: var(--muted); font-size: 0.93rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 38px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--rose-light);
  transition: transform 0.5s var(--ease), box-shadow 0.5s ease, border-color 0.4s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-top-color: var(--rose); }
.price-card__title {
  font-size: 1.5rem; text-align: center; margin-bottom: 28px;
  position: relative; padding-bottom: 16px;
}
.price-card__title::after {
  content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 46px; height: 2px; background: var(--rose);
}
.price-row {
  display: flex; align-items: baseline; gap: 10px;
  padding: 13px 0;
  transition: padding-left 0.3s var(--ease);
}
.price-row:hover { padding-left: 8px; }
.price-row:hover .price-row__name { color: var(--rose-dark); }
.price-row + .price-row { border-top: 1px dashed var(--rose-light); }
.price-row__name { transition: color 0.3s ease; }
.price-row__dots { flex: 1; border-bottom: 1px dotted var(--rose-light); }
.price-row__price { font-family: var(--font-display); font-weight: 700; color: var(--charcoal); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); overflow: hidden; }
.slider { position: relative; max-width: 780px; margin: 0 auto; }
.slider__track { overflow: hidden; }
.slider__slides { display: flex; transition: transform 0.7s var(--ease); }
.testimonial {
  min-width: 100%;
  text-align: center;
  padding: 20px 30px 10px;
}
.testimonial__stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 22px; color: var(--rose); }
.testimonial__stars svg { width: 19px; height: 19px; fill: currentColor; }
.testimonial__text {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--ink);
  margin-bottom: 30px;
}
.testimonial__avatar {
  width: 74px; height: 74px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 14px;
  border: 3px solid var(--rose-light);
}
.testimonial__name { font-weight: 600; color: var(--charcoal); font-size: 1.05rem; }
.testimonial__role { color: var(--muted); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
.slider__dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.slider__dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; background: var(--rose-light); padding: 0;
  transition: width 0.4s var(--ease), background 0.3s ease;
}
.slider__dot.active { width: 30px; border-radius: 6px; background: var(--rose); }
.slider__arrow {
  position: absolute; top: 42%;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--rose-light); color: var(--charcoal);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
  z-index: 5;
}
.slider__arrow:hover { background: var(--rose); color: var(--white); transform: scale(1.08); }
.slider__arrow svg { width: 20px; height: 20px; }
.slider__arrow--prev { left: -70px; }
.slider__arrow--next { right: -70px; }

/* ---------- CTA banner ---------- */
.cta {
  background:
    linear-gradient(rgba(34, 31, 28, 0.72), rgba(34, 31, 28, 0.72)),
    url("https://images.unsplash.com/photo-1522337660859-02fbefca4702?q=80&w=1920&auto=format&fit=crop") center/cover no-repeat fixed;
  text-align: center;
  padding: 110px 0;
}
.cta h2 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
.cta p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 38px; font-size: 1.1rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-item__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0;
  padding: 22px 28px;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--charcoal); text-align: left;
  transition: color 0.3s ease;
}
.faq-item__q:hover { color: var(--rose-dark); }
.faq-item__q svg {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--rose);
  transition: transform 0.45s var(--ease);
}
.faq-item.open .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-item__a p { padding: 0 28px 24px; color: var(--muted); }

/* ---------- Forms (booking & contact) ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
  font-family: inherit; font-size: 1rem;
  padding: 14px 18px;
  border: 1px solid var(--rose-light);
  border-radius: 10px;
  background: var(--ivory);
  color: var(--charcoal);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  outline: none;
  width: 100%;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(193, 154, 107, 0.15);
}
.form-msg {
  display: none;
  margin-top: 22px;
  padding: 16px 22px;
  border-radius: 10px;
  background: #eaf6ec; color: #2c7a3f;
  border: 1px solid #bfe3c8;
  animation: fadeUp 0.5s var(--ease);
}
.form-msg.show { display: block; }

/* ---------- Contact info ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.info-card {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 46px 40px;
  color: rgba(255, 255, 255, 0.85);
}
.info-card h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 26px; }
.info-row { display: flex; gap: 18px; align-items: flex-start; padding: 16px 0; }
.info-row + .info-row { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.info-row__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(193, 154, 107, 0.18); color: var(--rose-light);
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.4s var(--ease);
}
.info-row:hover .info-row__icon { background: var(--rose); transform: scale(1.08); }
.info-row__icon svg { width: 20px; height: 20px; }
.info-row strong { color: var(--white); display: block; margin-bottom: 3px; letter-spacing: 1px; }
.info-row p { font-size: 0.95rem; }

.hours-table { width: 100%; margin-top: 10px; }
.hours-table div {
  display: flex; justify-content: space-between;
  padding: 12px 0; font-size: 0.95rem;
}
.hours-table div + div { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.hours-table span:last-child { color: var(--rose-light); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 60px;
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 420px; border: 0; filter: saturate(0.85); }

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 46px;
  padding-bottom: 56px;
}
.footer .logo { color: var(--white); }
.footer__about { margin-top: 18px; font-size: 0.95rem; }
.footer__socials { display: flex; gap: 12px; margin-top: 24px; }
.footer__socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease);
}
.footer__socials a:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-4px); }
.footer__socials svg { width: 17px; height: 17px; }
.footer h4 {
  color: var(--white); font-size: 1.15rem; margin-bottom: 22px;
  position: relative; padding-bottom: 12px;
}
.footer h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 34px; height: 2px; background: var(--rose);
}
.footer__links li + li { margin-top: 12px; }
.footer__links a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.3s var(--ease);
}
.footer__links a:hover { color: var(--rose-light); transform: translateX(6px); }
.footer__links svg { width: 13px; height: 13px; color: var(--rose); }
.footer__contact li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.95rem;
}
.footer__contact li + li { margin-top: 14px; }
.footer__contact svg { width: 17px; height: 17px; color: var(--rose); flex-shrink: 0; margin-top: 4px; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.88rem;
}
.footer__bottom span { color: var(--rose-light); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--rose); color: var(--white); border: 0;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s var(--ease), background 0.3s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--charcoal); transform: translateY(-4px); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--rose);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: flex; gap: 60px; width: max-content;
  animation: scroll-x 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  color: var(--white);
  font-family: var(--font-display); font-style: italic;
  font-size: 1.25rem; white-space: nowrap;
  display: flex; align-items: center; gap: 60px;
}
.marquee__item::after { content: "✦"; font-style: normal; opacity: 0.7; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Values (about page) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .slider__arrow { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 50px; }
}

@media (max-width: 860px) {
  section { padding: 72px 0; }
  .split, .contact-layout { grid-template-columns: 1fr; }
  .split__media { max-width: 520px; margin-inline: auto; }
  .split__badge { left: 12px; }

  .hamburger { display: flex; }
  .nav {
    position: fixed; inset: 0; z-index: 1100;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 0.65s var(--ease);
  }
  .nav.open { clip-path: circle(150% at calc(100% - 44px) 44px); }
  .nav__list { flex-direction: column; gap: 26px; text-align: center; }
  .nav__link { font-size: 1.2rem; }
  .nav .nav__cta { margin-top: 10px; }
}

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 34px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__actions .btn { width: 100%; }
  .page-hero { padding: 150px 0 80px; }
  .split__badge { padding: 18px 22px; }
  .split__badge strong { font-size: 1.8rem; }
}
