/* ============================================================
   ERASE LASER LABS — friendly multi-page layout (v3)
   Loads after main.css and reuses its tokens.
   ============================================================ */

/* ---------- Snap scrolling ---------- */
/* snap container is the viewport, so the property lives on <html> */
html.snap { scroll-snap-type: y mandatory; }
.slide {
  position: relative;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.slide-inner {
  position: relative;
  z-index: 3;
  width: min(1180px, 92vw);
  padding: 96px 0 72px;
}

/* Reveal animations: hidden only when JS is running (html.js) */
html.js .rv { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .slide.in .rv { opacity: 1; transform: none; }
html.js .slide.in .rv:nth-child(2), html.js .slide.in .svc-card:nth-child(2) { transition-delay: 0.1s; }
html.js .slide.in .rv:nth-child(3), html.js .slide.in .svc-card:nth-child(3) { transition-delay: 0.2s; }
html.js .slide.in .rv:nth-child(4) { transition-delay: 0.28s; }
html.js .slide.in .rv:nth-child(5) { transition-delay: 0.36s; }
html.reducedfx .rv { transition: none !important; }

/* ---------- Site nav ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; align-items: center; gap: 28px;
  padding: 16px clamp(18px, 3.5vw, 42px);
  background: linear-gradient(180deg, rgba(7,9,12,0.78), rgba(7,9,12,0.35) 70%, transparent);
}
.site-nav::after {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 100%;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  mask-image: linear-gradient(180deg, #000 60%, transparent);
  -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent);
}
.sn-brand { display: flex; align-items: baseline; gap: 9px; margin-right: auto; }
.sn-links { display: flex; gap: clamp(14px, 2.2vw, 30px); }
.sn-link {
  font-size: 0.86rem; font-weight: 500;
  color: rgba(233,238,242,0.82);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.sn-link:hover { color: #fff; }
.sn-link.active { color: var(--teal-bright); border-bottom-color: var(--teal-bright); }
.sn-cta {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 999px;
  color: #04121a;
  background: linear-gradient(100deg, var(--teal-bright), var(--teal));
  box-shadow: 0 0 20px rgba(79,214,255,0.25);
  transition: transform 0.2s, box-shadow 0.25s;
  white-space: nowrap;
}
.sn-cta:hover { transform: translateY(-1px); box-shadow: 0 0 34px rgba(79,214,255,0.45); }

.sn-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 8px; cursor: pointer;
}
.sn-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.sn-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sn-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.sn-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  z-index: 190;
  background: rgba(7,9,12,0.96);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 26px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600;
  color: var(--ink);
}
.mobile-menu .mm-cta {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 999px;
  color: #04121a;
  background: linear-gradient(100deg, var(--teal-bright), var(--teal));
  margin-top: 10px;
}

/* ---------- Dots ---------- */
.dots {
  position: fixed; right: clamp(12px, 2vw, 26px); top: 50%;
  transform: translateY(-50%);
  z-index: 180;
  display: flex; flex-direction: column; gap: 14px;
}
.dots button {
  position: relative;
  width: 24px; height: 24px;
  background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.dots i {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(233,238,242,0.35);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.dots button.active i {
  background: var(--teal-bright);
  transform: scale(1.35);
  box-shadow: 0 0 10px rgba(79,214,255,0.7);
}
.dots span {
  position: absolute; right: 30px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-bright);
  background: rgba(10,16,20,0.85);
  padding: 5px 10px; border-radius: 6px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.dots button:hover span, .dots button:focus-visible span { opacity: 1; }

/* ---------- Next arrow ---------- */
.next-arrow {
  position: absolute; left: 50%; bottom: 22px;
  transform: translateX(-50%);
  z-index: 5;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.next-arrow span {
  display: block; margin: 0 auto;
  width: 10px; height: 10px;
  border-right: 2px solid var(--teal-bright);
  border-bottom: 2px solid var(--teal-bright);
  transform: rotate(45deg) translate(-1px, -1px);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: rotate(45deg) translate(-1px,-1px); } 50% { transform: rotate(45deg) translate(2px,2px); } }
.next-arrow:hover { border-color: var(--teal-bright); box-shadow: 0 0 22px rgba(79,214,255,0.3); }

/* ---------- Backgrounds / scrims ---------- */
.bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.slide-scrim { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.scrim-center {
  background:
    radial-gradient(ellipse 85% 70% at 50% 46%, rgba(7,9,12,0.28), rgba(7,9,12,0.62) 78%),
    linear-gradient(180deg, rgba(7,9,12,0.55), transparent 30%, transparent 70%, rgba(7,9,12,0.7));
}

/* ---------- Slide 1 · hero ---------- */
.hero-inner {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 22px;
}
.hero-logo-img {
  width: min(56vw, 560px); height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35)) drop-shadow(0 0 60px rgba(247,243,235,0.28));
}
.hero-lede {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: rgba(233,238,242,0.94);
  text-shadow: 0 1px 14px rgba(7,9,12,0.7);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn-ghost {
  font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 20px 36px; border-radius: 999px;
  color: var(--ink);
  border: 1px solid rgba(233,238,242,0.4);
  background: rgba(10,16,20,0.4);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-ghost:hover { border-color: var(--teal-bright); color: var(--teal-bright); box-shadow: 0 0 24px rgba(79,214,255,0.2); }
.btn-primary { border: 0; cursor: pointer; }
.tour-link {
  font-size: 0.64rem; color: rgba(233,238,242,0.75);
  letter-spacing: 0.18em;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(79,214,255,0.4);
  transition: color 0.3s, border-color 0.3s;
}
.tour-link:hover { color: var(--teal-bright); border-color: var(--teal-bright); }

/* ---------- Slide 2 · treatments ---------- */
.slide-treatments { background: radial-gradient(ellipse 120% 90% at 50% 0%, var(--bg-2), var(--bg)); }
.slide-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 10px 0 34px;
}
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  display: flex; flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79,214,255,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 40px rgba(79,214,255,0.12);
}
.svc-img { height: clamp(130px, 20vh, 190px); overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; }
.svc-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.svc-body p { color: var(--muted); font-size: 0.9rem; flex: 1; }
.svc-more {
  font-family: var(--font-mono);
  font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-bright);
}
.svc-more b { transition: transform 0.3s; display: inline-block; }
.svc-card:hover .svc-more b { transform: translateX(4px); }

/* ---------- Slide 3 · science ---------- */
.slide-science { background: radial-gradient(ellipse 120% 90% at 50% 40%, var(--bg-2), var(--bg)); }
#science-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.science-inner { z-index: 3; }
.science-copy { max-width: 460px; }
.sci-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin: 6px 0 26px; }
.sci-list li { color: rgba(233,238,242,0.85); font-size: 0.95rem; line-height: 1.55; }
.sci-list .mono { display: block; color: var(--teal-bright); font-size: 0.64rem; margin-bottom: 4px; }
.sci-note { font-size: 0.6rem; color: var(--muted); }

/* ---------- Slide 4 · about ---------- */
.slide-about { background: var(--bg); }
.about-inner { display: grid; grid-template-columns: minmax(260px, 420px) 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.bio-photo { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.5); }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.bio-photo-note {
  position: absolute; left: 50%; bottom: 14px;
  transform: translateX(-50%);
  font-size: 0.58rem; letter-spacing: 0.14em;
  color: var(--teal-bright);
  background: rgba(7,9,12,0.85);
  padding: 7px 14px; border-radius: 999px;
  white-space: nowrap;
}
.bio-text { color: rgba(233,238,242,0.88); line-height: 1.75; max-width: 560px; }
.bio-chips { display: flex; gap: 10px; list-style: none; margin: 22px 0 14px; flex-wrap: wrap; }
.bio-chips li {
  font-size: 0.6rem; letter-spacing: 0.12em;
  padding: 9px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--teal-bright);
  background: var(--glass);
}
.bio-example-note { font-size: 0.74rem; font-style: italic; color: rgba(147,163,174,0.7); }

/* ---------- Slide 5 · book ---------- */
.slide-book { background: radial-gradient(ellipse 90% 70% at 50% 30%, #0d1319, var(--bg)); }
.book-inner2 {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 18px;
  padding-top: 84px; padding-bottom: 20px;
}
.book-inner2 .book-logo-wrap { margin-bottom: 0; padding: clamp(18px, 2.6vw, 30px) clamp(26px, 4vw, 46px); }
.book-inner2 .book-logo { width: min(48vw, 330px); }
.book-inner2 .slide-title { margin: 4px 0 0; }
.book-lede { color: var(--muted); }
.contact-rows {
  display: flex; gap: clamp(14px, 3.5vw, 44px);
  flex-wrap: wrap; justify-content: center;
  font-size: 0.64rem; color: rgba(163,178,189,0.9);
  margin-top: 8px;
}
.site-foot { width: 100%; margin-top: 26px; padding-top: 10px; }
.foot-links { display: flex; gap: clamp(14px, 3vw, 34px); justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.foot-links a { font-size: 0.82rem; color: rgba(233,238,242,0.75); transition: color 0.25s; }
.foot-links a:hover { color: var(--teal-bright); }

/* ============================================================
   SERVICE PAGES
   ============================================================ */
.page-service { background: var(--bg); }
.svc-hero {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.svc-hero .bg-video { position: absolute; }
.svc-hero-scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(7,9,12,0.6), rgba(7,9,12,0.25) 40%, rgba(7,9,12,0.92));
}
.svc-hero-inner {
  position: relative; z-index: 3;
  width: min(1080px, 92vw);
  margin: 0 auto;
  padding: 140px 0 46px;
}
.crumb {
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-bright);
}
.svc-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 5.5vw, 4.2rem);
  letter-spacing: -0.02em;
  margin: 12px 0 10px;
}
.svc-hero .lead { color: rgba(233,238,242,0.88); max-width: 620px; font-size: 1.05rem; }

.svc-section { width: min(1080px, 92vw); margin: 0 auto; padding: 64px 0; }
.svc-section + .svc-section { border-top: 0; padding-top: 20px; }
.svc-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps3 article {
  padding: 24px 26px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
}
.steps3 .mono { color: var(--teal-bright); font-size: 0.62rem; display: block; margin-bottom: 10px; }
.steps3 h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.steps3 p { color: var(--muted); font-size: 0.9rem; }

.expect-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.expect-grid dl {
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.expect-grid dt {
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 8px;
}
.expect-grid dd { color: rgba(233,238,242,0.85); font-size: 0.92rem; }

.svc-cta {
  text-align: center;
  padding: 70px 24px;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(0,107,157,0.16), transparent);
}
.svc-cta h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; margin-bottom: 10px; }
.svc-cta p { color: var(--muted); margin-bottom: 28px; }
.svc-foot {
  width: min(1080px, 92vw); margin: 0 auto;
  padding: 26px 0 34px;

  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 0.74rem; color: rgba(147,163,174,0.8);
}
.svc-foot a { color: rgba(233,238,242,0.8); }
.svc-foot a:hover { color: var(--teal-bright); }

/* service pages get simple scroll reveals */
html.js .page-service .rv { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
html.js .page-service .rv.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .sn-links, .sn-cta { display: none; }
  .sn-burger { display: flex; }
  .dots { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 20px; }
  .bio-photo { max-width: 300px; }
  .bio-photo img { aspect-ratio: 16/10; }
  .svc-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc-card { flex-direction: row; align-items: stretch; }
  .svc-img { width: 118px; height: auto; flex: 0 0 118px; }
  .svc-body { padding: 14px 16px; }
  .svc-body p { font-size: 0.82rem; }
  .steps3 { grid-template-columns: 1fr; }
  .slide-inner { padding: 84px 0 64px; }
  .hero-logo-img { width: min(80vw, 480px); }
  .br-desk { display: none; }
  .science-copy { max-width: 100%; }
  #science-canvas { opacity: 0.5; }
}
@media (max-height: 560px) {
  .hero-logo-img { width: min(38vw, 340px); }
  .slide-inner { padding: 72px 0 56px; }
  .next-arrow { display: none; }
}

/* ============================================================
   PRICING + PREP/AFTERCARE (from clinic collateral)
   ============================================================ */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-bright);
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(79,214,255,0.25);
}
.price-table td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  vertical-align: top;
}
.price-table td:last-child, .price-table th:last-child { text-align: right; white-space: nowrap; }
.price-table .p-name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.price-table .p-desc { color: var(--muted); font-size: 0.84rem; margin-top: 3px; }
.price-table .p-size { color: rgba(233,238,242,0.75); font-size: 0.88rem; }
.price-table .p-price {
  font-family: var(--font-display);
  font-weight: 300; font-size: 1.5rem;
  color: var(--teal-bright);
}
.price-table .p-price small { font-size: 0.6em; color: var(--muted); margin-right: 4px; }
.price-note { color: var(--muted); font-size: 0.85rem; margin-top: 18px; }
.badge-row {
  display: flex; gap: clamp(12px, 3vw, 30px);
  flex-wrap: wrap; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 34px;
}
.badge-row span::before { content: '· '; color: var(--teal-bright); }

/* chips grid: concerns treated / suitable-for */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-grid li {
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-bright);
  padding: 10px 18px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass);
}

/* care checklists */
.care-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.care-card {
  padding: 24px 26px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
}
.care-card h3 {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.1rem;
  margin-bottom: 14px;
}
.care-card h3 .mono { display: block; font-size: 0.6rem; color: var(--teal-bright); margin-bottom: 6px; letter-spacing: 0.16em; }
.care-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.care-card li {
  color: rgba(233,238,242,0.82);
  font-size: 0.88rem; line-height: 1.55;
  padding-left: 20px;
  position: relative;
}
.care-card li::before {
  content: '';
  position: absolute; left: 0; top: 0.52em;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: linear-gradient(120deg, var(--teal-bright), var(--teal));
}
.care-card li b { color: #fff; }
.care-card .fine { font-size: 0.74rem; color: var(--muted); margin-top: 12px; font-style: italic; }
.care-card.warn { border-color: rgba(201,164,74,0.4); }
.care-card.warn li::before { background: var(--gold); }

/* skin type table */
.skin-table-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid rgba(255,255,255,0.08); }
.skin-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 0.84rem; }
.skin-table th, .skin-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); }
.skin-table thead th {
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-bright);
  background: rgba(0,107,157,0.12);
}
.skin-table tbody th {
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.skin-table td { color: rgba(233,238,242,0.85); }
.skin-dot { display: inline-block; width: 13px; height: 13px; border-radius: 50%; margin-right: 8px; vertical-align: -2px; border: 1px solid rgba(255,255,255,0.25); }

/* four-step variant */
.steps3.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) { .steps3.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .steps3.four { grid-template-columns: 1fr; } }

/* price callout on service pages */
.price-callout {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  padding: 22px 26px;
  border-radius: 16px;
  border: 1px solid rgba(79,214,255,0.3);
  background: rgba(0,107,157,0.1);
}
.price-callout .amount { font-family: var(--font-display); font-weight: 300; font-size: 2.2rem; color: var(--teal-bright); }
.price-callout .per { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }
.price-callout .detail { color: rgba(233,238,242,0.8); font-size: 0.88rem; flex-basis: 100%; }

/* ---------- Slide 5 · plan your visit ---------- */
.slide-plan { background: radial-gradient(ellipse 120% 90% at 50% 100%, var(--bg-2), var(--bg)); }
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.plan-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: clamp(24px, 3vw, 38px);
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79,214,255,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 40px rgba(79,214,255,0.12);
}
.plan-tag { font-size: 0.62rem; color: var(--teal-bright); letter-spacing: 0.16em; }
.plan-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; }
.plan-card p { color: rgba(233,238,242,0.8); font-size: 0.95rem; flex: 1; }
.plan-card p b { color: var(--teal-bright); font-weight: 600; }
.plan-card:hover .svc-more b { transform: translateX(4px); }
@media (max-width: 920px) {
  .plan-grid { grid-template-columns: 1fr; gap: 14px; }
  .plan-card h3 { font-size: 1.2rem; }
  .plan-card p { font-size: 0.86rem; }
}

/* ---------- Booking page ---------- */
.booking-embed {
  background: linear-gradient(165deg, #f6f1e8, var(--pearl));
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 0 60px rgba(79,214,255,0.12), 0 30px 80px rgba(0,0,0,0.5);
}
.booking-embed iframe { width: 100%; height: min(78vh, 760px); border-radius: 14px; display: block; }
.booking-fallback .care-card { max-width: 560px; }
.booking-fallback .bf-text { color: rgba(233,238,242,0.85); margin: 4px 0 20px; line-height: 1.65; }
.booking-fallback .btn-primary { display: inline-block; }
.booking-fallback .fine { font-size: 0.74rem; color: var(--muted); margin-top: 14px; font-style: italic; }

/* ---------- Ako photo framing (landscape source, portrait crop) ---------- */
.bio-photo img { object-position: 26% 38%; }

/* ---------- RojStudio design credit ---------- */
.design-credit {
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: 30px;
  padding: 16px 26px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.rs-wide {
  height: 24px; width: auto;
  display: block;
  background: #f4efe6;
  padding: 10px 18px;
  border-radius: 10px;
  box-sizing: content-box;
}
.design-credit:hover {
  border-color: rgba(224,122,47,0.7);        /* RojStudio orange */
  box-shadow: 0 0 28px rgba(224,122,47,0.2);
  transform: translateY(-2px);
}
.dc-text { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; text-align: left; }
.dc-label {
  font-family: var(--font-mono);
  font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted);
}
.design-credit b {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.rs-mark {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: block;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.16);
}
.svc-foot { align-items: center; }
.svc-foot .design-credit { margin-top: 0; }

/* ---------- Question form (Netlify Forms) ---------- */
.ask-form { max-width: 720px; display: flex; flex-direction: column; gap: 18px; }
.ask-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-bright);
  flex: 1;
}
.af-opt { display: inline; color: var(--muted); }
.af-row { display: flex; gap: 18px; }
.ask-form input, .ask-form select, .ask-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.ask-form input::placeholder, .ask-form textarea::placeholder { color: rgba(147,163,174,0.55); }
.ask-form input:focus, .ask-form select:focus, .ask-form textarea:focus {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(79,214,255,0.15);
}
.ask-form select { appearance: none; cursor: pointer; }
.ask-form select option { background: #0c1116; color: var(--ink); }
.ask-form textarea { resize: vertical; min-height: 120px; }
.ask-form .btn-primary { align-self: flex-start; border: 0; cursor: pointer; }
.af-fine { font-size: 0.72rem; color: rgba(147,163,174,0.6); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
@media (max-width: 700px) { .af-row { flex-direction: column; } }

/* ---------- "Ask a question" header button ---------- */
.sn-ask {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 999px;
  color: var(--ink);
  border: 1px solid rgba(233,238,242,0.35);
  background: rgba(10,16,20,0.35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.25s, color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.sn-ask:hover { border-color: var(--teal-bright); color: var(--teal-bright); box-shadow: 0 0 20px rgba(79,214,255,0.18); }
@media (max-width: 1080px) { .sn-ask { display: none; } }

.hero-quick-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }

/* skin-type suitability row */
.skin-table .st-yes { color: var(--teal-bright); font-weight: 600; }
.skin-table .st-no { color: rgba(201,164,74,0.95); font-weight: 600; }

/* ---------- "The goal" statement line ---------- */
.goal-line {
  margin-top: 26px;
  padding: 22px 26px;
  border-radius: 16px;
  border: 1px solid rgba(79,214,255,0.3);
  background: rgba(0,107,157,0.1);
  color: rgba(233,238,242,0.92);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 760px;
}
.goal-line .mono {
  display: block;
  font-size: 0.6rem; letter-spacing: 0.18em;
  color: var(--teal-bright);
  margin-bottom: 8px;
}
