@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;1,500&display=swap');

:root {
  --ink: #352c31;
  --plum: #493841;
  --plum-deep: #30242b;
  --clay: #b77d63;
  --blush: #e3ba9f;
  --sand: #e8d9cd;
  --cream: #f7f2ed;
  --paper: #fffaf6;
  --sage: #758079;
  --line: rgba(73, 56, 65, 0.16);
  --shadow: 0 24px 70px rgba(58, 40, 49, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 100; padding: 12px 18px; background: var(--paper); }
.skip-link:focus { top: 20px; }

.site-header {
  width: min(1240px, calc(100% - 48px));
  margin: 18px auto 0;
  min-height: 72px;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 20;
  background: rgba(255, 250, 246, 0.82);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(62, 44, 52, .06);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 600; letter-spacing: -.02em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; color: var(--paper); background: var(--plum); border-radius: 50%; font-family: var(--serif); font-size: 21px; }
nav { display: flex; align-items: center; gap: 30px; }
nav a { text-decoration: none; font-size: 14px; color: #62535b; }
nav a:hover { color: var(--clay); }

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 100px;
  color: white;
  background: var(--plum);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(73,56,65,.2);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--plum-deep); box-shadow: 0 14px 30px rgba(73,56,65,.25); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 13px; }

.hero {
  width: min(1240px, calc(100% - 48px));
  min-height: 690px;
  margin: -46px auto 0;
  padding: 150px 7% 78px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 7%;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 82% 18%, rgba(227,186,159,.7), transparent 34%),
    linear-gradient(135deg, #fffaf6 12%, #f1e6dd 100%);
  border-radius: 0 0 42px 42px;
}
.hero::before { content: ""; position: absolute; width: 470px; height: 470px; right: -180px; bottom: -270px; border: 1px solid rgba(73,56,65,.14); border-radius: 50%; box-shadow: 0 0 0 48px rgba(255,255,255,.12), 0 0 0 96px rgba(255,255,255,.09); }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 10px; color: var(--clay); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.06; letter-spacing: -.035em; }
h1 { max-width: 660px; font-size: clamp(52px, 6vw, 86px); }
h1 em { color: var(--clay); font-weight: inherit; }
.hero-lead { max-width: 610px; margin: 28px 0 32px; color: #695b62; font-size: 18px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.text-link { text-underline-offset: 5px; font-size: 14px; font-weight: 600; }
.trust-row { margin-top: 48px; padding-top: 23px; display: flex; gap: 24px; flex-wrap: wrap; border-top: 1px solid var(--line); color: #75666d; font-size: 12px; }
.trust-row span::before { content: "✓"; margin-right: 6px; color: var(--sage); font-weight: 700; }

.hero-visual { min-height: 500px; position: relative; display: grid; place-items: center; }
.orb-main { width: min(410px, 90%); aspect-ratio: 1 / 1.14; display: grid; place-items: center; overflow: hidden; position: relative; background: rgba(255,250,246,.46); border: 1px solid rgba(255,255,255,.7); border-radius: 50% 50% 44% 56% / 56% 46% 54% 44%; box-shadow: var(--shadow); }
.orb-main::after { content: ""; position: absolute; inset: 26px; border: 1px solid rgba(73,56,65,.12); border-radius: inherit; }
.orb-main svg { width: 88%; }
.floating-note { position: absolute; padding: 18px 20px; background: rgba(255,250,246,.91); border: 1px solid rgba(255,255,255,.9); box-shadow: 0 18px 50px rgba(73,56,65,.14); backdrop-filter: blur(12px); }
.note-one { left: -16px; top: 28%; border-radius: 18px 18px 18px 4px; }
.note-one small, .note-one strong { display: block; }
.note-one small { color: var(--clay); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.note-one strong { margin-top: 2px; font-family: var(--serif); font-size: 21px; font-weight: 500; }
.note-two { right: -28px; bottom: 18%; width: 218px; display: flex; gap: 11px; border-radius: 4px 18px 18px 18px; }
.note-two p { margin: 0; font-size: 13px; line-height: 1.55; }
.spark { color: var(--clay); }

.services { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 116px 0 128px; }
.section-heading { display: grid; grid-template-columns: .75fr 1.15fr 1fr; gap: 38px; align-items: end; margin-bottom: 54px; }
.section-heading .eyebrow { align-self: start; margin-top: 8px; }
h2 { font-size: clamp(40px, 5vw, 62px); }
.section-heading > p:last-child { margin: 0 0 4px; color: #75666d; font-size: 15px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 330px; padding: 28px; display: flex; flex-direction: column; position: relative; background: rgba(255,250,246,.72); border: 1px solid var(--line); border-radius: 24px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-6px); background: var(--paper); box-shadow: var(--shadow); }
.card-number { position: absolute; top: 28px; right: 28px; color: #ad9b9f; font-size: 12px; }
.card-icon { width: 58px; height: 58px; margin: 26px 0 25px; display: grid; place-items: center; color: var(--clay); background: #f0dfd4; border-radius: 50%; font-family: var(--serif); font-size: 28px; }
.service-card h3 { margin: 0 0 13px; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.service-card p { margin: 0; color: #75666d; font-size: 14px; }
.card-tag { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); color: var(--sage); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.evidence-note { margin-top: 20px; padding: 22px 24px; display: flex; align-items: flex-start; gap: 16px; color: #66575f; background: #efe5dd; border: 1px solid rgba(183,125,99,.2); border-radius: 18px; }
.evidence-symbol { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; color: white; background: var(--clay); border-radius: 50%; font-family: var(--serif); font-style: italic; }
.evidence-note strong { color: var(--plum); font-family: var(--serif); font-size: 18px; font-weight: 500; }
.evidence-note p { margin: 4px 0 0; font-size: 11px; line-height: 1.65; }
.price-strip { margin-top: 20px; padding: 24px 26px; display: grid; grid-template-columns: 1.25fr .75fr .75fr auto; align-items: center; gap: 24px; color: var(--paper); background: var(--plum); border-radius: 22px; box-shadow: var(--shadow); }
.price-strip > div:first-child { display: grid; }
.price-kicker { color: var(--blush); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.price-strip > div:first-child strong { margin-top: 4px; font-family: var(--serif); font-size: 23px; font-weight: 500; }
.price-duration, .price-amount { display: grid; padding-left: 22px; border-left: 1px solid rgba(255,255,255,.16); }
.price-duration span, .price-amount span { color: #cdbfc5; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.price-duration strong { font-size: 14px; }
.price-amount strong { color: var(--blush); font-family: var(--serif); font-size: 25px; font-weight: 500; }
.price-strip .button { color: var(--plum); background: var(--paper); box-shadow: none; }
.price-strip .button:hover { color: var(--paper); background: var(--clay); }

.about-contact { width: min(1240px, calc(100% - 48px)); margin: 0 auto 24px; display: grid; grid-template-columns: 1.02fr .98fr; background: var(--plum); border-radius: 36px; overflow: hidden; box-shadow: var(--shadow); }
.about-panel { padding: 76px 8%; color: var(--paper); }
.eyebrow-light { color: var(--blush); }
.about-panel h2 { max-width: 540px; }
.about-lead { margin: 28px 0 34px; color: #d8cbd1; font-size: 16px; }
.credentials { margin: -6px 0 30px; display: grid; gap: 9px; }
.credentials span { display: flex; align-items: center; gap: 9px; color: #ded2d7; font-size: 12px; }
.credentials i { width: 20px; height: 20px; flex: 0 0 auto; display: grid; place-items: center; color: var(--plum); background: var(--blush); border-radius: 50%; font-size: 10px; font-style: normal; font-weight: 700; }
.session-heading { margin: 0 0 10px; color: var(--blush); font-family: var(--serif); font-size: 24px; font-weight: 500; }
.principles { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.13); }
.principles div { padding: 17px 0; display: grid; grid-template-columns: 44px 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.13); }
.principles strong { color: var(--blush); font-size: 11px; letter-spacing: .12em; }
.principles p { margin: 0; font-size: 14px; }
.principles b { color: var(--paper); font-weight: 600; }
.ethics { margin-top: 28px; padding: 19px 20px; background: rgba(255,255,255,.06); border-left: 2px solid var(--blush); border-radius: 0 12px 12px 0; }
.ethics strong { color: var(--blush); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.ethics p { margin: 7px 0 0; color: #cfbfc6; font-size: 11px; line-height: 1.65; }

.contact-panel { padding: 76px 9%; background: var(--paper); }
.contact-panel h2 { font-size: clamp(38px, 4.5vw, 56px); }
.contact-intro { margin: 20px 0 30px; color: #75666d; font-size: 14px; }
.contact-details { margin: -6px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-details > * { min-height: 66px; padding: 12px 14px; display: flex; align-items: center; gap: 11px; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 13px; text-decoration: none; }
.contact-details .contact-email { grid-column: 1 / -1; }
.contact-details .contact-email > span:last-child { min-width: 0; overflow-wrap: anywhere; }
.contact-details > a:hover { border-color: var(--clay); }
.contact-details > * > span:first-child { width: 32px; height: 32px; display: grid; place-items: center; color: white; background: var(--clay); border-radius: 50%; }
.contact-details small, .contact-details strong { display: block; }
.contact-details small { color: #8d7e85; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.contact-details strong { font-size: 13px; }
form { display: grid; gap: 17px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; color: #62535b; font-size: 12px; font-weight: 600; }
input, select, textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--cream); border: 1px solid transparent; border-radius: 11px; outline: none; }
textarea { resize: vertical; min-height: 106px; }
input:focus, select:focus, textarea:focus { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(183,125,99,.12); }
.calendar-fieldset, .time-fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.calendar-fieldset legend, .time-fieldset legend { margin-bottom: 7px; color: #62535b; font-size: 12px; font-weight: 600; }
.availability-note { margin: 0 0 11px; padding: 11px 13px; color: #75666d; background: #f4e9e1; border-radius: 10px; font-size: 10px; line-height: 1.5; }
.availability-note strong { display: block; color: var(--clay); letter-spacing: .05em; text-transform: uppercase; }
.booking-calendar { padding: 14px; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; }
.calendar-header { display: grid; grid-template-columns: 34px 1fr 34px; align-items: center; gap: 8px; margin-bottom: 13px; }
.calendar-header strong { text-align: center; font-family: var(--serif); font-size: 18px; font-weight: 500; text-transform: capitalize; }
.calendar-header button { width: 34px; height: 34px; display: grid; place-items: center; color: var(--plum); background: var(--paper); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.calendar-header button:hover:not(:disabled) { color: white; background: var(--clay); }
.calendar-header button:disabled { opacity: .3; cursor: default; }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.calendar-weekdays { margin-bottom: 5px; color: #988a90; text-align: center; font-size: 9px; font-weight: 600; text-transform: uppercase; }
.calendar-day { aspect-ratio: 1; min-width: 0; display: grid; place-items: center; color: var(--ink); background: var(--paper); border: 1px solid transparent; border-radius: 9px; font-size: 11px; cursor: pointer; }
.calendar-day:hover:not(:disabled), .calendar-day:focus-visible { border-color: var(--clay); outline: none; }
.calendar-day.available::after { content: ""; width: 3px; height: 3px; position: absolute; margin-top: 23px; background: var(--clay); border-radius: 50%; }
.calendar-day { position: relative; }
.calendar-day.selected { color: white; background: var(--plum); border-color: var(--plum); }
.calendar-day.selected::after { background: var(--blush); }
.calendar-day:disabled { color: #c9bec2; background: transparent; cursor: default; }
.calendar-day.empty { visibility: hidden; }
.time-slots { min-height: 54px; display: flex; gap: 7px; flex-wrap: wrap; }
.time-slots p { width: 100%; margin: 0; padding: 14px; color: #988a90; background: var(--cream); border-radius: 11px; font-size: 11px; }
.time-slot { padding: 9px 12px; color: var(--plum); background: var(--cream); border: 1px solid var(--line); border-radius: 100px; font-size: 11px; font-weight: 600; cursor: pointer; }
.time-slot:hover, .time-slot:focus-visible { border-color: var(--clay); outline: none; }
.time-slot.selected { color: white; background: var(--plum); border-color: var(--plum); }
.button-submit { width: 100%; margin-top: 3px; }
.booking-summary { padding: 12px 15px; display: flex; align-items: center; justify-content: space-between; color: var(--plum); background: #f0e2d8; border-radius: 11px; }
.booking-summary span { display: grid; font-size: 12px; }
.booking-summary small { color: #8d7e85; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.booking-summary b { font-weight: 600; }
.booking-summary strong { font-family: var(--serif); font-size: 21px; font-weight: 500; }
.booking-error { margin: 0; color: #9d3f3f; font-size: 11px; font-weight: 600; }
.form-note { margin: -4px 0 0; text-align: center; color: #988a90; font-size: 10px; }
.form-result { margin-top: 24px; padding: 18px; align-items: flex-start; gap: 14px; background: #edf1ed; border: 1px solid #dce5de; border-radius: 14px; }
.form-result[hidden] { display: none; }
.form-result:not([hidden]) { display: flex; }
.form-result > span { width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; color: white; background: var(--sage); border-radius: 50%; }
.form-result strong { font-size: 13px; }
.form-result p { margin: 3px 0 0; color: #657068; font-size: 11px; line-height: 1.5; }
.result-content { flex: 1; }
.calendar-reminder { width: 100%; margin-top: 13px; padding: 10px 12px; display: flex; align-items: center; justify-content: center; gap: 7px; color: white; background: var(--sage); border: 0; border-radius: 9px; font-size: 11px; font-weight: 600; cursor: pointer; }
.calendar-reminder:hover { background: #5e6d64; }
.result-content > small { margin-top: 6px; display: block; color: #778179; font-size: 9px; text-align: center; }

.faq-panel { grid-column: 1 / -1; padding: 74px 8%; display: grid; grid-template-columns: .8fr 1.2fr; gap: 8%; color: var(--ink); background: #f1e7df; }
.faq-heading h2 { font-size: clamp(38px, 4vw, 56px); }
.faq-heading > p:last-child { margin: 22px 0 0; color: #75666d; font-size: 14px; }
.faq-list { display: grid; align-content: start; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary { padding: 18px 2px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--plum); font-size: 14px; font-weight: 600; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: var(--serif); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -3px 34px 18px 2px; color: #75666d; font-size: 12px; line-height: 1.7; }

.whatsapp-float { min-height: 48px; padding: 0 17px 0 8px; display: flex; align-items: center; gap: 8px; position: fixed; right: 22px; bottom: 20px; z-index: 40; color: white; background: #58786b; border: 1px solid rgba(255,255,255,.4); border-radius: 100px; box-shadow: 0 14px 34px rgba(48,36,43,.24); text-decoration: none; transition: transform .2s ease, background .2s ease; }
.whatsapp-float:hover { transform: translateY(-2px); background: #466459; }
.whatsapp-float span { width: 34px; height: 34px; display: grid; place-items: center; background: rgba(255,255,255,.14); border-radius: 50%; font-size: 17px; }
.whatsapp-float b { font-size: 12px; }

footer { width: min(1120px, calc(100% - 48px)); min-height: 130px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; color: #887a81; font-size: 12px; }
.footer-brand { color: var(--ink); }
footer p:last-child { text-align: right; }
footer p a { color: inherit; text-underline-offset: 3px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.service-card:nth-child(2) { transition-delay: .08s; }
.service-card:nth-child(3) { transition-delay: .16s; }

@media (max-width: 900px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 145px; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-visual { min-height: 440px; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .price-strip { grid-template-columns: 1fr 1fr; }
  .price-strip .button { grid-column: 1 / -1; }
  .about-contact { grid-template-columns: 1fr; }
  .faq-panel { grid-template-columns: 1fr; gap: 42px; }
  footer { grid-template-columns: 1fr; padding: 36px 0; text-align: center; }
  .footer-brand { justify-content: center; }
  footer p { margin: 0; }
  footer p:last-child { text-align: center; }
}

@media (max-width: 620px) {
  .site-header { width: calc(100% - 24px); margin-top: 12px; }
  .site-header .brand > span:last-child { display: none; }
  .hero { width: calc(100% - 24px); min-height: auto; margin-top: -42px; padding: 128px 22px 58px; border-radius: 0 0 28px 28px; }
  h1 { font-size: 50px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .trust-row { gap: 10px 18px; }
  .hero-visual { min-height: 380px; }
  .note-one { left: -6px; }
  .note-two { right: -8px; width: 190px; }
  .services { width: calc(100% - 36px); padding: 86px 0; }
  .about-contact { width: calc(100% - 24px); border-radius: 28px; }
  .about-panel, .contact-panel { padding: 58px 24px; }
  .faq-panel { padding: 58px 24px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; }
  .price-strip { grid-template-columns: 1fr; }
  .price-duration, .price-amount { padding: 14px 0 0; border-top: 1px solid rgba(255,255,255,.16); border-left: 0; }
  .whatsapp-float { right: 12px; bottom: 12px; }
  .whatsapp-float b { display: none; }
  .whatsapp-float { width: 50px; padding: 7px; }
  .whatsapp-float span { width: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
