:root {
  --rose: #c72058;
  --sun: #ffd21f;
  --ink: #171019;
  --plum: #321329;
  --wine: #6e173d;
  --ivory: #fff9ed;
  --mist: #f8edf2;
  --teal: #0f6b67;
  --line: rgba(23, 16, 25, 0.12);
  --shadow: 0 24px 70px rgba(44, 9, 30, 0.18);
  --radius: 8px;
  --page-pad: clamp(20px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.chat-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: calc(100% - clamp(20px, 4vw, 56px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px 12px 18px;
  color: white;
  background: rgba(23, 16, 25, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 249, 237, 0.92);
  box-shadow: 0 14px 34px rgba(32, 13, 23, 0.12);
}

.brand,
.site-nav,
.hero-actions,
.final-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark,
.chat-fab,
.icon,
.service-icon {
  display: grid;
  place-items: center;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 50%;
}

.site-nav {
  gap: 8px;
}

.site-nav a,
.nav-cta {
  min-height: 40px;
  padding: 10px 14px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  font-weight: 700;
}

.site-nav a:hover,
.nav-cta:hover {
  background: rgba(242, 246, 131, 0.22);
}

.nav-cta {
  color: var(--ink);
  background: var(--sun);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: var(--sun);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 132px var(--page-pad) 96px;
  overflow: hidden;
  color: white;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-video {
  left: 0;
  right: auto;
  top: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  max-width: none;
  min-height: 100%;
  object-fit: cover;
  object-position: 34% center;
  transform: scale(2.08);
  transform-origin: center;
}

.hero-overlay {
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 16, 25, 0.92) 0%, rgba(55, 14, 39, 0.78) 42%, rgba(23, 16, 25, 0.18) 100%),
    linear-gradient(0deg, rgba(23, 16, 25, 0.58), rgba(23, 16, 25, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 62vw);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 1.30rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(2.1rem, 11.9vw, 4.6rem);
}

h3 {
  margin: 0;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
}

.btn-primary {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 15px 30px rgba(242, 246, 131, 0.2);
}

.btn-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  padding: 28px 24px;
  text-align: center;
  background: var(--sun);
}

.trust-strip strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.trust-strip span {
  font-weight: 700;
}

.section {
  padding: clamp(72px, 10vw, 128px) var(--page-pad);
}

.section-heading {
  max-width: min(960px, 100%);
  margin-bottom: 38px;
}

.section-heading.wide {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 28px;
  max-width: none;
}

.section-heading.wide .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(23, 16, 25, 0.66);
  line-height: 1.7;
}

.intro {
  background: var(--ivory);
}

.intro-grid,
.service-grid,
.price-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

.intro-grid article {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 35px rgba(55, 20, 38, 0.06);
}

.icon,
.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--rose);
  background: var(--mist);
  border-radius: 50%;
  font-size: 1.25rem;
}

.intro-grid p,
.service-card p,
figure blockquote {
  color: rgba(23, 16, 25, 0.68);
  line-height: 1.65;
}

.services {
  background: #fff;
}

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

.service-card,
.price-card,
figure {
  border-radius: var(--radius);
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
}

.featured-service {
  color: white;
  background: var(--plum);
  border-color: var(--plum);
}

.featured-service p {
  color: rgba(255, 255, 255, 0.75);
}

.featured-service .service-icon {
  color: var(--ink);
  background: var(--sun);
}

.service-card button,
.price-card button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 12px 14px;
  color: white;
  background: var(--rose);
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
}

.featured-service button,
.popular button {
  color: var(--ink);
  background: var(--sun);
}

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

.methods .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

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

.method-card {
  position: relative;
  min-height: clamp(520px, 42vw, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--plum);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.featured-method {
  grid-column: auto;
}

.method-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.method-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 16, 25, 0.04), rgba(23, 16, 25, 0.82)),
    linear-gradient(90deg, rgba(23, 16, 25, 0.48), transparent);
}

.method-card div {
  position: relative;
  z-index: 1;
  width: min(450px, 100%);
  padding: clamp(24px, 4vw, 38px);
}

.method-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.method-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.25rem);
  line-height: 1;
}

.method-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.method-card button {
  min-height: 48px;
  padding: 12px 16px;
  color: white;
  background: var(--rose);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}

.method-card:hover img {
  transform: scale(1.045);
}

.pricing {
  background: var(--mist);
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(55, 20, 38, 0.08);
}

.price-card.popular {
  color: white;
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-14px);
}

.price-name,
.price-note {
  margin: 0;
  font-weight: 800;
}

.price-card h3 {
  margin: 12px 0 6px;
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.price-note {
  color: rgba(23, 16, 25, 0.62);
}

.popular .price-note,
.popular li {
  color: rgba(255, 255, 255, 0.8);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 12px;
  min-height: 150px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(23, 16, 25, 0.72);
  line-height: 1.55;
}

.price-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--teal);
}

.popular li::before {
  color: var(--sun);
}

.testimonials {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 210, 31, 0.22), transparent 28rem),
    linear-gradient(180deg, #fff, var(--ivory));
}

.testimonial-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin: -12px 0 28px;
  padding: 14px 18px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(23, 16, 25, 0.12);
}

.testimonial-summary strong {
  color: var(--sun);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.testimonial-summary span {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  font-weight: 700;
}

.testimonial-grid {
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

figure {
  position: relative;
  margin: 0;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 26px;
      background: linear-gradient(145deg, rgba(50, 19, 41, 0.96), rgba(199, 32, 88, 0.92)), var(--plum);
    border-color: rgba(255, 255, 255, 0.16);
}
  box-shadow: 0 22px 58px rgba(55, 20, 38, 0.1);
  overflow: hidden;
}

.testimonial-grid figure:first-child {
  color: white;
  background:
    linear-gradient(145deg, rgba(50, 19, 41, 0.96), rgba(199, 32, 88, 0.92)),
    var(--plum);
  border-color: rgba(255, 255, 255, 0.16);
}

figure::before {
  content: "“";
  position: absolute;
  right: 18px;
  top: -8px;
  color: rgba(199, 32, 88, 0.13);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.testimonial-grid figure:first-child::before {
  color: rgba(255, 255, 255, 0.16);
}

figure blockquote {
  position: relative;
  margin: 18px 0 22px;
  color: rgb(255, 255, 255);
  font-size: 1rem;
  line-height: 1.68;
}

.testimonial-grid figure:first-child blockquote,
.testimonial-grid figure:first-child .testimonial-top small {
  color: rgba(255, 255, 255, 0.78);
}

figcaption {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(199, 32, 88, 0.14);
  color: var(--sun);
  font-weight: 900;
  font-size: 0.86rem;
}

.testimonial-grid figure:first-child figcaption {
  color: var(--sun);
  border-top-color: rgba(255, 255, 255, 0.18);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-top span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 210, 31, 0.18);
}

.testimonial-top strong,
.testimonial-top small {
  display: block;
}

.testimonial-top small {
  margin-top: 3px;
  color: rgb(255, 255, 255);
  font-weight: 700;
}

.testimonial-top strong, .testimonial-top small {
    display: block;
    color: #ffffff;
}


.stars {
  margin-top: 18px;
  color: var(--sun);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.final-cta {
  position: relative;
  justify-content: space-between;
  gap: 24px;
  margin: 0 var(--page-pad) clamp(72px, 9vw, 110px);
  min-height: 360px;
  padding: clamp(34px, 6vw, 58px) clamp(28px, 42vw, 720px) clamp(34px, 6vw, 58px) clamp(28px, 6vw, 86px);
  color: white;
  background: var(--plum);
  border-radius: var(--radius);
  overflow: hidden;
}

.final-cta h2 {
  max-width: 920px;
}

.final-cta > button,
.final-cta .btn {
  display: none;
}

.final-cta > div:not(.cta-visual) {
  position: relative;
  z-index: 1;
}

.cta-visual {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 5vw, 100px);
  bottom: -34px;
  width: clamp(430px, 34vw, 650px);
  height: min(116%, 470px);
  pointer-events: none;
}

.cta-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: none;
  opacity: 1;
  transform: rotate(-7deg);
}

.cta-bubble {
  position: absolute;
  z-index: 4;
  right: 4%;
  top: 16%;
  max-width: 170px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--sun);
  border: 3px solid white;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  font-weight: 900;
  animation: bubbleFloat 1.8s ease-in-out infinite;
}

.cta-bubble::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 18px;
  height: 18px;
  background: var(--sun);
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: translateY(-50%) rotate(45deg);
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.chat-fab {
  position: fixed;
  z-index: 25;
  right: 24px;
  bottom: 24px;
  width: 76px;
  height: 76px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(84, 13, 48, 0.22);
  font-size: 1.4rem;
  padding: 0;
  overflow: hidden;
}

.chat-fab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(23, 16, 25, 0.18));
}

.chat-widget {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 98px;
  width: min(370px, calc(100vw - 32px));
  max-width: calc(100dvw - 20px);
  height: min(560px, calc(100dvh - 126px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(23, 16, 25, 0.28);
}

.chat-widget[hidden] {
  display: none;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  color: white;
  background: var(--rose);
}

.chat-header span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.chat-header button {
  width: 34px;
  height: 34px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 0;
  border-radius: 50%;
  font-size: 1.25rem;
}

.chat-header-actions button:first-child {
  width: auto;
  padding: 0 10px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.chat-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 14px;
  background: linear-gradient(180deg, var(--ivory), #fff);
}

.message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: var(--radius);
  line-height: 1.42;
  font-size: 0.92rem;
}

.message.bot {
  align-self: flex-start;
  background: white;
  border: 1px solid var(--line);
}

.message.user {
  align-self: flex-end;
  color: white;
  background: var(--teal);
}

.quick-replies {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 4px 0 8px;
}

.quick-replies button {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 8px 10px;
  color: var(--rose);
  background: white;
  border: 1px solid rgba(199, 32, 88, 0.24);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1.25;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
}

.date-picker,
.slot-picker {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.date-picker {
  grid-template-columns: 1fr;
}

.date-picker button,
.slot-picker button {
  min-width: 0;
  border: 1px solid rgba(199, 32, 88, 0.22);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  font-weight: 800;
  white-space: normal;
  overflow-wrap: anywhere;
}

.date-picker button {
  display: grid;
  gap: 4px;
  padding: 10px 11px;
  text-align: left;
}

.date-picker button span,
.date-picker button small {
  color: rgba(23, 16, 25, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
}

.calendar-panel {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 210, 31, 0.1), transparent 38%),
    white;
  border: 1px solid rgba(199, 32, 88, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(55, 20, 38, 0.08);
}

.calendar-head {
  display: grid;
  gap: 3px;
}

.calendar-head strong {
  color: var(--rose);
  font-size: 0.96rem;
}

.calendar-head span {
  color: rgba(23, 16, 25, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.calendar-weekdays span {
  color: rgba(23, 16, 25, 0.5);
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-empty {
  min-height: 54px;
}

.calendar-day {
  min-width: 0;
  min-height: 62px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1px;
  padding: 6px 3px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(199, 32, 88, 0.2);
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(55, 20, 38, 0.06);
}

.calendar-day strong {
  font-size: 1rem;
  line-height: 1;
}

.calendar-day span,
.calendar-day small,
.calendar-day em {
  max-width: 100%;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.05;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-day span {
  color: var(--rose);
  text-transform: lowercase;
}

.calendar-day small {
  color: var(--teal);
}

.calendar-day em {
  color: rgba(23, 16, 25, 0.46);
}

.calendar-day:hover:not(:disabled) {
  border-color: var(--rose);
  background: var(--sun);
  transform: translateY(-1px);
}

.calendar-day:disabled,
.calendar-day.is-full {
  color: rgba(23, 16, 25, 0.36);
  background: rgba(23, 16, 25, 0.05);
  border-color: rgba(23, 16, 25, 0.08);
  box-shadow: none;
  cursor: not-allowed;
}

.calendar-day.is-full small {
  color: rgba(23, 16, 25, 0.42);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: rgba(23, 16, 25, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.calendar-legend i {
  width: 9px;
  height: 9px;
  background: var(--sun);
  border: 1px solid rgba(199, 32, 88, 0.22);
  border-radius: 50%;
}

.calendar-legend span:nth-child(2) i {
  background: rgba(23, 16, 25, 0.1);
  border-color: rgba(23, 16, 25, 0.12);
}

.calendar-legend small {
  margin-left: auto;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
}

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

.slot-picker button {
  min-height: 38px;
  padding: 8px 5px;
  font-size: 0.86rem;
}

.date-picker button:hover:not(:disabled),
.slot-picker button:hover:not(:disabled) {
  border-color: var(--rose);
  box-shadow: 0 8px 20px rgba(199, 32, 88, 0.12);
}

.date-picker button:disabled,
.slot-picker button:disabled,
.slot-picker button.is-booked {
  color: rgba(23, 16, 25, 0.36);
  background: rgba(23, 16, 25, 0.06);
  border-color: rgba(23, 16, 25, 0.08);
  cursor: not-allowed;
}

.agenda-panel {
  display: grid;
  gap: 12px;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.agenda-panel > strong {
  color: var(--rose);
  font-size: 1.05rem;
}

.agenda-panel p {
  margin: 0;
  color: rgba(23, 16, 25, 0.64);
  line-height: 1.5;
}

.agenda-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.agenda-item span,
.agenda-item small {
  display: block;
  margin-top: 3px;
  color: rgba(23, 16, 25, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
}

.agenda-item button {
  min-height: 38px;
  padding: 8px 10px;
  color: white;
  background: var(--rose);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: white;
}

.chat-form input {
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  font-size: 16px;
}

.chat-form input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(199, 32, 88, 0.12);
}

.chat-form button {
  color: var(--ink);
  background: var(--sun);
  border: 0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, 100%);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    color: var(--ink);
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 100svh;
    align-items: start;
  }

  .intro-grid,
  .price-grid,
  .testimonial-grid,
  .section-heading.wide {
    grid-template-columns: 1fr;
  }

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

  .featured-method {
    grid-column: auto;
  }

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

  .price-card.popular {
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 112px;
  }

  .hero-video {
    width: 100%;
    object-position: 38% center;
    transform: scale(2.3);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(23, 16, 25, 0.94) 0%, rgba(55, 14, 39, 0.75) 54%, rgba(23, 16, 25, 0.38) 100%),
      linear-gradient(90deg, rgba(23, 16, 25, 0.85), rgba(23, 16, 25, 0.18));
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-content {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .method-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .featured-method {
    grid-column: auto;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .final-cta {
    flex-direction: column;
    align-items: stretch;
    margin-right: 20px;
    margin-left: 20px;
    min-height: 620px;
    padding: 34px 26px 300px;
  }

  .method-card {
    min-height: 520px;
  }

  .cta-visual {
    right: -48px;
    bottom: -8px;
    width: 390px;
    height: 300px;
  }

  .cta-bubble {
    left: 165px;
    right: auto;
    top: 135px;
    bottom: auto;
    padding: 12px 15px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .chat-widget {
    inset: 10px;
    width: auto;
    height: auto;
    max-height: calc(100dvh - 20px);
    border-radius: 10px;
  }

  .chat-header {
    padding: 12px;
  }

  .chat-header > div:first-child {
    min-width: 0;
  }

  .chat-header strong,
  .chat-header span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .chat-body {
    padding: 12px;
  }

  .message {
    max-width: 92%;
    font-size: 0.9rem;
  }

  .quick-replies {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quick-replies button {
    width: 100%;
    border-radius: var(--radius);
    text-align: left;
  }

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

  .agenda-item {
    grid-template-columns: 1fr;
  }

  .chat-fab {
    right: 18px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero {
    background: url("assets/tarot-hero.png") center / cover;
  }
}

/* Premium visual pass */
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(242, 246, 131, 0.22), transparent 24rem),
    linear-gradient(180deg, var(--ivory), #fff 46%, var(--ivory));
}

.hero-content::before {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  margin-bottom: 22px;
  background: var(--sun);
  box-shadow: 36px 0 0 var(--rose), 72px 0 0 rgba(255, 255, 255, 0.55);
}

.trust-strip div {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 42%),
    var(--sun);
}

.services {
  background:
    linear-gradient(180deg, #fff, var(--ivory));
}

.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(199, 32, 88, 0.16);
  border-radius: 50%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 32, 88, 0.32);
  box-shadow: 0 22px 52px rgba(55, 20, 38, 0.13);
}

.pricing {
  position: relative;
  isolation: isolate;
  color: white;
  background:
    linear-gradient(135deg, rgba(199, 32, 88, 0.96), rgba(82, 13, 50, 0.98)),
    var(--rose);
  overflow: hidden;
}

.pricing::before {
  content: "✦";
  position: absolute;
  z-index: -1;
  right: 8vw;
  top: 60px;
  color: rgba(242, 246, 131, 0.22);
  font-size: clamp(8rem, 22vw, 18rem);
  line-height: 1;
}

.pricing .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.price-image-card {
  position: relative;
  max-width: min(980px, 100%);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(24, 4, 17, 0.34);
}

.price-image-card img {
  width: 100%;
  height: auto;
}

.price-action {
  max-width: min(980px, 100%);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-action button {
  min-height: 58px;
  min-width: min(360px, 100%);
  padding: 16px 28px;
  color: var(--ink);
  background: var(--sun);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(255, 210, 31, 0.24);
}

.price-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: stretch;
}

.price-menu,
.price-side {
  position: relative;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(24, 4, 17, 0.28);
}

.price-menu {
  padding: clamp(24px, 4vw, 44px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 237, 0.98)),
    var(--ivory);
}

.price-menu::before,
.price-menu::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  height: 10px;
  background: rgba(23, 16, 25, 0.14);
  border-radius: 999px;
}

.price-menu::before {
  top: -5px;
}

.price-menu::after {
  bottom: -5px;
}

.price-menu-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(23, 16, 25, 0.25);
}

.receipt-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 50%;
  font-size: 1.45rem;
}

.price-name {
  margin: 0 0 4px;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-menu-top strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.price-group {
  display: grid;
  gap: 10px;
  padding: 20px 0;
}

.price-group + .price-group {
  border-top: 1px dashed rgba(23, 16, 25, 0.25);
}

.price-group h3 {
  width: fit-content;
  margin-bottom: 6px;
  padding: 9px 14px;
  color: white;
  background: var(--rose);
  border-radius: 4px;
  font-size: clamp(1rem, 2vw, 1.35rem);
  text-transform: uppercase;
}

.price-group.highlighted h3 {
  color: var(--ink);
  background: var(--sun);
}

.price-line {
  display: grid;
  grid-template-columns: max-content minmax(42px, 1fr) max-content;
  align-items: baseline;
  gap: 12px;
  width: 100%;
  padding: 10px 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  font-weight: 900;
}

.price-line i {
  height: 2px;
  background-image: linear-gradient(90deg, rgba(23, 16, 25, 0.34) 35%, transparent 0);
  background-size: 10px 2px;
}

.price-line strong {
  color: var(--rose);
}

.price-line:hover span,
.price-line:hover strong {
  color: var(--teal);
}

.price-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 28px;
  color: white;
  background:
    linear-gradient(180deg, rgba(23, 16, 25, 0.12), rgba(23, 16, 25, 0.86)),
    url("assets/tabela-precos.jpeg") center / cover;
  overflow: hidden;
}

.price-side h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.price-side p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.price-side button {
  min-height: 50px;
  margin-top: 18px;
  color: var(--ink);
  background: var(--sun);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(50, 19, 41, 0.94), rgba(199, 32, 88, 0.9)),
    var(--plum);
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .price-showcase {
    grid-template-columns: 1fr;
  }

  .price-side {
    min-height: 330px;
  }
}

@media (max-width: 680px) {
  .price-action {
    align-items: center;
  }

  .price-action button {
    width: 100%;
  }

  .price-line {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .price-line i {
    display: none;
  }
}

@media (max-width: 390px) {
  .slot-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chat-header-actions button:first-child {
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .cta-visual {
    right: -66px;
    width: 370px;
  }

  .cta-bubble {
    left: 150px;
    right: auto;
    top: 130px;
  }
}

/* Chat responsive hard override */
.chat-widget {
  box-sizing: border-box !important;
  max-width: calc(100dvw - 20px) !important;
}

.chat-body,
.quick-replies,
.date-picker,
.calendar-panel,
.slot-picker,
.agenda-panel,
.chat-form {
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}

.quick-replies {
  display: grid !important;
  grid-template-columns: 1fr !important;
}

.quick-replies button,
.date-picker button,
.slot-picker button {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  border-radius: var(--radius) !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

@media (max-width: 900px) {
  body.chat-open {
    position: fixed;
    inset: 0;
    width: 100%;
  }

  .chat-widget {
    inset: 10px !important;
    width: auto !important;
    height: auto !important;
    max-height: calc(100dvh - 20px) !important;
  }

  .chat-body {
    padding: 12px !important;
  }

  .calendar-panel {
    padding: 10px !important;
  }

  .calendar-grid,
  .calendar-weekdays {
    gap: 4px !important;
  }

  .calendar-day {
    min-height: 56px !important;
  }

  .slot-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 390px) {
  .calendar-day {
    min-height: 52px !important;
    padding-inline: 2px !important;
  }

  .calendar-day span,
  .calendar-day small,
  .calendar-day em {
    font-size: 0.58rem !important;
  }

  .slot-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
