/* ============================================
   BELLA BEAUTY INSTITUT — DESIGN SYSTEM
   ============================================ */

:root {
  /* Colors */
  --c-bg: #ffffff;
  --c-ink: #1a1a1a;
  --c-accent: #C4856B;
  --c-accent-hi: #b07055;
  --c-accent-light: #f9ede8;
  --c-muted: #6b6b6b;
  --c-border: #ede8e4;
  --c-surface: #faf8f6;
  --c-gold: #C9A96E;

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;

  /* Sizing */
  --nav-h: 72px;
  --radius: 6px;
  --radius-lg: 16px;
  --container: 1180px;

  /* Transitions */
  --t: 0.25s ease;
  --t-slow: 0.5s ease;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ============ UTILITIES ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  min-height: 48px;
  white-space: nowrap;
  text-decoration: none;
}
.btn--accent {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}
.btn--accent:hover { background: var(--c-accent-hi); border-color: var(--c-accent-hi); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,133,107,0.35); }
.btn--outline {
  background: transparent;
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.btn--outline:hover { background: var(--c-accent); color: #fff; }
.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.25); }
.btn--white {
  background: #fff;
  color: var(--c-ink);
  border-color: #fff;
}
.btn--white:hover { background: var(--c-surface); }
.btn--white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--white-outline:hover { background: rgba(255,255,255,0.15); }
.btn--sm { padding: 10px 20px; font-size: 0.82rem; min-height: 40px; }
.btn--lg { padding: 16px 36px; font-size: 0.95rem; min-height: 54px; }

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--c-ink);
}
.section-header h2 em {
  font-style: italic;
  color: var(--c-accent);
}
.section-sub {
  margin-top: 16px;
  color: var(--c-muted);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ ANIMATIONS ============ */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-reveal.visible { opacity: 1; transform: none; }
.js-reveal:nth-child(2) { transition-delay: 0.08s; }
.js-reveal:nth-child(3) { transition-delay: 0.16s; }
.js-reveal:nth-child(4) { transition-delay: 0.24s; }
.js-reveal:nth-child(5) { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js-reveal { opacity: 1 !important; transform: none !important; }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--t), box-shadow var(--t);
}
.nav.solid {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-ink);
  transition: color var(--t);
}
.nav.solid .nav__logo-text { color: var(--c-ink); }
.nav:not(.solid) .nav__logo-text { color: #fff; }
.nav__logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.nav__links {
  display: none;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--t);
}
.nav.solid .nav__links a { color: var(--c-ink); }
.nav:not(.solid) .nav__links a { color: rgba(255,255,255,0.9); }
.nav__links a:hover { color: var(--c-accent) !important; }
.nav__cta { display: none; }
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  width: 24px;
  background: #fff;
  transition: all var(--t);
}
.nav.solid .nav__burger span { background: var(--c-ink); }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 24px;
  background: #fff;
  border-top: 1px solid var(--c-border);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-ink);
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 12, 8, 0.68) 0%,
    rgba(20, 12, 8, 0.45) 50%,
    rgba(20, 12, 8, 0.3) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 48px) 0 80px;
  max-width: 700px;
}
.hero__badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: #e8b89d;
}
.hero__sub {
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.hero__stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ WHY ============ */
.why {
  padding: 80px 0;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.why__item {
  text-align: center;
  padding: 40px 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  transition: transform var(--t), box-shadow var(--t);
}
.why__item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
.why__icon {
  font-size: 1.8rem;
  color: var(--c-accent);
  margin-bottom: 20px;
}
.why__item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--c-ink);
}
.why__item p {
  font-size: 0.92rem;
  color: var(--c-muted);
  line-height: 1.7;
}
@media (min-width: 768px) { .why__grid { grid-template-columns: repeat(3, 1fr); } }

/* ============ SERVICES ============ */
.services {
  padding: 100px 0;
  background: #fff;
}
.services__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.tab-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 10px 20px;
  border: 1.5px solid var(--c-border);
  border-radius: 100px;
  background: transparent;
  color: var(--c-muted);
  cursor: pointer;
  transition: all var(--t);
  min-height: 44px;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--t), box-shadow var(--t);
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.3;
}
.service-card__badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--c-accent-light);
  color: var(--c-accent);
}
.service-card__badge.popular {
  background: var(--c-accent);
  color: #fff;
}
.service-card > p {
  font-size: 0.88rem;
  color: var(--c-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-list {
  margin-bottom: 24px;
  border-top: 1px solid var(--c-border);
}
.service-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.88rem;
  gap: 12px;
}
.service-list li span:first-child { color: var(--c-ink); }
.service-list li span:last-child {
  font-weight: 600;
  color: var(--c-accent);
  white-space: nowrap;
}

/* ============ ABOUT ============ */
.about {
  padding: 100px 0;
  background: var(--c-surface);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
}
.about__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--c-accent);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(196,133,107,0.4);
}
.about__img-badge strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.about__img-badge span {
  font-size: 0.78rem;
  opacity: 0.85;
  letter-spacing: 0.04em;
}
.about__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--c-ink);
  margin-bottom: 20px;
}
.about__content h2 em { font-style: italic; color: var(--c-accent); }
.about__lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 16px;
  line-height: 1.65;
}
.about__content p {
  font-size: 0.92rem;
  color: var(--c-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}
.about__badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--c-ink);
  font-weight: 500;
}
.badge-icon {
  color: var(--c-accent);
  font-size: 0.6rem;
}

/* ============ BOOKING ============ */
.booking {
  padding: 100px 0;
  background: #fff;
}
.booking__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 1100px) {
  .booking__layout { grid-template-columns: 1fr 300px; gap: 48px; }
}

/* ── Stepper ── */
.booking__stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  grid-column: 1;
}
@media (min-width: 1100px) {
  .booking__stepper { grid-column: 1; }
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 80px;
}
.step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-muted);
  background: #fff;
  transition: all var(--t);
}
.step span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-muted);
  text-align: center;
  transition: color var(--t);
  white-space: nowrap;
}
.step.active .step__num {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}
.step.active span { color: var(--c-accent); }
.step.done .step__num {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: #fff;
}
.step__line {
  flex: 1;
  height: 1.5px;
  background: var(--c-border);
  min-width: 40px;
  margin-bottom: 22px;
}

/* ── Steps ── */
.booking__body {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 400px;
}
.booking__step { display: none; }
.booking__step.active { display: block; }
.booking__step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 28px;
}
.booking__step-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ── Recap mini ── */
.booking__recap-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-accent-light);
  border: 1px solid rgba(196,133,107,0.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--c-ink);
  flex-wrap: wrap;
}
.booking__recap-mini strong { color: var(--c-accent); font-weight: 600; }
.booking__recap-mini:empty { display: none; }

/* ── Service Picker ── */
.service-picker {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 460px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}
.service-picker::-webkit-scrollbar { width: 4px; }
.service-picker::-webkit-scrollbar-track { background: transparent; }
.service-picker::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 4px; }

.sp-group {}
.sp-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
}
.sp-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
@media (min-width: 640px) { .sp-items { grid-template-columns: repeat(2, 1fr); } }

.sp-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  cursor: pointer;
  background: #fff;
  transition: all var(--t);
  min-height: 48px;
}
.sp-item:hover {
  border-color: var(--c-accent);
  background: var(--c-accent-light);
}
.sp-item.selected {
  border-color: var(--c-accent);
  background: var(--c-accent);
  color: #fff;
}
.sp-item.selected .sp-item__meta { color: rgba(255,255,255,0.8); }
.sp-item__name { font-size: 0.88rem; font-weight: 500; }
.sp-item__meta { font-size: 0.78rem; color: var(--c-muted); white-space: nowrap; }

/* ── Calendar ── */
.cal-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .cal-wrapper { grid-template-columns: 1fr 1fr; } }
.cal {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.cal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal__month {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-ink);
  text-transform: capitalize;
}
.cal__nav {
  background: none;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--c-ink);
  transition: all var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal__nav:hover:not(:disabled) { border-color: var(--c-accent); color: var(--c-accent); }
.cal__nav:disabled { opacity: 0.3; cursor: not-allowed; }
.cal__days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  margin-bottom: 8px;
}
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--t);
  font-weight: 400;
  background: transparent;
  color: var(--c-ink);
  min-height: 36px;
}
.cal__day:hover:not(.disabled):not(.empty) { border-color: var(--c-accent); color: var(--c-accent); }
.cal__day.selected { background: var(--c-accent); color: #fff; border-color: var(--c-accent); font-weight: 600; }
.cal__day.today { border-color: var(--c-border); font-weight: 700; }
.cal__day.disabled { color: var(--c-border); cursor: not-allowed; }
.cal__day.empty { cursor: default; }

/* ── Slots ── */
.slots {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.slots__hint {
  font-size: 0.88rem;
  color: var(--c-muted);
  text-align: center;
  padding: 40px 0;
}
.slots__date-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--c-ink);
  margin-bottom: 14px;
  text-transform: capitalize;
}
.slots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.slot {
  padding: 10px 6px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t);
  background: #fff;
  color: var(--c-ink);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slot:hover { border-color: var(--c-accent); color: var(--c-accent); }
.slot.selected { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.slot.unavailable {
  text-decoration: line-through;
  color: var(--c-border);
  cursor: not-allowed;
  background: var(--c-surface);
}

/* ── Form ── */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 540px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--c-ink);
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(196,133,107,0.15);
}
.form-group input.error { border-color: #e05050; }
.form-group--check { flex-direction: row; align-items: flex-start; gap: 12px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--c-accent);
  margin-top: 1px;
}

/* ── Confirmation ── */
.booking__confirm {
  text-align: center;
  padding: 20px 0;
}
.booking__confirm-icon {
  width: 72px;
  height: 72px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(196,133,107,0.4);
}
.booking__confirm h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--c-ink);
  margin-bottom: 12px;
}
.booking__confirm > p {
  font-size: 0.95rem;
  color: var(--c-muted);
  max-width: 420px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.booking__confirm-recap {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  text-align: left;
  margin-bottom: 28px;
  font-size: 0.9rem;
}
.booking__confirm-recap strong { color: var(--c-accent); }
.booking__confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Sidebar Info ── */
.booking__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking__info-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.booking__info-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--c-ink);
}
.booking__hours { display: flex; flex-direction: column; gap: 0; }
.booking__hours li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--c-border);
}
.booking__hours li:last-child { border-bottom: none; }
.booking__hours li.highlight { color: var(--c-accent); font-weight: 600; }
.booking__hours li.closed { color: var(--c-muted); }
.booking__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--c-accent);
  letter-spacing: 0.02em;
  transition: color var(--t);
}
.booking__phone:hover { color: var(--c-accent-hi); }
.booking__phone-sub { font-size: 0.8rem; color: var(--c-muted); margin-top: 6px; }
.booking__info-card--accent {
  background: var(--c-accent-light);
  border-color: rgba(196,133,107,0.2);
}
.booking__urgency {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-accent);
  line-height: 1.55;
}
.booking__urgency svg { flex-shrink: 0; margin-top: 2px; }

/* ============ REVIEWS ============ */
.reviews {
  padding: 100px 0;
  background: var(--c-surface);
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }
.review-card__stars {
  font-size: 1.1rem;
  color: var(--c-gold);
  letter-spacing: 2px;
}
.review-card p {
  font-size: 0.92rem;
  color: var(--c-ink);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card footer strong { font-size: 0.9rem; color: var(--c-ink); }
.review-card footer span { font-size: 0.78rem; color: var(--c-muted); }

/* ============ CTA STRIP ============ */
.cta-strip {
  padding: 80px 0;
  background: var(--c-ink);
}
.cta-strip__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-strip__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.cta-strip__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}
.cta-strip__text p { font-size: 0.92rem; color: rgba(255,255,255,0.65); }
.cta-strip__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============ CONTACT ============ */
.contact {
  padding: 100px 0;
  background: #fff;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: 380px 1fr; }
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact__info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__info-block svg {
  flex-shrink: 0;
  color: var(--c-accent);
  margin-top: 2px;
}
.contact__info-block strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 4px;
}
.contact__info-block address,
.contact__info-block p { font-size: 0.92rem; color: var(--c-ink); line-height: 1.65; }
.contact__info-block a { color: var(--c-accent); font-weight: 500; }
.contact__info-block a:hover { text-decoration: underline; }
.contact__map iframe {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* ============ FOOTER ============ */
.footer {
  padding: 64px 0 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
}
.footer__brand .footer__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 300px;
}
.footer__links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: 16px;
}
.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links ul li a,
.footer__links ul li address {
  font-size: 0.88rem;
  color: var(--c-muted);
  transition: color var(--t);
  line-height: 1.6;
}
.footer__links ul li a:hover { color: var(--c-accent); }
.footer__bottom {
  border-top: 1px solid var(--c-border);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__bottom p { font-size: 0.8rem; color: var(--c-muted); }
.footer__bottom a { color: var(--c-accent); }

/* ============ MOBILE CTA ============ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 16px 24px calc(16px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-border);
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-cta .btn { width: 100%; }
@media (max-width: 767px) { .mobile-cta { display: block; } }
