:root {
  --cream: #efe2d4;
  --cream-soft: #f3e7da;
  --blush: #e8cfbf;
  --blush-deep: #ddb7a4;
  --rose: #c69585;
  --sand: #b9957d;
  --ink: #3a302b;
  --ink-soft: #5a4e48;
  --whisper: #8a7a72;
  --gold: #b79270;
  --gold-deep: #967053;
  --line: rgba(58,48,43,0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

.serif { font-family: 'Cormorant Garamond', serif; font-weight: 400; letter-spacing: 0.02em; }
.italiana { font-family: 'Italiana', serif; letter-spacing: 0.15em; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.6 0 0 0 0 0.5 0 0 0 0 0.4 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

main, header, section, footer { position: relative; z-index: 2; }

/* === Navigation === */
nav {
  position: fixed;
  top: 0.55rem;
  right: 0.8rem;
  left: 0.8rem;
  padding: 1.1rem 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 230;
  transition: all 0.4s ease;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(243, 231, 218, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(58, 48, 43, 0.12);
}
nav.scrolled {
  background: rgba(243, 231, 218, 0.96);
  padding: 0.95rem 2.2rem;
  box-shadow: 0 12px 28px rgba(58, 48, 43, 0.14);
}

.nav-logo {
  font-family: 'Italiana', serif;
  font-size: 2rem;
  letter-spacing: 0.4em;
  color: var(--gold-deep);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.nav-logo small {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-top: 6px;
  font-family: 'Italiana', serif;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  font-weight: 400;
}
.nav-links a:hover { color: var(--gold-deep); }

.nav-cta {
  background: var(--gold-deep);
  color: #ffffff;
  padding: 0.7rem 1.6rem;
  border-radius: 100px;
  font-size: 0.8rem !important;
  letter-spacing: 0.15em !important;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--ink);
  color: #ffffff !important;
  transform: translateY(-1px);
}
.nav-links .nav-cta {
  color: #ffffff !important;
}

.menu-toggle {
  display: none;
  width: auto;
  height: auto;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  padding: 0.25rem;
  transition: opacity 0.2s ease;
}
.menu-toggle:hover {
  opacity: 0.7;
}
.menu-toggle-line {
  width: 22px;
  height: 1.7px;
  background: var(--ink);
  border-radius: 20px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.active .menu-toggle-line:nth-child(1) {
  transform: translateY(6.7px) rotate(45deg);
}
.menu-toggle.active .menu-toggle-line:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .menu-toggle-line:nth-child(3) {
  transform: translateY(-6.7px) rotate(-45deg);
}

/* === Hero === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 8rem 3rem 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  opacity: 0.6;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; animation: fadeUp 1.2s ease both; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-deep); font-weight: 300; }

.hero p.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gold-deep);
  color: var(--cream);
  padding: 1.1rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(168, 133, 106, 0.3);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(-4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--ink);
  transition: all 0.3s;
}
.btn-ghost:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

.hero-image-wrap { position: relative; z-index: 2; animation: fadeIn 1.6s ease 0.3s both; }
.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(42, 35, 32, 0.15);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) contrast(0.98);
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(239,226,212,0.15) 100%);
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  bottom: -30px; right: -30px;
  background: var(--cream);
  padding: 1.5rem 2rem;
  border: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  z-index: 3;
  max-width: 220px;
  line-height: 1.4;
}
.hero-deco::before {
  content: '"';
  position: absolute;
  top: -10px; right: 10px;
  font-size: 4rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.vertical-text {
  position: absolute;
  left: 1.5rem;
  bottom: 3rem;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--whisper);
  text-transform: uppercase;
  z-index: 3;
}

section { padding: 7rem 3rem; }

.section-header { text-align: center; margin-bottom: 5rem; }
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold-deep); }
.section-sub { color: var(--ink-soft); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* About */
.about { background: var(--cream-soft); position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-image-frame {
  position: absolute;
  inset: -20px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}
.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.about-content h2 em { font-style: italic; color: var(--gold-deep); }
.about-content p { color: var(--ink-soft); margin-bottom: 1.2rem; font-size: 1.05rem; }
.about-signature {
  margin-top: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-deep);
}

/* Experience strip */
.experience-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.experience-strip-inner { max-width: 800px; margin: 0 auto; }
.experience-strip h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
}
.experience-strip h3 em {
  color: var(--gold);
  font-style: normal;
  font-family: 'Italiana', serif;
  letter-spacing: 0.1em;
}
.experience-strip .underline {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.5s ease;
  cursor: pointer;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream-soft) 100%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }

.service-number {
  font-family: 'Italiana', serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
}
.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  color: var(--gold-deep);
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--ink);
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--whisper);
  letter-spacing: 0.05em;
}
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--ink);
  font-style: italic;
}

.services-carousel-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1rem auto 0;
}
.services-carousel-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: all 0.25s;
}
.services-carousel-btn:hover:not(:disabled) {
  background: var(--gold-deep);
  color: var(--cream);
  border-color: var(--gold-deep);
}
.services-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.services-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.services-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.services-carousel-dot.active {
  width: 22px;
  border-radius: 20px;
  background: var(--gold-deep);
}

/* Products */
.products {
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.products-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.products-content .brand-mark {
  display: inline-block;
  font-family: 'Italiana', serif;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  padding: 0.6rem 1.4rem;
  margin-bottom: 1.5rem;
}
.products-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.products-content h2 em { font-style: italic; color: var(--gold-deep); }
.products-content p { color: var(--ink-soft); margin-bottom: 1.2rem; font-size: 1.05rem; }
.products-features { list-style: none; margin-top: 2rem; }
.products-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 1rem;
}
.products-features li::before {
  content: '✦';
  color: var(--gold-deep);
  font-size: 1.1rem;
  margin-top: 2px;
}
.products-cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold-deep);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: all 0.3s;
}
.products-cta:hover { color: var(--ink); border-color: var(--ink); }

.products-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 30px 60px rgba(42, 35, 32, 0.12);
}
.products-image img { width: 100%; height: 100%; object-fit: cover; }

/* Booking */
.booking {
  background: linear-gradient(180deg, #e7d6c5 0%, var(--blush) 100%);
  padding-top: 5.5rem;
  padding-bottom: 6.5rem;
}
.booking .section-header {
  margin-bottom: 3rem;
}
.booking-container {
  max-width: 840px;
  margin: 0 auto;
  background: var(--cream-soft);
  padding: 2.6rem;
  border: 1px solid var(--line);
  position: relative;
  box-shadow: 0 30px 80px rgba(42, 35, 32, 0.08);
}
.booking-container::before {
  content: '';
  position: absolute;
  top: 15px; right: 15px; bottom: 15px; left: 15px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0.3;
}
.booking-step { display: none; animation: fadeIn 0.5s ease; }
.booking-step.active { display: block; }

.step-indicator { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.step-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--whisper);
  font-family: 'Cormorant Garamond', serif;
  transition: all 0.3s;
}
.step-dot.active { background: var(--gold-deep); color: var(--cream); border-color: var(--gold-deep); }
.step-dot.completed { background: var(--gold); color: var(--cream); border-color: var(--gold); }

.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 1rem 1.2rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: all 0.3s;
  border-radius: 2px;
  font-weight: 300;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  background: white;
}
.form-textarea { resize: vertical; min-height: 100px; }

.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.service-option {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 2px;
}
.service-option:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.service-option.selected { background: var(--gold-deep); border-color: var(--gold-deep); }
.service-option.selected h4, .service-option.selected .duration { color: var(--cream); }
.service-option h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  color: var(--ink);
}
.service-option .duration {
  font-size: 0.8rem;
  opacity: 0.8;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

/* Calendar */
.calendar { background: var(--cream); padding: 1.3rem; border: 1px solid var(--line); margin-bottom: 1.1rem; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.calendar-month {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
}
.calendar-nav {
  background: transparent;
  border: 1px solid var(--line);
  width: 36px; height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border-radius: 50%;
  transition: all 0.3s;
}
.calendar-nav:hover { background: var(--gold-deep); color: var(--cream); border-color: var(--gold-deep); }
.calendar-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-day-name {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--whisper);
  padding: 0.5rem;
  text-transform: uppercase;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.2s;
  border-radius: 50%;
  font-weight: 300;
}
.calendar-day:hover:not(.disabled):not(.empty) { background: var(--blush); }
.calendar-day.selected { background: var(--gold-deep); color: var(--cream); font-weight: 500; }
.calendar-day.disabled { color: var(--line); cursor: not-allowed; text-decoration: line-through; }
.calendar-day.empty { cursor: default; }
.calendar-day.today { border: 1px solid var(--gold); }

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.3rem;
}
.time-slot {
  padding: 0.7rem;
  background: var(--cream);
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: center;
  font-size: 0.95rem;
  transition: all 0.3s;
  font-family: 'Cormorant Garamond', serif;
  border-radius: 2px;
}
.time-slot:hover:not(.taken) { border-color: var(--gold-deep); background: var(--blush); }
.time-slot.selected { background: var(--gold-deep); color: var(--cream); border-color: var(--gold-deep); }
.time-slot.taken { background: var(--line); color: var(--whisper); cursor: not-allowed; text-decoration: line-through; }

.btn-row { display: flex; gap: 1rem; justify-content: space-between; margin-top: 2rem; }
.booking .btn-row { margin-top: 1.3rem; }

@media (min-width: 901px) {
  #step2 .calendar {
    padding: 1rem;
    margin-bottom: 0.8rem;
  }
  #step2 .calendar-header { margin-bottom: 1rem; }
  #step2 .calendar-month { font-size: 1.3rem; }
  #step2 .calendar-day-name { padding: 0.35rem; }
  #step2 .calendar-day { font-size: 0.88rem; }
  #step2 .time-slots { margin-bottom: 1rem; }

  #step3 .form-group { margin-bottom: 1rem; }
  #step3 .form-input,
  #step3 .form-textarea {
    padding: 0.8rem 1rem;
  }
  #step3 .form-textarea { min-height: 78px; }
  #step3 .summary-card {
    padding: 1.3rem;
    margin: 1.2rem 0;
  }
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }

.summary-card {
  background: var(--cream);
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label { color: var(--whisper); letter-spacing: 0.05em; }
.summary-row .value {
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

.success-screen { text-align: center; padding: 2rem 0; }
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold-deep);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

/* Testimonials */
.testimonials { background: var(--cream-soft); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial {
  padding: 2.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  position: relative;
  border-radius: 2px;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 5rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}
.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial .author {
  font-size: 0.85rem;
  color: var(--whisper);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stars { color: var(--gold-deep); margin-bottom: 1rem; letter-spacing: 0.2em; }

/* Footer */
footer { background: var(--ink); color: var(--cream); padding: 5rem 3rem 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  align-items: flex-start;
}
.footer-brand h3 {
  font-family: 'Italiana', serif;
  font-size: 2.2rem;
  letter-spacing: 0.4em;
  margin-bottom: 0.3rem;
  color: var(--gold);
  line-height: 1;
}
.footer-brand small {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  opacity: 0.8;
  font-family: 'Italiana', serif;
}
.footer-brand p { margin-top: 1.5rem; opacity: 0.7; font-size: 0.95rem; line-height: 1.7; }

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.5;
}
.footer-col li:last-child { margin-bottom: 0; }
.footer-col a { color: var(--cream); text-decoration: none; opacity: 1; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-col span { color: var(--cream); }
.footer-address-item { align-items: flex-start; }
.footer-address-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
}
.footer-address-text small {
  font-size: 0.72rem;
  color: var(--gold);
  opacity: 0.9;
  letter-spacing: 0.04em;
}

.footer-icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.85;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 237, 226, 0.15);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
  letter-spacing: 0.1em;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px; left: 30px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
  text-decoration: none;
  color: white;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2s infinite;
  z-index: -1;
}

.admin-link {
  position: fixed;
  bottom: 10px; right: 10px;
  font-size: 0.65rem;
  color: var(--whisper);
  opacity: 0.4;
  text-decoration: none;
  z-index: 50;
  letter-spacing: 0.1em;
}
.admin-link:hover { opacity: 1; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 35, 32, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 2rem;
}
.modal-overlay.active { display: flex; animation: fadeIn 0.3s ease; }

.modal {
  background: var(--cream);
  padding: 3rem;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: transparent;
  border: 1px solid var(--line);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--ink);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: var(--cream-soft);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--ink);
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--whisper);
  text-transform: uppercase;
}

.appointments-list { display: flex; flex-direction: column; gap: 1rem; }
.appointment {
  background: var(--cream-soft);
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.appointment-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  color: var(--ink);
}
.appointment-info .meta { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.3rem; }
.appointment-info .meta strong { color: var(--ink); }
.status-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.status-pending { background: #f4e4c1; color: #8a6a3a; }
.status-confirmed { background: #c8e6c9; color: #2e7d32; }
.status-rejected { background: #f8d7d7; color: #8a3a3a; }
.status-rescheduled { background: #d4c5e8; color: #5a3a8a; }

.appointment-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.btn-mini {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid;
  transition: all 0.3s;
  font-family: inherit;
}
.btn-confirm { background: #2e7d32; color: white; border-color: #2e7d32; }
.btn-reject { background: transparent; color: #8a3a3a; border-color: #8a3a3a; }
.btn-reschedule { background: transparent; color: #5a3a8a; border-color: #5a3a8a; }
.btn-wa { background: #25d366; color: white; border-color: #25d366; display: inline-flex; align-items: center; gap: 0.3rem; text-decoration: none; }
.btn-mini:hover { transform: translateY(-1px); }

.password-input {
  width: 100%;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 1rem;
  border-radius: 2px;
}

.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--whisper);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 0; } }

@media (max-width: 900px) {
  nav {
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    top: 0.55rem;
    left: 0.7rem;
    right: 0.7rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(243, 231, 218, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(58, 48, 43, 0.12);
    direction: ltr;
    z-index: 230;
  }
  nav.scrolled {
    padding: 0.8rem 1rem;
    background: rgba(243, 231, 218, 0.96);
    box-shadow: 0 12px 28px rgba(58, 48, 43, 0.14);
  }
  .nav-logo {
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    text-align: center;
    margin: 0;
    z-index: 240;
  }
  .nav-logo small { font-size: 0.55rem; }
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(86vw, 360px);
    height: 100dvh;
    z-index: 210;
    background: var(--cream-soft);
    backdrop-filter: none;
    flex-direction: column;
    direction: rtl;
    text-align: right;
    padding: 6rem 0.9rem 1.4rem;
    gap: 0.35rem;
    border: 1px solid var(--line);
    border-radius: 0;
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 36px rgba(58, 48, 43, 0.16);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    text-align: right;
    padding: 0.85rem 0.95rem;
    border-radius: 10px;
    letter-spacing: 0.08em;
    font-size: 0.84rem;
  }
  .nav-links a:hover {
    background: var(--blush);
    color: var(--ink);
  }
  .nav-links .nav-cta {
    margin-top: 0.35rem;
    text-align: center;
    padding: 0.9rem 1rem;
    border-radius: 12px;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  body.menu-open .nav-logo {
    opacity: 0;
    visibility: hidden;
  }
  .menu-toggle {
    display: inline-flex;
    order: 1;
    margin-right: 0;
    z-index: 240;
  }

  section { padding: 4rem 1.5rem; }

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
    gap: 3rem;
    text-align: right;
  }
  .hero-deco { display: none; }
  .vertical-text { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-content { order: 1; }
  .about-image { order: 2; }
  .products-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0.9rem;
    border: none;
    background: transparent;
    padding-bottom: 0.45rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-grid::-webkit-scrollbar { display: none; }
  .service-card {
    scroll-snap-align: start;
    border: 1px solid var(--line);
    padding: 2.4rem 1.8rem;
  }
  .services-carousel-controls { display: flex; }
  .testimonials-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0.9rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial {
    scroll-snap-align: start;
    padding: 2.2rem 1.5rem;
  }

  .booking-container { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: right; }

  .modal { padding: 2rem 1.5rem; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .appointment { grid-template-columns: 1fr; }

  .btn-row { flex-direction: column-reverse; }
  .btn-row button { width: 100%; }
}

@media (max-width: 600px) {
  nav {
    padding: 0.8rem 0.9rem;
    top: 0.45rem;
    left: 0.5rem;
    right: 0.5rem;
    border-radius: 12px;
  }
  nav.scrolled { padding: 0.7rem 0.9rem; }
  .nav-logo { font-size: 1.25rem; letter-spacing: 0.26em; }
  .nav-logo small { letter-spacing: 0.24em; }
  .nav-links {
    width: min(90vw, 320px);
    padding: 5.6rem 0.65rem 1.2rem;
    gap: 0.3rem;
  }
  .nav-links a { font-size: 0.88rem; }
  .nav-cta { width: 100%; justify-content: center; padding: 0.9rem 1rem; }

  section { padding: 3.4rem 1rem; }
  .section-title { font-size: clamp(2rem, 8vw, 2.5rem); }
  .section-sub { font-size: 0.98rem; }

  .hero {
    min-height: auto;
    padding: 6rem 1rem 2.2rem;
    gap: 1.8rem;
  }
  .hero h1 { font-size: clamp(2.2rem, 11.5vw, 3.1rem); line-height: 1.06; }
  .hero p.lead { font-size: 1rem; margin-bottom: 1.6rem; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-image { aspect-ratio: 5/6; }

  .service-card { padding: 2rem 1.2rem; }
  .service-card h3 { font-size: 1.55rem; }

  .booking-container { padding: 1.35rem 1rem; }
  .step-indicator { gap: 0.35rem; }
  .step-dot { width: 32px; height: 32px; font-size: 0.75rem; }
  .service-option { padding: 1rem; }
  .calendar { padding: 1rem 0.5rem; }
  .calendar-day-name { font-size: 0.64rem; letter-spacing: 0.09em; padding: 0.35rem 0.15rem; }
  .calendar-day { font-size: 0.88rem; min-height: 36px; }
  .time-slots { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.45rem; }
  .time-slot { padding: 0.72rem 0.2rem; font-size: 0.9rem; min-height: 44px; }

  input, textarea, select, button, .btn-primary, .btn-secondary { font-size: 16px; }
  .summary-card { padding: 1.25rem 1rem; }
  .summary-row { gap: 0.75rem; font-size: 0.9rem; }

  .testimonials-grid { gap: 0.8rem; }
  .testimonial { padding: 2rem 1.2rem; }

  footer { padding: 3.2rem 1rem 1.5rem; }
  .footer-bottom { font-size: 0.76rem; line-height: 1.55; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: clamp(1.95rem, 10.8vw, 2.5rem); }
  .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.2em; margin-bottom: 1.1rem; }
  .hero p.lead { font-size: 0.95rem; }

  .calendar-grid { gap: 2px; }
  .calendar-day { min-height: 33px; font-size: 0.82rem; }
  .time-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .time-slot { font-size: 0.88rem; }
  .btn-primary, .btn-secondary { padding: 0.9rem 1rem; }
}
