:root {
  --ink: #111111;
  --muted: #6d625e;
  --paper: #fffaf7;
  --cream: #f6eee8;
  --rose: #d9a29a;
  --rose-dark: #b97872;
  --blush: #f1d6d0;
  --sage: #8f9a86;
  --gold: #b98f52;
  --line: rgba(35, 29, 27, 0.12);
  --shadow: 0 22px 60px rgba(41, 26, 21, 0.11);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(217, 162, 154, 0.18), transparent 28%),
    linear-gradient(180deg, var(--paper), #f7eee9 46%, var(--paper));
}

body.menu-open {
  overflow: hidden;
}

body.cart-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 780px;
}

.seo-fallback {
  max-width: 860px;
  margin: 80px auto;
  padding: 0 24px;
}

.seo-fallback h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 400;
  line-height: 0.95;
}

.seo-fallback p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.seo-fallback a {
  display: inline-flex;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  color: var(--rose-dark);
  font-weight: 700;
}

.hero,
.dashboard-hero {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #efd0ca, #f8ece8 46%, #e6b8b0);
  color: #241918;
  font-size: 13px;
}

.topbar span::before {
  content: "✦";
  margin-right: 8px;
  color: var(--rose-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  line-height: 1;
  text-align: center;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 400;
}

.brand span {
  position: relative;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.brand span::before,
.brand span::after {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 1px;
  background: var(--line);
  content: "";
}

.brand span::before {
  right: calc(100% + 10px);
}

.brand span::after {
  left: calc(100% + 10px);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 15px;
}

.main-nav a {
  border-bottom: 1px solid transparent;
  padding: 8px 0;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--rose-dark);
  border-color: currentColor;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.icon-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.cart-link span {
  position: absolute;
  top: 3px;
  right: 0;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #9e7771;
  color: white;
  font-size: 11px;
  line-height: 20px;
  text-align: center;
}

.mobile-cart {
  display: none;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  padding: 0 24px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(40, 27, 24, 0.13);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.button.dark {
  background: var(--ink);
  color: white;
}

.button.rose {
  border-color: var(--rose-dark);
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  color: white;
}

.button.light {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.button.small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 14px;
}

.page {
  min-height: 72vh;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1.12fr);
  min-height: calc(100vh - 108px);
  background: linear-gradient(90deg, #fffaf7 0%, #fffaf7 34%, #f5e5de 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 8vw, 92px) clamp(22px, 6vw, 74px);
}

.eyebrow {
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.04;
}

h1 em,
.script {
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.hand {
  color: var(--rose-dark);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
}

.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  color: var(--muted);
}

.avatars {
  display: flex;
}

.avatars span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-right: -8px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blush), #f9f0eb);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.stars {
  color: var(--gold);
}

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sale-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin-top: 22px;
  border-left: 3px solid var(--rose-dark);
  padding-left: 14px;
  color: var(--muted);
}

.sale-proof strong {
  color: var(--ink);
  font-size: 22px;
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(18px, 5vw, 54px);
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 16px;
  width: min(620px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(185, 120, 114, 0.45);
  border-radius: 50%;
  color: var(--rose-dark);
  font-weight: 900;
}

.feature strong {
  display: block;
  margin-bottom: 3px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 70px);
}

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

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.04;
}

.grid {
  display: grid;
  gap: 18px;
}

.course-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.course-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 42px rgba(46, 31, 29, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.best-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.course-card:hover {
  border-color: rgba(185, 120, 114, 0.35);
  box-shadow: 0 28px 70px rgba(46, 31, 29, 0.13);
  transform: translateY(-6px);
}

.course-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover img {
  transform: scale(1.04);
}

.course-body {
  padding: 18px;
  text-align: center;
}

.course-body h3 {
  min-height: 58px;
  font-size: 23px;
  line-height: 1.08;
}

.course-body p {
  min-height: 66px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.pill {
  display: inline-flex;
  margin-bottom: 12px;
  border: 1px solid rgba(185, 120, 114, 0.28);
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

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

.offer-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 253, 251, 0.86);
  box-shadow: 0 18px 52px rgba(46, 31, 29, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.offer-card:hover {
  border-color: rgba(185, 120, 114, 0.38);
  box-shadow: 0 28px 70px rgba(46, 31, 29, 0.13);
  transform: translateY(-5px);
}

.offer-card img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
}

.offer-card > div {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.offer-card h3 {
  font-size: 26px;
}

.offer-card p {
  color: var(--muted);
  line-height: 1.55;
}

.mini-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  list-style: none;
}

.mini-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--rose-dark);
  font-weight: 900;
}

.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
}

.offer-footer strong {
  color: var(--ink);
  font-size: 24px;
}

.meta {
  margin: 10px 0;
  color: var(--muted);
  font-size: 13px;
}

.price {
  margin: 8px 0 16px;
  font-size: 22px;
  font-weight: 900;
}

.micro-proof,
.secure-note {
  margin: -6px 0 14px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 900;
}

.about-strip {
  display: grid;
  grid-template-columns: minmax(290px, 0.95fr) minmax(290px, 1fr);
  background: white;
}

.about-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

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

.signature {
  position: absolute;
  left: 48px;
  top: 60px;
  color: white;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 70px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.18);
}

.profile-chip {
  position: absolute;
  left: 36px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.92);
  box-shadow: var(--shadow);
}

.profile-chip span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blush);
  font-weight: 900;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 76px);
}

.about-copy h2 {
  margin: 14px 0;
  font-size: clamp(38px, 5vw, 62px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 26px 0;
}

.stat strong {
  display: block;
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(80, 54, 50, 0.18);
}

.trust-band div {
  padding: 24px clamp(18px, 5vw, 74px);
  background: linear-gradient(90deg, #efc4be, #f7dfda);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 8vw, 102px) clamp(18px, 6vw, 78px);
  background: var(--cream);
}

.page-hero h1 {
  font-size: clamp(38px, 4.2vw, 60px);
}

.page-hero img {
  width: 100%;
  max-height: 520px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: white;
  cursor: pointer;
}

.filter.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 38px rgba(46, 31, 29, 0.07);
}

.glass {
  background: rgba(255, 250, 247, 0.86);
  backdrop-filter: blur(14px);
}

.panel.pad {
  padding: clamp(22px, 3vw, 34px);
}

.lesson-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.lesson-list li,
.plain-list li {
  display: flex;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.lesson-list li::before,
.plain-list li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.sticky-buy {
  position: sticky;
  top: 112px;
  overflow: hidden;
}

.sticky-buy img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.sticky-buy .panel-content {
  padding: 24px;
}

.module-preview {
  margin-top: 34px;
}

.video-shell {
  position: relative;
  display: grid;
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #191514;
  color: white;
}

.video-shell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  object-fit: cover;
}

.video-shell span {
  position: relative;
  place-self: center;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.video-shell p {
  position: relative;
  align-self: end;
  margin: 0;
  padding: 18px;
  font-weight: 800;
}

.locked-video {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 0.72fr) minmax(220px, 1fr);
  gap: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: linear-gradient(135deg, #fffdfb, var(--cream));
  box-shadow: 0 14px 38px rgba(46, 31, 29, 0.07);
}

.locked-video::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 250, 247, 0), rgba(255, 255, 255, 0.5));
  content: "";
}

.locked-video img {
  width: 100%;
  min-height: 180px;
  border-radius: 7px;
  object-fit: cover;
  filter: saturate(0.82);
}

.locked-video div {
  position: relative;
  display: grid;
  align-content: center;
  gap: 10px;
}

.locked-video span {
  width: max-content;
  border: 1px solid rgba(185, 120, 114, 0.35);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.locked-video strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
}

.locked-video p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.review {
  padding: 26px;
}

.review p {
  color: var(--muted);
  line-height: 1.65;
}

.proof-section {
  background: #fffdfb;
}

.reservation-home-section {
  background: linear-gradient(135deg, #fffdfb, rgba(238, 211, 207, 0.2));
}

.reservation-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.reservation-home-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.94);
  box-shadow: 0 18px 52px rgba(46, 31, 29, 0.08);
}

.reservation-home-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.reservation-home-card div {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 44px);
}

.reservation-home-card h3 {
  font-size: clamp(30px, 3vw, 44px);
}

.reservation-home-card p {
  color: var(--muted);
  line-height: 1.7;
}

.reservation-service-list {
  display: grid;
  gap: 12px;
}

.reservation-service-list article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(202, 151, 142, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.reservation-service-list strong {
  font-family: var(--serif);
  font-size: 24px;
}

.reservation-service-list span {
  color: var(--muted);
  line-height: 1.5;
}

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

.proof-card {
  overflow: hidden;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.92);
  box-shadow: 0 18px 52px rgba(46, 31, 29, 0.08);
}

.proof-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.proof-card div {
  padding: 22px;
}

.proof-card h3 {
  font-size: 28px;
}

.proof-card p,
.proof-card small {
  color: var(--muted);
  line-height: 1.6;
}

.proof-card small {
  display: block;
  margin-top: 14px;
  color: var(--rose-dark);
  font-weight: 900;
}

.objection-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 54px);
  background: linear-gradient(135deg, rgba(255, 250, 247, 0.94), rgba(238, 211, 207, 0.34));
  box-shadow: 0 22px 70px rgba(46, 31, 29, 0.08);
}

.objection-panel h2 {
  font-size: clamp(34px, 4.2vw, 58px);
}

.objection-list {
  display: grid;
  gap: 12px;
}

.objection-list article {
  border: 1px solid rgba(202, 151, 142, 0.22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.objection-list strong {
  display: block;
  margin-bottom: 8px;
}

.objection-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.confidence-section {
  background: #fffdfb;
}

.confidence-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.confidence-grid article,
.trust-grid article {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(202, 151, 142, 0.22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 250, 247, 0.72);
}

.confidence-grid span,
.trust-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.payment-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.payment-method-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.payment-method-grid article,
.payment-empty {
  border: 1px solid rgba(202, 151, 142, 0.22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 250, 247, 0.74);
}

.payment-method-grid h3 {
  font-size: 30px;
}

.payment-method-grid p,
.payment-empty p {
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 0;
  padding: 22px 0;
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open p {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 14px 15px;
  background: #fffdfb;
  outline-color: var(--rose);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.payment-options {
  display: grid;
  gap: 10px;
}

.payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: linear-gradient(135deg, #fffdfb, #f8ece8);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.payment-option:hover {
  border-color: rgba(198, 137, 128, 0.58);
  box-shadow: 0 14px 30px rgba(45, 34, 31, 0.08);
  transform: translateY(-1px);
}

.payment-option input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--rose-dark);
}

.payment-option span {
  display: grid;
  gap: 4px;
}

.payment-option strong {
  font-size: 14px;
}

.payment-option small {
  color: var(--muted);
  line-height: 1.45;
}

.cart-layout,
.contact-layout,
.login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 26px;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 94px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 94px;
  height: 78px;
  border-radius: var(--radius);
  object-fit: cover;
}

.cart-upsell {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 250, 247, 0.94), rgba(238, 211, 207, 0.28));
}

.cart-upsell h2 {
  margin: 6px 0;
  font-size: 30px;
}

.cart-upsell p {
  color: var(--muted);
  line-height: 1.55;
}

.cart-upsell-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.cart-upsell-list article {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(202, 151, 142, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}

.cart-upsell-list img {
  width: 74px;
  height: 64px;
  border-radius: 7px;
  object-fit: cover;
}

.cart-upsell-list strong,
.cart-upsell-list span {
  display: block;
}

.cart-upsell-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
  background: rgba(17, 17, 17, 0);
  transition: background 0.25s ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 46;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(460px, 100vw);
  height: 100vh;
  border-left: 1px solid var(--line);
  background: rgba(255, 250, 247, 0.98);
  box-shadow: -26px 0 80px rgba(46, 31, 29, 0.16);
  transform: translateX(102%);
  transition: transform 0.28s ease;
}

body.cart-open .cart-overlay {
  pointer-events: auto;
  background: rgba(17, 17, 17, 0.34);
}

body.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-head h2 {
  margin-top: 8px;
  font-size: 32px;
}

.cart-drawer-content {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 0;
}

.drawer-items {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: auto;
  padding: 20px 24px;
}

.drawer-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: white;
}

.drawer-item img {
  width: 76px;
  height: 68px;
  border-radius: 7px;
  object-fit: cover;
}

.drawer-item strong,
.drawer-item span {
  display: block;
}

.drawer-item span {
  margin: 5px 0;
  color: var(--muted);
  font-size: 13px;
}

.drawer-summary {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: #fffdfb;
}

.drawer-summary .button {
  width: 100%;
  margin-top: 10px;
}

.drawer-summary p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.empty-cart {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  min-height: 320px;
  padding: 32px;
  text-align: center;
}

.empty-cart span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(185, 120, 114, 0.32);
  border-radius: 50%;
  color: var(--rose-dark);
  font-size: 28px;
}

.empty-cart h3 {
  font-size: 30px;
}

.empty-cart p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.page-empty {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdfb;
}

.remove {
  border: 0;
  background: transparent;
  color: var(--rose-dark);
  font-weight: 900;
  cursor: pointer;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 14px 0;
  color: var(--muted);
}

.summary-row.total {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.student-card {
  display: grid;
  gap: 14px;
}

.progress {
  overflow: hidden;
  height: 9px;
  border-radius: 999px;
  background: var(--cream);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose-dark), var(--sage));
}

.progress.large {
  height: 12px;
  margin: 18px 0 24px;
}

.checkout-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.checkout-reassurance span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.checkout-steps {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.checkout-steps span,
.success-timeline div,
.order-card div {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 250, 247, 0.72);
}

.checkout-steps strong,
.success-timeline strong {
  display: inline-grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 13px;
}

.order-card,
.success-timeline {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.order-card div {
  justify-content: space-between;
}

.order-card span,
.success-timeline span {
  color: var(--muted);
  line-height: 1.5;
}

.order-card strong {
  text-align: right;
}

.abandoned-cart-box {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.abandoned-cart-box summary {
  color: var(--rose-dark);
  cursor: pointer;
  font-weight: 800;
}

.mini-lead-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 12px;
}

.mini-lead-form input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 12px;
  background: white;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  border-radius: 999px;
  padding: 13px 18px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.luxury-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: #111;
  color: rgba(255, 255, 255, 0.82);
}

.luxury-band span {
  padding: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 18px;
  align-items: center;
  padding: 24px clamp(18px, 6vw, 74px);
  border-bottom: 1px solid var(--line);
  background: #fffdfb;
  box-shadow: 0 18px 50px rgba(46, 31, 29, 0.06);
}

.conversion-strip div {
  display: grid;
  gap: 4px;
}

.conversion-strip span {
  color: var(--muted);
  font-size: 13px;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  background: #fffdfb;
}

.video-feature-copy h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.youtube-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}

.youtube-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.student-video {
  background: #0f0f0f;
}

.guarantee {
  background: #fffdfb;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guarantee-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
}

.guarantee-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.editorial {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1fr);
  gap: 36px;
  align-items: start;
  background: #111;
  color: white;
}

.editorial h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.8vw, 68px);
}

.editorial-grid {
  display: grid;
  gap: 16px;
}

.editorial-grid article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.editorial-grid strong {
  color: var(--rose);
  letter-spacing: 2px;
}

.editorial-grid p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.auth-section {
  min-height: 72vh;
}

.auth-card h1 {
  font-size: clamp(42px, 5vw, 66px);
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
}

.legal-sections {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.legal-sections section {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.legal-sections h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.dashboard-locked {
  min-height: 320px;
}

.subtle-link {
  display: inline-flex;
  width: max-content;
  margin-top: 18px;
  color: var(--rose-dark);
  font-weight: 800;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 28px;
  align-items: end;
  padding: clamp(54px, 8vw, 102px) clamp(18px, 6vw, 78px);
  background:
    linear-gradient(100deg, rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0.32)),
    url("assets/optimized/hero-lashes.jpg") center / cover;
  color: white;
}

.dashboard-hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.2);
}

.dashboard-stats div {
  padding: 20px;
  background: rgba(255, 250, 247, 0.12);
  backdrop-filter: blur(10px);
}

.dashboard-stats strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
}

.dashboard-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.student-course-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.student-course-list button {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: #fffdfb;
  text-align: left;
  cursor: pointer;
}

.student-course-list button.active {
  border-color: var(--rose-dark);
  background: #fbefec;
}

.student-course-list img {
  width: 64px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
}

.student-course-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.classroom-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.large-video {
  min-height: 360px;
}

.dashboard-lessons {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.dashboard-lessons label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px;
  background: #fffdfb;
  cursor: pointer;
}

.dashboard-lessons input {
  accent-color: var(--rose-dark);
  margin-top: 3px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.resource-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--cream);
}

.resource-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 54px clamp(18px, 6vw, 76px) 30px;
  background: #0d0f10;
  color: white;
}

.footer p,
.footer a,
.footer small {
  color: rgba(255, 255, 255, 0.75);
}

.footer h3 {
  margin-bottom: 14px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer-brand {
  margin-bottom: 20px;
  color: white;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 18px;
}

.newsletter input,
.newsletter button {
  min-height: 46px;
  border: 0;
  padding: 0 16px;
}

.newsletter input {
  border-radius: 7px 0 0 7px;
}

.newsletter button {
  border-radius: 0 7px 7px 0;
  background: var(--rose);
  color: white;
  cursor: pointer;
}

.footer small {
  grid-column: 1 / -1;
  text-align: center;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  max-width: 320px;
  border-radius: var(--radius);
  padding: 16px 18px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  transform: translateY(120%);
  transition: transform 0.25s ease;
}

.toast.show {
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .course-grid,
  .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews,
  .proof-grid,
  .reservation-home-grid,
  .reservation-home-card,
  .trust-band,
  .luxury-band,
  .conversion-strip,
  .confidence-grid,
  .trust-grid,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .mobile-cart {
    display: grid;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  body.menu-open .main-nav {
    position: fixed;
    inset: 84px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  body.menu-open .main-nav a {
    padding: 16px 10px;
  }

  .hero,
  .page-hero,
  .about-strip,
  .detail-layout,
  .cart-layout,
  .contact-layout,
  .login-layout,
  .payment-system-grid,
  .objection-panel,
  .editorial,
  .video-feature,
  .dashboard-hero,
  .dashboard-layout,
  .classroom-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 520px;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .stats,
  .course-grid,
  .resource-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-buy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 16px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand span::before,
  .brand span::after {
    width: 28px;
  }

  .hero-copy {
    padding-top: 42px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-card {
    position: static;
    grid-template-columns: 1fr;
    width: auto;
    margin: -58px 16px 22px;
  }

  .locked-video {
    grid-template-columns: 1fr;
  }

  .course-grid,
  .stats,
  .form-grid,
  .footer,
  .offer-grid,
  .resource-grid,
  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .offer-footer,
  .cart-upsell-list article {
    grid-template-columns: 1fr;
  }

  .cart-upsell-list img {
    width: 100%;
    height: 128px;
  }

  .cart-upsell-list .button {
    width: 100%;
  }

  .floating-cta {
    display: inline-flex;
  }

  .cart-item {
    grid-template-columns: 78px 1fr;
  }

  .cart-item img {
    width: 78px;
    height: 68px;
  }

  .cart-item .price {
    grid-column: 2;
    margin: 0;
  }

  .cart-drawer {
    width: 100vw;
  }

  .drawer-item {
    grid-template-columns: 68px 1fr;
  }

.drawer-item b {
    grid-column: 2;
  }
}

.booking-hero .page-actions {
  flex-wrap: wrap;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.provider-card {
  background: rgba(255, 250, 247, 0.92);
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(64, 45, 40, 0.08);
}

.provider-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.provider-card div {
  padding: 18px;
}

.provider-card h3 {
  margin: 12px 0 8px;
  font-size: 24px;
}

.provider-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.service-tags span {
  border: 1px solid rgba(202, 151, 142, 0.28);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 12px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: start;
}

.booking-summary {
  position: sticky;
  top: 110px;
}

body.reservation-route .topbar,
body.reservation-route .site-header,
body.reservation-route .floating-cta,
body.reservation-route .cart-overlay,
body.reservation-route .cart-drawer {
  display: none !important;
}

body.reservation-route {
  background:
    radial-gradient(circle at 18% 0%, rgba(202, 151, 142, 0.16), transparent 30%),
    linear-gradient(180deg, #fffaf7 0%, #f7eee9 100%);
}

.booking-app-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 8px;
}

.booking-app-header {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
}

.booking-back {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.booking-app-header .brand {
  justify-self: center;
  display: grid;
  gap: 2px;
  color: var(--ink);
  text-align: center;
}

.booking-app-header .brand strong {
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 36px);
  letter-spacing: 0;
}

.booking-app-header .brand span {
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-intro {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 4vw, 32px);
  border: 1px solid rgba(202, 151, 142, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.booking-intro h1 {
  margin: 0;
  font-size: clamp(34px, 7vw, 72px);
  line-height: 0.95;
}

.booking-intro p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
}

.booking-intro small {
  color: var(--rose-dark);
  font-weight: 900;
}

.booking-panel {
  overflow: hidden;
}

.service-category-list {
  display: grid;
  gap: 10px;
}

.service-category {
  border: 1px solid rgba(202, 151, 142, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.7);
}

.service-category summary {
  cursor: pointer;
  padding: 13px 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.booking-service-grid {
  grid-template-columns: 1fr;
  padding: 0 12px 12px;
}

.service-choice-card {
  min-height: auto;
  grid-template-columns: 1fr;
  padding: 12px 14px;
}

.service-choice-card > span {
  position: relative;
  padding-right: 28px;
}

.service-choice-card b {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-choice-card:has(input:checked) b {
  opacity: 1;
  transform: scale(1);
}

.depose-addon,
.terms-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.depose-addon[hidden] {
  display: none;
}

.depose-addon small,
.terms-check span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.paypal-manual-proof {
  padding: 12px 14px;
  border: 1px solid rgba(202, 151, 142, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.68);
}

.paypal-manual-proof summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.reservation-route .time-card small {
  display: none;
}

.time-card.is-hidden {
  display: none;
}

.booking-next-action {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(20, 18, 18, 0.92);
  color: #fff;
}

.booking-next-action span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.booking-reassurance-grid {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.booking-reassurance-grid span {
  padding: 9px 10px;
  border: 1px solid rgba(202, 151, 142, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.booking-wizard {
  display: grid;
  gap: 22px;
}

.booking-confidence-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 4px;
}

.booking-confidence-strip span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(202, 151, 142, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.78);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(202, 151, 142, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.72);
}

.booking-steps span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.booking-steps span.active {
  background: var(--ink);
  color: #fff;
}

.booking-step {
  display: none;
  animation: revealStep 0.28s ease both;
}

.booking-step.active {
  display: grid;
  gap: 18px;
}

@keyframes revealStep {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.choice-grid,
.date-choice-grid,
.time-choice-grid {
  display: grid;
  gap: 12px;
}

.choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.provider-choice-grid {
  grid-template-columns: 1fr;
}

.date-choice-grid,
.time-choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice-card,
.date-card,
.time-card {
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.choice-card {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.provider-choice img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.choice-card input,
.date-card input,
.time-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card > span {
  display: grid;
  gap: 4px;
}

.choice-card small,
.date-card span {
  color: var(--muted);
  font-size: 13px;
}

.choice-card em {
  color: var(--rose-dark);
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}

.date-card,
.time-card {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
}

.date-card strong {
  font-family: var(--serif);
  font-size: 22px;
}

.time-card span {
  font-weight: 900;
}

.time-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.choice-card:has(input:checked),
.date-card:has(input:checked),
.time-card:has(input:checked) {
  border-color: var(--rose);
  box-shadow: 0 14px 34px rgba(202, 151, 142, 0.16);
  transform: translateY(-1px);
}

.time-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.48;
  background: rgba(246, 239, 235, 0.62);
}

.time-card.is-booked {
  opacity: 0.72;
  border-color: rgba(143, 59, 59, 0.24);
  background: rgba(255, 235, 235, 0.62);
}

.time-card.is-disabled span,
.time-card.is-disabled small {
  color: rgba(84, 72, 68, 0.7);
}

.time-card.is-booked small {
  color: #8f3b3b;
}

.glam-planning {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(202, 151, 142, 0.26);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 28px);
  background:
    radial-gradient(circle at 6% 0%, rgba(202, 151, 142, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 247, 0.98), rgba(246, 226, 221, 0.34));
  box-shadow: 0 22px 60px rgba(64, 45, 40, 0.08);
}

.glam-planning::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.48), transparent 36%, rgba(202, 151, 142, 0.08));
}

.glam-planning-head,
.planning-legend {
  position: relative;
  z-index: 1;
}

.glam-planning-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.glam-planning-head h3 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
}

.planning-period {
  min-width: 210px;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 999px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.planning-period span,
.planning-period strong {
  display: block;
}

.planning-period span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.planning-period strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.planning-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, minmax(132px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x proximity;
}

.planning-day {
  min-width: 132px;
  border: 1px solid rgba(202, 151, 142, 0.22);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 253, 251, 0.82);
  scroll-snap-align: start;
}

.planning-day header {
  display: grid;
  justify-items: center;
  gap: 1px;
  margin-bottom: 10px;
  text-align: center;
}

.planning-day header strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.planning-day header span,
.planning-day header small {
  color: var(--muted);
  text-transform: uppercase;
}

.planning-day header span {
  font-family: var(--serif);
  font-size: 13px;
}

.planning-day header small {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.planning-slots {
  display: grid;
  gap: 7px;
}

.planning-slot {
  min-height: 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid rgba(194, 130, 91, 0.72);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.planning-slot span {
  font-size: 13px;
  font-weight: 900;
}

.planning-slot small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.planning-slot.available:hover,
.planning-slot.pending:hover,
.planning-slot.selected {
  transform: translateY(-1px);
  background: #171313;
  color: #fff;
  box-shadow: 0 12px 24px rgba(64, 45, 40, 0.14);
}

.planning-slot.available:hover small,
.planning-slot.pending:hover small,
.planning-slot.selected small {
  color: rgba(255, 255, 255, 0.72);
}

.planning-slot.booked,
.planning-slot.unavailable {
  cursor: not-allowed;
  border-color: rgba(202, 151, 142, 0.12);
  background: rgba(231, 218, 209, 0.58);
  color: rgba(35, 29, 28, 0.48);
}

.planning-slot.booked span,
.planning-slot.unavailable span {
  text-decoration: line-through;
  text-decoration-color: rgba(84, 52, 40, 0.58);
}

.planning-slot.pending {
  border-color: rgba(194, 130, 91, 0.92);
  background: rgba(255, 250, 247, 0.96);
}

.planning-slot.pending small::before {
  content: "⌛ ";
}

.planning-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(202, 151, 142, 0.18);
}

.planning-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.planning-legend i {
  width: 28px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  font-style: normal;
}

.legend-available {
  border: 1px solid rgba(194, 130, 91, 0.72);
  background: white;
}

.legend-booked {
  background: rgba(231, 218, 209, 0.76);
}

.legend-pending {
  border: 1px solid rgba(194, 130, 91, 0.72);
  color: var(--rose-dark);
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.deposit-box > div {
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.82);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.deposit-box strong {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}

.booking-mini-steps {
  display: grid;
  gap: 6px;
  margin: 2px 0 4px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.booking-next-action {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 250, 247, 0.96), rgba(238, 211, 207, 0.38));
}

.booking-next-action strong {
  font-family: var(--serif);
  font-size: 20px;
}

.booking-next-action span {
  color: var(--muted);
  line-height: 1.5;
}

.booking-reassurance-grid {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.booking-reassurance-grid span {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(23, 19, 19, 0.05);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.whatsapp-preview {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.9);
  text-align: left;
}

.whatsapp-preview strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.whatsapp-preview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 250, 247, 0.96), rgba(238, 211, 207, 0.58));
  box-shadow: 0 20px 54px rgba(64, 45, 40, 0.08);
  margin-bottom: 22px;
}

.price-block {
  background: #171313;
  color: #fff;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.price-block span,
.price-block small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.price-block strong {
  display: block;
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1;
  margin: 8px 0;
}

.provider-benefits article {
  min-height: 190px;
  border-color: rgba(202, 151, 142, 0.24);
  background: rgba(255, 250, 247, 0.96);
  box-shadow: 0 18px 44px rgba(64, 45, 40, 0.07);
}

.provider-benefits article h3 {
  color: var(--ink);
}

.provider-benefits article p {
  color: var(--muted);
}

.provider-proof-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  margin-top: 22px;
}

.provider-proof-grid article {
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.96);
  padding: 22px;
  box-shadow: 0 18px 44px rgba(64, 45, 40, 0.07);
}

.provider-proof-grid h3 {
  margin: 8px 0 14px;
  color: var(--ink);
}

.provider-proof-grid p {
  color: var(--muted);
  margin: 0 0 10px;
}

.provider-positioning-box {
  margin-top: 22px;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(19, 17, 17, 0.96), rgba(63, 45, 41, 0.9));
  color: #fff;
  box-shadow: 0 22px 52px rgba(64, 45, 40, 0.14);
}

.provider-positioning-box .eyebrow {
  color: rgba(238, 211, 207, 0.9);
}

.provider-positioning-box h2 {
  max-width: 820px;
  margin: 8px 0 18px;
  color: #fff;
}

.provider-positioning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.provider-positioning-grid article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.provider-positioning-grid strong,
.provider-positioning-grid span {
  display: block;
}

.provider-positioning-grid strong {
  margin-bottom: 8px;
  color: #fff;
}

.provider-positioning-grid span {
  color: rgba(255, 255, 255, 0.74);
}

.provider-gallery {
  margin-top: 24px;
}

.provider-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.provider-gallery-grid img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  border: 1px solid rgba(202, 151, 142, 0.22);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(64, 45, 40, 0.08);
}

.booking-flow-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.booking-flow-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  background: #171313;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.provider-dashboard-hero {
  background: linear-gradient(135deg, rgba(255, 250, 247, 0.96), rgba(238, 211, 207, 0.48));
}

.provider-dashboard-layout {
  align-items: start;
}

.provider-workspace {
  display: grid;
  gap: 18px;
}

.provider-account-card {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 250, 247, 0.95), rgba(238, 211, 207, 0.34));
}

.provider-account-card strong {
  font-size: 16px;
  overflow-wrap: anywhere;
}

.provider-account-card p {
  color: var(--muted);
  line-height: 1.5;
}

.provider-toolkit {
  display: grid;
  gap: 18px;
}

.provider-tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.provider-tool-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid rgba(202, 151, 142, 0.22);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 250, 247, 0.78);
}

.provider-tool-grid input {
  width: 100%;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  background: white;
}

.provider-tool-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.provider-private-note {
  display: grid;
  gap: 10px;
}

.provider-private-note label {
  font-weight: 900;
}

.provider-private-note textarea {
  min-height: 92px;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  padding: 14px;
  font-family: inherit;
  resize: vertical;
}

.provider-editor > .eyebrow,
.provider-editor > h2,
.provider-editor > button,
.provider-editor > a {
  grid-column: 1 / -1;
}

.provider-editor h2 {
  margin-top: -6px;
}

.provider-editor small {
  color: var(--muted);
  line-height: 1.5;
}

.service-editor {
  min-height: 128px;
  font-family: inherit;
}

.availability-editor {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.availability-editor label {
  position: relative;
  cursor: pointer;
}

.availability-editor input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.availability-editor span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-weight: 900;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.availability-editor input:checked + span {
  border-color: var(--rose);
  background: rgba(238, 211, 207, 0.54);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(202, 151, 142, 0.14);
}

.provider-mini-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid rgba(202, 151, 142, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.72);
}

.provider-mini-card img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
}

.provider-mini-card h2 {
  font-size: 24px;
  margin-bottom: 4px;
}

.provider-mini-card p {
  color: var(--muted);
  margin-bottom: 4px;
}

.provider-bookings-panel {
  min-height: 460px;
}

.analytics-hero .dashboard-stats small,
.analytics-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 0.25rem;
}

.analytics-layout {
  align-items: flex-start;
}

.analytics-workspace {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.analytics-grid > div {
  border: 1px solid var(--border);
  background: rgba(255, 250, 247, 0.82);
  padding: 1rem;
  min-height: 110px;
}

.analytics-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.analytics-grid span,
.analytics-list span,
.analytics-events span,
.analytics-events small {
  color: var(--muted);
}

.analytics-list,
.analytics-events {
  display: grid;
  gap: 0.7rem;
}

.analytics-list article,
.analytics-events article {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.analytics-events article {
  align-items: flex-start;
}

.analytics-events small {
  max-width: 48%;
  text-align: right;
  line-height: 1.5;
}

.section-header.compact {
  margin-bottom: 20px;
}

.booking-table {
  display: grid;
  gap: 12px;
}

.booking-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.25fr) minmax(130px, 0.8fr) minmax(170px, 1fr) minmax(170px, 0.9fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(202, 151, 142, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.booking-row strong,
.booking-row span {
  display: block;
}

.booking-row span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.booking-status-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.status-pill {
  border-radius: 999px;
  padding: 7px 10px;
  border: 1px solid rgba(202, 151, 142, 0.28);
  background: rgba(255, 250, 247, 0.88);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status-pill.confirmed {
  color: #345d41;
  border-color: rgba(52, 93, 65, 0.22);
  background: rgba(229, 246, 234, 0.88);
}

.status-pill.pending {
  color: #8f6632;
  border-color: rgba(202, 151, 142, 0.32);
  background: rgba(255, 247, 225, 0.9);
}

.status-pill.done {
  color: var(--ink);
  border-color: rgba(23, 19, 19, 0.18);
  background: rgba(23, 19, 19, 0.08);
}

.status-pill.canceled {
  color: #8f3b3b;
  border-color: rgba(143, 59, 59, 0.22);
  background: rgba(255, 235, 235, 0.88);
}

.status-pill.rescheduled {
  color: #66512f;
  border-color: rgba(185, 144, 89, 0.3);
  background: rgba(255, 246, 224, 0.92);
}

.admin-provider-layout {
  align-items: start;
}

.admin-provider-workspace,
.admin-provider-list,
.admin-booking-list {
  display: grid;
  gap: 14px;
}

.admin-provider-list article,
.admin-booking-list article {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(202, 151, 142, 0.22);
  background: rgba(255, 250, 247, 0.82);
  border-radius: 8px;
  padding: 14px;
}

.admin-booking-list article {
  grid-template-columns: 1fr auto;
}

.admin-provider-list img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.admin-provider-list strong,
.admin-booking-list strong,
.admin-provider-list span,
.admin-booking-list span,
.admin-provider-list small,
.admin-booking-list small {
  display: block;
}

.admin-provider-list span,
.admin-booking-list span,
.admin-provider-list small,
.admin-booking-list small {
  color: var(--muted);
}

.language-mini a {
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-label {
  opacity: 0.72;
}

.language-switcher select {
  border: 1px solid rgba(23, 19, 19, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.86);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 4px 10px;
  outline: none;
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-gadget,
.goog-logo-link,
body > .skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.international-hero .lead {
  max-width: 720px;
}

.international-grid,
.course-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.international-grid article,
.course-outcomes article {
  border: 1px solid rgba(202, 151, 142, 0.2);
  background: rgba(255, 250, 247, 0.78);
  border-radius: 8px;
  padding: 22px;
}

.international-grid strong,
.course-outcomes strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  margin-bottom: 10px;
}

.course-outcomes {
  margin: 26px 0;
}

.integration-card {
  border: 1px solid rgba(202, 151, 142, 0.24);
  background: linear-gradient(135deg, rgba(255, 250, 247, 0.94), rgba(246, 226, 221, 0.55));
  border-radius: 8px;
  padding: 22px;
}

.provider-launch-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid rgba(202, 151, 142, 0.24);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 250, 247, 0.96), rgba(238, 211, 207, 0.38));
  box-shadow: 0 18px 44px rgba(64, 45, 40, 0.07);
}

.provider-launch-box h2 {
  margin: 8px 0 12px;
}

.provider-launch-box p {
  color: var(--muted);
  margin: 0;
}

.provider-platform-grid,
.provider-readiness-box {
  display: grid;
  gap: 16px;
}

.provider-platform-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.provider-platform-grid article,
.provider-readiness-box {
  border: 1px solid rgba(202, 151, 142, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.78);
  padding: 20px;
}

.provider-platform-grid h3 {
  font-size: clamp(24px, 2.8vw, 36px);
  margin: 4px 0 12px;
}

.provider-readiness-box {
  margin: 18px 0;
}

.provider-readiness-box > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
}

.provider-readiness-box strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.readiness-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(202, 151, 142, 0.18);
}

.readiness-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose), var(--ink));
}

@media (max-width: 980px) {
  .provider-grid,
  .booking-layout,
  .pricing-panel,
  .booking-row,
  .booking-flow-strip,
  .booking-confidence-strip,
  .international-grid,
  .course-outcomes,
  .provider-launch-box,
  .provider-platform-grid,
  .provider-positioning-grid,
	  .provider-gallery-grid,
	  .provider-tool-grid,
	  .provider-proof-grid,
	  .admin-provider-list article,
	  .admin-booking-list article,
	  .analytics-grid {
	    grid-template-columns: 1fr;
	  }

  .booking-summary {
    position: static;
  }

	  .booking-status-actions {
	    justify-content: flex-start;
	  }

	  .analytics-events article {
	    display: grid;
	  }

	  .analytics-events small {
	    max-width: none;
	    text-align: left;
	  }
	}

@media (max-width: 620px) {
  .choice-grid,
  .availability-editor {
    grid-template-columns: 1fr;
  }

  .booking-app-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 8px;
  }

  .booking-app-header {
    grid-template-columns: auto 1fr auto;
    min-height: 48px;
  }

  .booking-app-header .button {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .booking-back {
    font-size: 12px;
  }

  .booking-intro {
    padding: 18px;
  }

  .booking-intro h1 {
    font-size: 38px;
  }

  .booking-intro p {
    font-size: 15px;
  }

  .reservation-route .section {
    padding-block: 18px;
  }

  .reservation-route .panel.pad {
    padding: 16px;
  }

  .booking-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 5px;
  }

  .booking-steps span {
    min-height: 32px;
    padding: 0 4px;
    font-size: 10px;
  }

  .booking-step.active {
    gap: 12px;
  }

  .booking-step h3 {
    font-size: 24px;
  }

  .service-category summary {
    padding: 11px 12px;
    font-size: 17px;
  }

  .booking-service-grid {
    padding: 0 8px 8px;
  }

  .service-choice-card {
    padding: 11px 12px;
  }

  .date-choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .time-choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .date-card,
  .time-card {
    min-height: 52px;
    padding: 8px 6px;
  }

  .date-card strong {
    font-size: 17px;
  }

  .wizard-actions {
    gap: 8px;
  }

  .wizard-actions .button {
    width: 100%;
  }

  .deposit-box .button {
    width: 100%;
  }

  .booking-summary {
    margin-top: -4px;
  }

  .glam-planning {
    padding: 16px 12px;
  }

  .glam-planning-head {
    display: grid;
    gap: 12px;
  }

  .planning-period {
    min-width: 0;
    width: 100%;
    border-radius: 8px;
  }

  .planning-grid {
    grid-template-columns: repeat(14, minmax(132px, 76vw));
    margin-inline: -4px;
    padding-inline: 4px;
  }

  .planning-legend {
    justify-content: flex-start;
  }
}
