/* ---------- Tokens ---------- */
:root {
  --white: #FFFFFF;
  --off-white: #F8F7F3;
  --black: #050505;
  --dark: #171717;
  --gold: #D4AF37;
  --gold-soft: #F4E3A1;
  --gold-deep: #B8932B;
  --grey-text: #7A7A7A;
  --line: rgba(5, 5, 5, 0.08);
  --line-strong: rgba(5, 5, 5, 0.14);
  --shadow-sm: 0 1px 2px rgba(5,5,5,.04), 0 4px 14px rgba(5,5,5,.05);
  --shadow-md: 0 8px 30px rgba(5,5,5,.08), 0 2px 6px rgba(5,5,5,.04);
  --shadow-gold: 0 10px 40px rgba(212,175,55,.22);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --container: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--off-white);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0; }
::selection { background: var(--gold); color: var(--black); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14.5px; font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.35s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn .icon { width: 17px; height: 17px; stroke-width: 1.8; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--black);
  box-shadow: 0 6px 22px rgba(212,175,55,.32), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(212,175,55,.45), inset 0 1px 0 rgba(255,255,255,.5);
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn-dark:hover { background: var(--dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--black); background: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.4s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(248, 247, 243, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 600;
  letter-spacing: 0.01em;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
  display: grid; place-items: center;
  position: relative;
}
.logo-mark::after {
  content: ""; position: absolute; inset: 4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
}
.logo-mark svg { width: 16px; height: 16px; color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 34px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--dark);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -6px; left: 0;
  height: 1px; width: 0; background: var(--gold);
  transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.hero-bg::before, .hero-bg::after {
  content: ""; position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.hero-bg::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  top: -120px; right: -80px;
  animation: floatA 16s ease-in-out infinite;
}
.hero-bg::after {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  bottom: -100px; left: -60px;
  opacity: 0.18;
  animation: floatB 20s ease-in-out infinite;
}
@keyframes floatA { 50% { transform: translate(-30px, 40px); } }
@keyframes floatB { 50% { transform: translate(40px, -30px); } }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 48px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.18);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6.2vw, 84px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 24px 0 24px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 50%, var(--gold-soft));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lede {
  font-size: 18px;
  color: var(--grey-text);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex; align-items: center; gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.meta-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: var(--grey-text);
}
.meta-item strong { color: var(--black); font-weight: 600; }
.avatars { display: flex; }
.avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--off-white);
  background: linear-gradient(135deg, #d4d4d4, #a3a3a3);
  margin-left: -10px;
  font-size: 11px; font-weight: 600;
  display: grid; place-items: center; color: white;
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(1) { background: linear-gradient(135deg, #1f2937, #4b5563); }
.avatars span:nth-child(2) { background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: var(--black); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #6b7280, #374151); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #111827, #1f2937); }
.stars { color: var(--gold); display: inline-flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; }

/* Hero animation container */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-animation {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background: #F8F4EA;
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.6s ease;
}
.hero-animation:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

/* ---------- Section base ---------- */
section { position: relative; }
.section { padding: 110px 0; }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 660px;
}
.section-head h2 em { font-style: italic; color: var(--gold-deep); }
.section-head .sub {
  color: var(--grey-text);
  max-width: 380px;
  font-size: 15px;
}

/* ---------- Companies grid ---------- */
.filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.chip {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--dark);
  transition: all 0.3s;
}
.chip:hover { border-color: var(--black); }
.chip.active {
  background: var(--black); color: var(--gold);
  border-color: var(--black);
}

.companies {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.company {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.company::before {
  content: ""; position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.company:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.company:hover::before { opacity: 1; }
.co-top {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.co-logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--black), var(--dark));
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 600;
  flex-shrink: 0;
}
.co-name { font-size: 17px; font-weight: 600; margin-bottom: 3px; }
.co-cat {
  font-size: 12px; color: var(--grey-text);
  display: inline-flex; align-items: center; gap: 6px;
}
.co-rating {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
}
.co-rating .num { font-weight: 700; font-size: 15px; }
.co-rating .count { color: var(--grey-text); }
.co-desc {
  color: var(--grey-text);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 22px;
}
.co-actions { display: flex; gap: 8px; }
.co-actions .btn { flex: 1; justify-content: center; padding: 11px 14px; font-size: 13px; }
.co-meta {
  display: flex; align-items: center; gap: 14px;
  padding-top: 16px; margin-top: 4px;
  border-top: 1px dashed var(--line);
  font-size: 12px; color: var(--grey-text);
  margin-bottom: 16px;
}
.co-meta span { display: inline-flex; align-items: center; gap: 5px; }
.co-meta svg { width: 13px; height: 13px; }

/* ---------- Booking section ---------- */
.booking {
  background: var(--black);
  color: var(--white);
  border-radius: 36px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: ""; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,.18) 0%, transparent 70%);
  top: -300px; right: -200px;
  filter: blur(40px);
}
.booking::after {
  content: ""; position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,.12) 0%, transparent 70%);
  bottom: -200px; left: -100px;
  filter: blur(50px);
}
.booking-inner { position: relative; z-index: 1; }
.booking .section-head h2 { color: var(--white); }
.booking .section-head .sub { color: rgba(255,255,255,.6); }
.booking .eyebrow {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}

/* Stepper */
.stepper {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.step-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: all 0.4s;
}
.step-pill .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  font-weight: 600; font-size: 12px;
  transition: all 0.4s;
}
.step-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.step-pill.active .num { background: var(--black); color: var(--gold); }
.step-pill.done { color: var(--gold); border-color: rgba(212,175,55,.35); }
.step-pill.done .num { background: var(--gold); color: var(--black); }
.step-line {
  flex: 0 0 24px; height: 1px;
  background: rgba(255,255,255,.12);
}

.step-panel { display: none; animation: fadeUp 0.5s ease both; }
.step-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.step-title {
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 500;
  margin-bottom: 8px;
}
.step-desc { color: rgba(255,255,255,.55); margin-bottom: 36px; font-size: 15px; }

/* Category cards */
.cats {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px 18px;
  text-align: left;
  transition: all 0.35s;
  display: flex; flex-direction: column; gap: 16px;
  color: var(--white);
}
.cat:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(212,175,55,.4);
  transform: translateY(-4px);
}
.cat.selected {
  background: linear-gradient(155deg, rgba(212,175,55,.22) 0%, rgba(212,175,55,.05) 100%);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.cat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(212,175,55,.12);
  color: var(--gold);
  display: grid; place-items: center;
  transition: all 0.4s;
}
.cat.selected .cat-icon {
  background: var(--gold); color: var(--black);
  transform: rotate(-6deg);
}
.cat-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.cat-name { font-size: 15px; font-weight: 600; }
.cat-meta { font-size: 12px; color: rgba(255,255,255,.5); margin-top: -10px; }

/* Company selection step */
.step-companies {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pick-co {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 22px;
  text-align: left;
  color: var(--white);
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.35s;
}
.pick-co:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(212,175,55,.35);
  transform: translateY(-3px);
}
.pick-co.selected {
  background: linear-gradient(155deg, rgba(212,175,55,.16), rgba(212,175,55,.03));
  border-color: var(--gold);
}
.pick-head { display: flex; align-items: center; gap: 12px; }
.pick-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--black);
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  flex-shrink: 0;
}
.pick-name { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.pick-loc { font-size: 12px; color: rgba(255,255,255,.5); display: inline-flex; align-items: center; gap: 5px; }
.pick-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255,.65);
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08);
}
.pick-meta .stars-num { display: inline-flex; align-items: center; gap: 6px; }

/* Calendar step */
.calendar-layout {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}
.cal-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 26px;
}
.service-picker {
  max-width: 460px;
  margin-bottom: 20px;
  gap: 8px;
}
.service-picker label {
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 600;
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.cal-head h4 { font-size: 16px; font-weight: 600; }
.cal-nav { display: flex; gap: 6px; }
.cal-nav button {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: var(--white);
  display: grid; place-items: center;
  transition: all 0.25s;
}
.cal-nav button:hover { background: var(--gold); color: var(--black); }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-dow {
  text-align: center; font-size: 11px; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding-bottom: 6px;
}
.cal-day {
  aspect-ratio: 1;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 500;
  border-radius: 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.25s;
  position: relative;
}
.cal-day:hover:not(.disabled):not(.selected) {
  background: rgba(255,255,255,.06);
  border-color: rgba(212,175,55,.3);
}
.cal-day.disabled { color: rgba(255,255,255,.18); pointer-events: none; }
.cal-day.muted { color: rgba(255,255,255,.25); }
.cal-day.today { color: var(--gold); font-weight: 700; }
.cal-day.has-slots::after {
  content: ""; position: absolute; bottom: 5px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}
.cal-day.selected {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.cal-day.selected.has-slots::after { background: var(--black); }

.slots-card { display: flex; flex-direction: column; }
.slots-card h4 { font-size: 16px; margin-bottom: 4px; }
.slots-card .day-label {
  font-size: 13px; color: rgba(255,255,255,.55);
  margin-bottom: 22px;
}
.slots-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.slot {
  padding: 13px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--white);
  font-size: 13.5px; font-weight: 500;
  transition: all 0.25s;
}
.slot:hover:not(.taken):not(.selected) {
  border-color: rgba(212,175,55,.4);
  background: rgba(212,175,55,.06);
}
.slot.taken {
  color: rgba(255,255,255,.25);
  text-decoration: line-through;
  pointer-events: none;
}
.slot.selected {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}

.summary {
  margin-top: auto;
  padding: 18px;
  background: rgba(212,175,55,.06);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 14px;
  display: flex; align-items: center; gap: 14px;
  font-size: 13px;
}
.summary .ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--gold); color: var(--black);
  display: grid; place-items: center;
}
.summary strong { display: block; font-size: 13.5px; }
.summary span { color: rgba(255,255,255,.65); font-size: 12px; }

.customer-form {
  margin-top: 28px;
  padding: 24px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
}
.form-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-group {
  display: grid;
  gap: 7px;
}
.form-group label {
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 600;
}
.form-input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  color: var(--white);
  padding: 12px 13px;
  outline: none;
  resize: vertical;
}
.form-input::placeholder { color: rgba(255,255,255,.35); }
.form-input:focus {
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}
.form-error, .loading-indicator, .no-slots {
  grid-column: 1 / -1;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
}
.form-error {
  margin-top: 14px;
  color: #ffd7d7;
  background: rgba(180,60,60,.16);
  border: 1px solid rgba(255,150,150,.22);
}
.loading-indicator, .no-slots {
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.step-actions {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.btn-back {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
}
.btn-back:hover { background: rgba(255,255,255,.06); }
.btn-gold[disabled] { opacity: 0.35; pointer-events: none; }

/* Confirmation */
.confirm {
  text-align: center; padding: 40px 20px;
  max-width: 520px; margin: 0 auto;
}
.confirm .check {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--black);
  display: grid; place-items: center;
  margin: 0 auto 28px;
  box-shadow: 0 18px 50px rgba(212,175,55,.4);
  animation: pop 0.6s cubic-bezier(.5,1.4,.5,1);
}
.confirm .check svg { width: 36px; height: 36px; stroke-width: 2.2; }
@keyframes pop { from { transform: scale(0.5); opacity: 0; } }
.confirm h3 {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 500;
  margin-bottom: 12px;
}
.confirm p { color: rgba(255,255,255,.65); margin-bottom: 28px; }
.confirm-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 24px;
  display: grid; gap: 14px;
  text-align: left;
}
.confirm-row {
  display: flex; justify-content: space-between;
  font-size: 14px;
}
.confirm-row span { color: rgba(255,255,255,.55); }
.confirm-row strong { font-weight: 600; }

/* ---------- Reviews / Testimonials ---------- */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: all 0.4s;
  position: relative;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--grey-text);
  text-align: center;
}
.empty-state h3 {
  color: var(--black);
  font-size: 20px;
  margin-bottom: 8px;
}
.empty-state p {
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.review .quote-mark {
  font-family: var(--font-serif);
  font-size: 70px;
  color: var(--gold);
  line-height: 0.4;
  margin-bottom: 14px;
  opacity: 0.4;
}
.review .stars { margin-bottom: 16px; }
.review p.body {
  font-family: var(--font-serif);
  font-size: 19px; line-height: 1.45;
  color: var(--dark);
  flex: 1;
  margin-bottom: 24px;
  font-weight: 400;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--black), var(--dark));
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 14px; font-weight: 600;
  flex-shrink: 0;
}
.review-meta strong { font-size: 14px; font-weight: 600; display: block; }
.review-meta span { font-size: 12px; color: var(--grey-text); }

.reviews-aggregate {
  display: flex; align-items: center; gap: 40px;
  margin-bottom: 56px;
  padding: 28px 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.agg-score {
  font-family: var(--font-serif);
  font-size: 64px; font-weight: 500;
  color: var(--black);
  line-height: 1;
}
.agg-detail .stars { margin-bottom: 6px; }
.agg-detail .stars svg { width: 18px; height: 18px; }
.agg-detail .count { font-size: 13px; color: var(--grey-text); }
.agg-bars { flex: 1; min-width: 260px; display: grid; gap: 8px; }
.agg-bar { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--grey-text); }
.agg-bar .label { width: 16px; }
.agg-bar .track { flex: 1; height: 6px; background: var(--off-white); border-radius: 999px; overflow: hidden; border: 1px solid var(--line); }
.agg-bar .fill { height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); border-radius: 999px; }
.agg-bar .pct { width: 32px; text-align: right; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
  padding: 80px 0 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h5 {
  color: var(--white); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,.65);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: grid; place-items: center;
  color: rgba(255,255,255,.75);
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--gold); color: var(--black);
  transform: translateY(-3px);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom .gold-accent { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding: 150px 0 80px; }
  .hero-animation { transform: none; max-width: 400px; margin: 0 auto; }
  .companies, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .cats { grid-template-columns: repeat(3, 1fr); }
  .step-companies { grid-template-columns: repeat(2, 1fr); }
  .calendar-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .booking { padding: 60px 36px; }
  .section { padding: 80px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .menu-toggle {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--white); border: 1px solid var(--line);
  }
  .hero { padding: 130px 0 60px; }
  .hero-animation { transform: none; }
  .companies, .reviews-grid { grid-template-columns: 1fr; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .step-companies { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .booking { padding: 50px 22px; border-radius: 24px; }
  .step-title { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 18px; }
  .reviews-aggregate { gap: 24px; padding: 22px; }
  .agg-score { font-size: 52px; }
  .stepper { gap: 6px; }
  .step-pill { padding: 8px 12px 8px 8px; font-size: 12px; }
  .step-pill .num { width: 22px; height: 22px; font-size: 11px; }
  .step-pill .step-label { display: none; }
  .step-pill.active .step-label { display: inline; }
  .step-line { flex: 0 0 12px; }
}
