/* ============================================
   L'ESSENZA BEAUTY SALON
   Luxury Beauty Website
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* --- Variables (Champagne palette — 2026-04-14 redesign) --- */
:root {
  --cream: #F4ECDB;
  --cream-soft: #F9F2E5;
  --champagne: #E8D5B5;
  --champagne-deep: #D9C09A;
  --gold: #C9A961;
  --gold-light: #E0C58A;
  --sage: #6B6F4F;
  --sage-soft: #8B8E6F;
  --text: #4A4238;
  --text-light: #7A6F62;
  --white-warm: #FBF8F2;
  --white: #ffffff;

  /* Legacy aliases — keep so leftover refs resolve to a light tone. Don't add new uses. */
  --black: var(--text);
  --dark: var(--sage);
  --gold-dark: var(--gold);
  --cream-dark: var(--champagne);
  --warm-white: var(--white-warm);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;

  --header-height: 80px;
  --section-pad: clamp(60px, 10vw, 120px);

  --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
}

p {
  max-width: 65ch;
  color: var(--text-light);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 550px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease-luxe), box-shadow 0.4s var(--ease-luxe), background 0.4s var(--ease-luxe), color 0.4s var(--ease-luxe);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn-primary {
  background: var(--gold);
  color: var(--white-warm);
  box-shadow: 0 4px 14px rgba(201, 169, 97, 0.25);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 169, 97, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 1px solid var(--sage);
}

.btn-outline:hover {
  background: var(--sage);
  color: var(--cream-soft);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--sage);
  color: var(--cream-soft);
}

.btn-dark:hover {
  background: var(--gold);
  color: var(--white-warm);
  transform: translateY(-2px);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
}

.header--transparent {
  background: transparent;
}

.header--scrolled {
  background: rgba(244, 236, 219, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
}

.header__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.header__logo img {
  height: 38px;
  width: auto;
  display: block;
  transition: opacity 0.3s var(--ease-luxe);
}

.header--transparent .header__logo img { opacity: 0.95; }
.header--scrolled .header__logo img    { opacity: 1; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease-luxe);
}

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

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

.nav__link:hover,
.nav__link--active {
  color: var(--sage);
}

.header--transparent .nav__link {
  color: var(--text);
}

.header--transparent .nav__link:hover {
  color: var(--sage);
}

.nav__cta {
  padding: 12px 28px;
  font-size: 0.72rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  background: none;
  border: none;
}

.menu-toggle span,
.header--transparent .menu-toggle span,
.menu-toggle.active span {
  width: 24px;
  height: 1.5px;
  background: var(--sage);
  transition: all 0.3s var(--ease-luxe);
  display: block;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--warm-white);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--black);
  padding: 14px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-nav.active .mobile-nav__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active .mobile-nav__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav__link:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav__link:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.active .mobile-nav__link:nth-child(7) { transition-delay: 0.4s; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--header-height) clamp(20px, 5vw, 80px) clamp(60px, 10vh, 120px);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Hero background: soft champagne with faint salon texture image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/uniform.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: blur(3px) saturate(0.6);
  pointer-events: none;
}

/* Shimmer — conic light sweep that rotates slowly behind content */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140vmax;
  height: 140vmax;
  transform: translate(-50%, -50%);
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(224, 197, 138, 0.22) 40deg,
    rgba(244, 236, 219, 0.35) 70deg,
    transparent 120deg,
    transparent 240deg,
    rgba(224, 197, 138, 0.18) 280deg,
    transparent 330deg
  );
  filter: blur(40px);
  animation: shimmer-rotate 28s linear infinite;
  pointer-events: none;
  opacity: 0.9;
}

@keyframes shimmer-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__bokeh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bokeh span {
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 197, 138, 0.7) 0%, rgba(224, 197, 138, 0) 70%);
  filter: blur(2px);
  opacity: 0.8;
  animation: bokeh-drift 22s linear infinite;
}

.hero__bokeh span:nth-child(3n)   { width: 22px; height: 22px; }
.hero__bokeh span:nth-child(3n+1) { width: 8px;  height: 8px; }

@keyframes bokeh-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0; }
  10%  { opacity: 0.7; }
  50%  { transform: translate3d(40px, -60px, 0) scale(1.4); opacity: 0.9; }
  90%  { opacity: 0.4; }
  100% { transform: translate3d(80px, -120px, 0) scale(1); opacity: 0; }
}

/* Decorative gold lines flanking the logo */
.hero__flourish {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 1.2s 0.3s forwards;
}

.hero__flourish::before,
.hero__flourish::after {
  content: '';
  display: block;
  width: clamp(40px, 10vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}

.hero__flourish-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201, 169, 97, 0.6);
  animation: flourish-glow 3s var(--ease-luxe) infinite;
}

@keyframes flourish-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(201, 169, 97, 0.4); opacity: 0.7; }
  50%      { box-shadow: 0 0 16px rgba(201, 169, 97, 0.9); opacity: 1; }
}

.hero__logo-img {
  position: relative;
  z-index: 1;
  width: min(640px, 80vw);
  height: auto;
  display: block;
  margin: 0 auto 32px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  filter: blur(6px);
  transition: opacity 1.1s var(--ease-luxe), transform 1.1s var(--ease-luxe), filter 1.1s var(--ease-luxe);
}

.hero__logo-img.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hero__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--sage);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 auto 18px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

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

.hero__desc {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto 36px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 1.1s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  animation: scroll-pulse 2.4s var(--ease-luxe) infinite;
  transform-origin: top center;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

@media (max-width: 640px) {
  .hero__bokeh { display: none; }
}

/* --- Sections --- */
.section {
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
}

.section--dark,
.section--champagne {
  background: var(--champagne);
  color: var(--text);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--champagne h1,
.section--champagne h2,
.section--champagne h3,
.section--champagne h4 {
  color: var(--sage);
}

.section--dark p,
.section--champagne p {
  color: var(--text);
}

.section--cream {
  background: var(--cream-soft);
}

.section__inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Services Grid (homepage) --- */
.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--champagne);
  box-shadow: 0 6px 24px rgba(74, 66, 56, 0.06);
  transition: transform 0.6s var(--ease-luxe), box-shadow 0.6s var(--ease-luxe);
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(201, 169, 97, 0.25);
}

.service-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-luxe);
}

.service-card:hover .service-card__img {
  transform: scale(1.06);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(244, 236, 219, 0) 40%, rgba(74, 66, 56, 0.65) 100%);
  color: var(--cream-soft);
}

.service-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--cream-soft);
}

.service-card__desc {
  font-size: 0.88rem;
  color: rgba(249, 242, 229, 0.85);
  margin: 0;
  max-width: none;
}

.service-card__arrow {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream-soft);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.4s var(--ease-luxe);
}

.service-card:hover .service-card__arrow {
  background: var(--gold);
  color: var(--white-warm);
  transform: rotate(45deg);
}

/* --- About Preview --- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-top: 60px;
}

.about-preview__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview__image {
  border-radius: 6px;
  background: var(--champagne);
  box-shadow: 0 12px 40px rgba(74, 66, 56, 0.12);
}

.about-preview__image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: -1;
}

.about-preview__content {
  padding: 20px 0;
}

.about-preview__text {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 32px;
}

.about-preview__signature {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold-dark);
}

/* --- Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid rgba(196, 162, 101, 0.2);
  border-bottom: 1px solid rgba(196, 162, 101, 0.2);
  margin-top: 80px;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.section--dark .stat__label,
.section--champagne .stat__label {
  color: var(--text);
}

.section--dark .stat__number,
.section--champagne .stat__number {
  color: var(--sage);
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: clamp(80px, 12vw, 160px) clamp(20px, 4vw, 60px);
  background: var(--cream-soft);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 169, 97, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--sage);
  margin-bottom: 20px;
}

.cta-banner h2 em { color: var(--gold); }

.cta-banner p {
  margin: 0 auto 40px;
  text-align: center;
}

/* --- Footer --- */
.footer {
  background: var(--cream-soft);
  color: var(--text);
  padding: 80px clamp(20px, 4vw, 60px) 30px;
  border-top: 1px solid var(--champagne-deep);
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--sage);
  margin-bottom: 12px;
}

.footer__brand-logo {
  display: inline-block;
  margin-bottom: 18px;
  line-height: 0;
}

.footer__brand-logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.3s var(--ease-luxe);
}

.footer__brand-logo:hover img { opacity: 0.85; }

.footer__brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 22px;
  color: var(--text-light);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--champagne-deep);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  transition: all 0.3s var(--ease-luxe);
}

.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white-warm);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}

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

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color 0.3s var(--ease-luxe);
}

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

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--champagne-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* --- Page Hero (for subpages) --- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 80px) clamp(20px, 4vw, 60px) 80px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(224, 197, 138, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 97, 0.10) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero__inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--sage);
  font-weight: 300;
  margin-bottom: 12px;
}

.page-hero__subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 500px;
}

/* --- Services Page --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail__image {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  min-height: 400px;
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.service-detail__content {
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin: 16px 0 20px;
}

.service-detail__features {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.service-detail__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* --- Gallery --- */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(74, 66, 56, 0.08);
  transition: box-shadow 0.5s var(--ease-luxe), transform 0.5s var(--ease-luxe);
}

.gallery-item:hover {
  box-shadow: 0 18px 40px rgba(201, 169, 97, 0.28);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease-luxe), filter 0.5s var(--ease-luxe);
  filter: saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(74, 66, 56, 0) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: background 0.4s var(--ease-luxe);
}

.gallery-item:hover .gallery-item__overlay {
  background: linear-gradient(180deg, transparent 40%, rgba(107, 111, 79, 0.35) 100%);
}

/* --- Booking Form --- */
.booking-form {
  max-width: 700px;
  margin: 60px auto 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 14px 18px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236b6560'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.booking-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  padding: 18px;
}

.booking-info {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 30px;
  background: var(--cream);
  text-align: center;
}

.booking-info p {
  margin: 0 auto;
  font-size: 0.9rem;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  margin-top: 60px;
}

.contact-info-item {
  margin-bottom: 36px;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.contact-info-item a:hover {
  color: var(--gold-dark);
}

.contact-map {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(0.3) contrast(1.05);
}

.working-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.working-hours__row,
.wh-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--champagne-deep);
}

.wh-row:last-child,
.working-hours__row:last-child {
  border-bottom: 0;
}

.working-hours__row span:first-child,
.wh-day {
  color: var(--text);
  font-weight: 500;
}

.working-hours__row span:last-child,
.wh-time {
  color: var(--text-light);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.lightbox__close:hover {
  border-color: var(--gold);
}

/* --- Animations --- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(4px);
  transition: opacity 0.9s var(--ease-luxe), transform 0.9s var(--ease-luxe), filter 0.9s var(--ease-luxe);
  will-change: opacity, transform, filter;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .service-detail__image {
    min-height: 300px;
  }

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

  .about-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-preview__image {
    max-height: 500px;
  }

  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .services-preview {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    aspect-ratio: 16/10;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 2;
    column-gap: 8px;
  }

  .gallery-item {
    margin-bottom: 8px;
  }

  .hero__title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .hero {
    padding-bottom: 80px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    text-align: center;
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 260px;
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 50px;
  }

  .gallery-grid {
    columns: 1;
  }
}

/* --- Decorative marquee strip --- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  background: linear-gradient(90deg, var(--cream) 0%, var(--cream-soft) 50%, var(--cream) 100%);
  border-top: 1px solid var(--champagne-deep);
  border-bottom: 1px solid var(--champagne-deep);
}

.marquee__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  -webkit-animation: marquee-scroll 28s linear infinite;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
  transform: translateZ(0); /* hint GPU layer, helps iOS */
}

.marquee__item {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--sage);
  letter-spacing: 0.02em;
}

.marquee__item::after {
  content: '◆';
  color: var(--gold);
  margin-left: 3rem;
  font-size: 0.6em;
  opacity: 0.8;
  vertical-align: middle;
}

@-webkit-keyframes marquee-scroll {
  from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  to   { -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
}
@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* --- Text shimmer on luxe em headings --- */
.hero__title em,
.section-title em,
h2 em {
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-light) 30%,
    #F4DBAA 50%,
    var(--gold-light) 70%,
    var(--gold) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shimmer 6s var(--ease-luxe) infinite;
}

@keyframes text-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Ornamental section divider --- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 40px auto;
  max-width: 400px;
  color: var(--gold);
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament__mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--sage);
  opacity: 0.85;
}

.ornament__mark::before,
.ornament__mark::after {
  content: '◆';
  color: var(--gold);
  font-size: 0.45em;
  margin: 0 14px;
  vertical-align: middle;
  position: relative;
  top: -3px;
  opacity: 0.7;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero__logo-img { opacity: 1; transform: none; filter: none; }
  .hero__bokeh, .hero::after { display: none; }
  .marquee__track { animation: none; }
  .hero__title em, .section-title em, h2 em {
    background: none; -webkit-text-fill-color: var(--gold); color: var(--gold); animation: none;
  }
}
