/* ============================================
   My Fair Hair & Beauty — Design System
   Archetipo: Luxury + Organic
   ============================================ */

/* Variables */
:root {
  --color-bg: #faf9f6;
  --color-bg-2: #f4f0ec;
  --color-bg-dark: #0a0a0a;
  --color-text: #1a1a1a;
  --color-text-light: #f4f0ec;
  --color-accent: #C5A059;
  --color-accent-dark: #a38342;
  --color-accent-2: #8FBC8F;
  --color-muted: #6b6b6b;
  --color-border: rgba(0,0,0,0.08);
  --color-border-light: rgba(255,255,255,0.12);
  --color-error: #c0392b;
  --color-success: #27ae60;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 5vw, 4rem);
  --space-xxl: clamp(3rem, 8vw, 6rem);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.16);

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Utilities */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
.container--narrow { max-width: 800px; }
.section { padding: var(--space-xxl) 0; }
.section--dark { background: var(--color-bg-dark); color: var(--color-text-light); }
.section--light { background: var(--color-bg-2); }
.section__header { text-align: center; margin-bottom: var(--space-xl); }
.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}
.section__title em { font-style: italic; color: var(--color-accent); }
.section__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  touch-action: manipulation;
  min-height: 48px;
  line-height: 1;
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 6px 20px rgba(197,160,89,0.25);
}
.btn--primary:hover, .btn--primary:focus {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 8px 28px rgba(197,160,89,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.section--dark .btn--outline { color: var(--color-text-light); border-color: var(--color-border-light); }
.btn--outline:hover, .btn--outline:focus { border-color: var(--color-accent); color: var(--color-accent); }
.btn--ghost {
  background: transparent;
  color: var(--color-muted);
  border-color: transparent;
}
.btn--ghost:hover { color: var(--color-text); }
.btn--lg { padding: 1rem 2.2rem; font-size: 1rem; min-height: 52px; }
.btn--block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { text-align: center; }
.preloader__logo {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(10px);
  animation: preloaderIn 0.8s ease forwards 0.2s;
}
.preloader__line { width: 120px; height: 2px; background: var(--color-border); margin: 0 auto; overflow: hidden; border-radius: 2px; }
.preloader__line span {
  display: block;
  width: 0%; height: 100%;
  background: var(--color-accent);
  animation: preloaderLine 1.2s ease forwards 0.6s;
}
@keyframes preloaderIn { to { opacity: 1; transform: translateY(0); } }
@keyframes preloaderLine { to { width: 100%; } }

/* Custom cursor */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.15s ease, opacity 0.15s ease;
  mix-blend-mode: difference;
  opacity: 0;
}
@media (pointer: fine) {
  body:hover .cursor { opacity: 1; }
  .cursor.is-hover { transform: translate(-50%, -50%) scale(2.5); }
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--space-md);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.header.is-scrolled {
  background: rgba(250,249,246,0.85);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.header__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 1002;
}
.header__nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 1001;
}
.header__nav.is-open { display: flex; }
.header__nav a {
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
}
.header__nav.is-open a { opacity: 1; transform: translateY(0); }
.header__nav a:hover { color: var(--color-accent); }
.header__cta { display: none; }
.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 4px;
}
.header__toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle.is-active span:nth-child(2) { opacity: 0; }
.header__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Floating Action Button */
.fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  background: var(--color-accent);
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(197,160,89,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  display: none;
}
.fab:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(197,160,89,0.45); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.is-visible .hero__bg-img { transform: scale(1); }
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.35), rgba(10,10,10,0.65));
}
.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 800px;
}
.hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: var(--space-md);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: var(--space-md);
}
.hero__title em { font-style: italic; font-weight: 400; }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  font-weight: 300;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.hero__scroll:hover { opacity: 1; }
.mouse {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}
.mouse span {
  display: block;
  width: 4px; height: 4px;
  background: currentColor;
  border-radius: 50%;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.8s infinite;
}
@keyframes mouseScroll {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 18px; }
}

/* About */
.about__grid { display: grid; gap: var(--space-xl); }
.about__media { position: relative; display: grid; gap: var(--space-md); }
.about__img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
}
.about__img--2 { display: none; }
.about__body p { margin-bottom: var(--space-md); color: var(--color-muted); }
.about__body p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  float: left;
  line-height: 0.85;
  margin-right: 0.15em;
  margin-top: 0.05em;
  color: var(--color-accent);
}
.about__stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}
.about__stats div { display: flex; flex-direction: column; }
.about__stats strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-text);
  line-height: 1;
}
.about__stats span { font-size: 0.8rem; color: var(--color-muted); margin-top: 0.3rem; }

/* Services */
.services__tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-lg);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.services__tabs::-webkit-scrollbar { display: none; }
.services__tab {
  flex: 0 0 auto;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border-light);
  background: transparent;
  color: var(--color-text-light);
  opacity: 0.6;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.services__tab.is-active { opacity: 1; background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.services__panel { display: none; animation: fadeIn 0.5s ease; }
.services__panel.is-active { display: block; }
.service__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}
.service__name { font-weight: 500; color: var(--color-text-light); flex: 1; }
.service__meta { font-size: 0.8rem; color: var(--color-muted); flex: 0 0 auto; }
.service__price { font-family: var(--font-serif); font-size: 1.2rem; color: var(--color-accent); font-weight: 600; flex: 0 0 auto; }

/* Booking */
.booking { background: var(--color-bg-2); }
.booking__card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}
.booking__progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}
.booking__step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-muted);
  transition: color var(--transition);
}
.booking__step-dot span {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}
.booking__step-dot small { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.05em; display: none; }
.booking__step-dot.is-active span { border-color: var(--color-accent); background: var(--color-accent); color: #fff; }
.booking__step-dot.is-active { color: var(--color-text); }
.booking__step-dot.is-done span { border-color: var(--color-success); background: var(--color-success); color: #fff; }
.booking__step-line {
  flex: 1;
  height: 2px;
  background: var(--color-border);
  margin: 0 0.4rem;
  margin-bottom: 1rem;
  border-radius: 1px;
}
.booking__step {
  display: none;
  animation: fadeInUp 0.4s ease;
}
.booking__step.is-active { display: block; }
.booking__step-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: var(--space-md);
  text-align: center;
}
.booking__grid { display: grid; gap: var(--space-sm); }
.booking__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  background: #fff;
  text-align: left;
  min-height: 64px;
  touch-action: manipulation;
}
.booking__option:hover, .booking__option:focus {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  outline: none;
}
.booking__option.is-selected {
  border-color: var(--color-accent);
  background: rgba(197,160,89,0.04);
  box-shadow: 0 0 0 3px rgba(197,160,89,0.15);
}
.booking__option-main { flex: 1; }
.booking__option-name { display: block; font-weight: 500; font-size: 1rem; }
.booking__option-meta { font-size: 0.8rem; color: var(--color-muted); }
.booking__option-price { font-family: var(--font-serif); font-weight: 600; color: var(--color-accent); font-size: 1.1rem; }

/* Pros */
.booking__pros { display: grid; gap: var(--space-sm); }
.booking__pro {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  background: #fff;
  min-height: 72px;
  touch-action: manipulation;
}
.booking__pro:hover, .booking__pro:focus { border-color: var(--color-accent); outline: none; }
.booking__pro.is-selected { border-color: var(--color-accent); background: rgba(197,160,89,0.04); box-shadow: 0 0 0 3px rgba(197,160,89,0.15); }
.booking__pro-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.booking__pro-info { flex: 1; }
.booking__pro-name { font-weight: 500; }
.booking__pro-role { font-size: 0.8rem; color: var(--color-muted); }

/* Calendar */
.booking__calendar-wrap { margin-bottom: var(--space-lg); }
.booking__cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}
.booking__cal-header span { font-weight: 600; font-size: 1rem; }
.booking__cal-nav {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: 1.2rem;
  color: var(--color-text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
  touch-action: manipulation;
}
.booking__cal-nav:hover { border-color: var(--color-accent); color: var(--color-accent); }
.booking__calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.booking__cal-weekday {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  padding: 0.4rem 0;
}
.booking__cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid transparent;
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  touch-action: manipulation;
}
.booking__cal-day:hover:not(:disabled):not(.is-past):not(.is-closed) { border-color: var(--color-accent); }
.booking__cal-day.is-past { color: var(--color-muted); opacity: 0.4; cursor: not-allowed; }
.booking__cal-day.is-closed { color: var(--color-muted); opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.booking__cal-day.is-today { border-color: var(--color-accent); color: var(--color-accent); }
.booking__cal-day.is-selected { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.booking__cal-note { font-size: 0.8rem; color: var(--color-muted); margin-top: var(--space-sm); text-align: center; }

/* Slots */
.booking__slots { margin-top: var(--space-md); animation: fadeIn 0.3s ease; }
.booking__slots h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted); margin-bottom: var(--space-sm); }
.booking__slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.booking__slot {
  padding: 0.7rem 0.2rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  touch-action: manipulation;
}
.booking__slot:hover, .booking__slot:focus { border-color: var(--color-accent); outline: none; }
.booking__slot.is-selected { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.booking__slot.is-lunch { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

/* Fields */
.booking__fields { display: grid; gap: var(--space-md); margin-bottom: var(--space-lg); }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field__label { font-size: 0.85rem; font-weight: 500; }
.field__input {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
  min-height: 48px;
}
.field__input:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(197,160,89,0.12); }
.field__input::placeholder { color: #aaa; }
textarea.field__input { resize: vertical; min-height: 100px; }

/* Booking nav */
.booking__nav {
  display: flex;
  gap: var(--space-sm);
  justify-content: space-between;
  margin-top: var(--space-lg);
}
.booking__nav .btn--ghost { padding-left: 0; }

/* Summary */
.booking__summary {
  background: var(--color-bg-2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}
.booking__summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
.booking__summary-row:last-child { border-bottom: none; font-weight: 600; }
.booking__summary-label { color: var(--color-muted); }
.booking__summary-value { text-align: right; }
.booking__note { font-size: 0.8rem; color: var(--color-muted); text-align: center; margin-top: var(--space-sm); }

/* Success */
.booking__success { text-align: center; padding: var(--space-xl) 0; }
.booking__success-icon {
  width: 64px; height: 64px;
  margin: 0 auto var(--space-md);
  background: var(--color-success);
  color: #fff;
  font-size: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.booking__success h3 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: var(--space-sm); }
.booking__success p { color: var(--color-muted); margin-bottom: var(--space-md); }
.booking__success-detail { background: var(--color-bg-2); border-radius: var(--radius-md); padding: var(--space-md); margin-bottom: var(--space-lg); text-align: left; }
.booking__success-detail p { margin-bottom: 0.4rem; font-size: 0.95rem; color: var(--color-text); }

/* Team */
.team__grid { display: grid; gap: var(--space-lg); }
.team__card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team__photo { width: 100%; aspect-ratio: 1; background-size: cover; background-position: center top; }
.team__card h3 { font-family: var(--font-serif); font-size: 1.3rem; padding: var(--space-md) var(--space-md) 0.2rem; }
.team__role { display: block; font-size: 0.8rem; color: var(--color-accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 0 var(--space-md); }
.team__card p { padding: var(--space-sm) var(--space-md) var(--space-md); font-size: 0.95rem; color: var(--color-muted); }

/* Portfolio */
.portfolio__grid { display: grid; gap: var(--space-sm); grid-template-columns: repeat(2, 1fr); }
.portfolio__item { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1; }
.portfolio__img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.portfolio__item:hover .portfolio__img { transform: scale(1.05); }
.portfolio__item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-sm);
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Testimonials */
.testimonials__grid { display: grid; gap: var(--space-md); }
.testimonial {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.testimonial__stars { color: #f5b041; font-size: 1.1rem; margin-bottom: var(--space-sm); letter-spacing: 0.1em; }
.testimonial p { font-size: 1rem; margin-bottom: var(--space-sm); }
.testimonial__author { font-size: 0.85rem; font-weight: 600; color: var(--color-muted); }
.testimonials__badge { text-align: center; margin-top: var(--space-lg); }
.testimonials__badge a { color: var(--color-accent); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }

/* Products */
.products__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}
.product__logo {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-muted);
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
  cursor: default;
}
.product__logo:hover { opacity: 1; color: var(--color-text); }

/* FAQ */
.faq__list { display: grid; gap: var(--space-sm); }
.faq__item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq__item[open] { box-shadow: var(--shadow-md); }
.faq__item summary {
  padding: var(--space-md);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-accent);
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p { padding: 0 var(--space-md) var(--space-md); color: var(--color-muted); font-size: 0.95rem; }

/* Contact */
.contact__grid { display: grid; gap: var(--space-xl); }
.contact__info p { color: var(--color-muted); margin-bottom: var(--space-md); }
.contact__list { display: grid; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.contact__list li { display: flex; flex-direction: column; gap: 0.15rem; }
.contact__list strong { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted); }
.contact__list a { color: var(--color-text); font-weight: 500; }
.contact__list a:hover { color: var(--color-accent); }
.contact__hours { margin-bottom: var(--space-lg); }
.contact__hours h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted); margin-bottom: var(--space-sm); }
.contact__hours ul { display: grid; gap: 0.35rem; }
.contact__hours li { display: flex; justify-content: space-between; font-size: 0.95rem; }
.contact__hours li span:last-child { font-weight: 500; }
.contact__social { display: flex; gap: var(--space-sm); }
.contact__social a {
  padding: 0.6rem 1.2rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.contact__social a:hover { border-color: var(--color-accent); color: var(--color-accent); }
.contact__map {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact__map iframe { width: 100%; height: 100%; filter: grayscale(0.2); }

/* Footer */
.footer { background: var(--color-bg-dark); color: var(--color-text-light); padding-top: var(--space-xxl); overflow: hidden; }
.footer__grid { display: grid; gap: var(--space-xl); padding-bottom: var(--space-xl); }
.footer__col h4 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: var(--space-sm); color: #fff; }
.footer__col p, .footer__col a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer__col a { display: block; margin-bottom: 0.4rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--color-accent); }
.footer__form { display: flex; gap: var(--space-sm); margin-top: var(--space-sm); }
.footer__form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-light);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.9rem;
}
.footer__form input::placeholder { color: rgba(255,255,255,0.4); }
.footer__biglogo {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 15vw, 12rem);
  text-align: center;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  padding: var(--space-xl) 0;
  user-select: none;
}
.footer__copy { border-top: 1px solid var(--color-border-light); padding: var(--space-md) 0; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   DESKTOP (min-width: 768px)
   ============================================ */
@media (min-width: 768px) {
  .header__nav { display: flex; position: static; flex-direction: row; gap: 1.5rem; background: transparent; }
  .header__nav a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; opacity: 1; transform: none; }
  .header__cta { display: inline-flex; }
  .header__toggle { display: none; }
  .fab { display: none !important; }

  .about__grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .about__img--2 { display: block; position: absolute; bottom: -2rem; right: -1rem; width: 55%; aspect-ratio: 3/4; border: 4px solid var(--color-bg); }

  .team__grid { grid-template-columns: repeat(3, 1fr); }

  .portfolio__grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio__item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }

  .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; }

  .footer__grid { grid-template-columns: repeat(4, 1fr); }

  .booking__step-dot small { display: block; }
  .booking__step-line { margin: 0 var(--space-sm); }
  .booking__grid { grid-template-columns: repeat(2, 1fr); }
  .booking__slots-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .booking__card { padding: var(--space-xl); }
}
