:root {
  --cream: #fbf7ed;
  --cream-deep: #f1eadb;
  --mint: #dcebd8;
  --sage: #9caf90;
  --sage-dark: #3f604a;
  --olive: #6e7f5c;
  --yellow: #f4d889;
  --peach: #ead2c1;
  --ink: #24372b;
  --text: #384438;
  --muted: #687466;
  --line: rgba(63, 96, 74, 0.16);
  --white: #fffdf6;
  --shadow: 0 20px 56px rgba(73, 91, 62, 0.12);
  --font-sketch: "Caveat", cursive;
  --sketch-line: rgba(63, 96, 74, 0.2);
  --radius-loose: 26px 20px 24px 22px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 8%, rgba(244, 216, 137, 0.34), transparent 24rem),
    radial-gradient(circle at 5% 18%, rgba(220, 235, 216, 0.82), transparent 28rem),
    linear-gradient(180deg, #fffbf1 0%, var(--cream) 42%, #f4efe2 100%);
  font-size: 16px;
  line-height: 1.7;
}

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(251, 247, 237, 0.88);
  border-bottom: 1px dashed var(--sketch-line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 52% 48% 50% 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  box-shadow: 0 8px 18px rgba(63, 96, 74, 0.18);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  color: var(--ink);
  font-size: 16px;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 14px;
}

nav a,
.nav-cta,
.button,
.topic-grid .topic-tile-head,
.text-link,
.footer-links a {
  transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

nav a:hover {
  color: var(--sage-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta:hover,
.button:hover,
.topic-booking-btn:hover,
.footer-links a:hover {
  transform: translateY(-2px);
}

.hero,
.topic-picker,
.process,
.services,
.specialties,
.pricing,
.about,
.philosophy,
.life-outside,
.faq,
.contact,
.booking-flow {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(310px, 0.76fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(54px, 8vw, 96px) 0 clamp(42px, 7vw, 76px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--olive);
  font-family: var(--font-sketch), "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
}

.card-kicker {
  margin-bottom: 14px;
  color: var(--olive);
  font-family: var(--font-sketch), "PingFang SC", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  color: var(--ink);
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0;
}

h4 {
  margin-bottom: 6px;
  color: var(--sage-dark);
  font-size: 15px;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-copy .lead + .lead {
  margin-top: 1.15em;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--sage-dark);
  box-shadow: 0 14px 32px rgba(63, 96, 74, 0.22);
}

.button.secondary {
  color: var(--sage-dark);
  background: rgba(255, 253, 246, 0.78);
  border-color: var(--line);
}

.trust-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}

.trust-strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 7px 12px;
  color: var(--muted);
  background: rgba(255, 253, 246, 0.68);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}

.trust-strip strong {
  color: var(--sage-dark);
}

.profile-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255, 253, 246, 0.92), rgba(220, 235, 216, 0.68)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 32px 26px 30px 24px;
  box-shadow: var(--shadow);
}

.profile-card::before,
.profile-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.profile-card::before {
  top: 22px;
  right: 22px;
  width: 92px;
  height: 92px;
  background: rgba(244, 216, 137, 0.62);
}

.profile-card::after {
  bottom: 34%;
  left: -38px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(63, 96, 74, 0.12);
}

.portrait-frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: stretch;
  width: min(100%, 370px);
  aspect-ratio: 0.86;
  margin: 0 auto 24px;
  padding: 16px;
  background: var(--mint);
  border: 1px solid rgba(63, 96, 74, 0.12);
  border-radius: 34px;
}

.portrait-frame.small {
  width: min(100%, 260px);
  margin: 0;
}

.portrait-placeholder {
  min-height: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
}

.portrait-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.about-portrait-photo {
  object-position: 68% 42%;
}

.profile-card-body {
  position: relative;
  z-index: 1;
}

.profile-card-body h2 {
  margin-bottom: 4px;
  font-size: 32px;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.mini-tags span {
  padding: 7px 10px;
  color: var(--sage-dark);
  background: rgba(255, 253, 246, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.topic-picker,
.services,
.pricing,
.philosophy,
.faq {
  padding: clamp(64px, 9vw, 104px) 0;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.topic-grid .topic-tile {
  background: rgba(255, 253, 246, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px 17px 21px 19px;
  box-shadow: 0 10px 28px rgba(73, 91, 62, 0.07);
  overflow: hidden;
  outline: none;
}

.topic-grid .topic-tile:focus-visible {
  outline: 2px solid var(--sage-dark);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .topic-tile-expand {
    transition: none;
  }
}

.topic-grid .topic-tile:hover,
.topic-grid .topic-tile:focus-within {
  border-color: rgba(63, 96, 74, 0.28);
  box-shadow: 0 14px 36px rgba(73, 91, 62, 0.1);
}

.topic-grid .topic-tile-head {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  cursor: default;
  user-select: none;
}

.topic-grid .topic-tile-head::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 12px;
  flex-shrink: 0;
  background: var(--sage);
  border-radius: 50%;
}

.topic-grid .topic-tile:hover .topic-tile-head,
.topic-grid .topic-tile:focus-within .topic-tile-head {
  background: var(--mint);
}

.topic-tile-expand {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.topic-grid .topic-tile:hover .topic-tile-expand,
.topic-grid .topic-tile:focus-within .topic-tile-expand {
  grid-template-rows: 1fr;
}

.topic-tile-expand > .topic-tile-body {
  min-height: 0;
  overflow: hidden;
}

.topic-tile-body {
  padding: 0 22px 22px;
  border-top: 1px solid var(--line);
}

.topic-tile-body p {
  margin: 16px 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.topic-booking-btn {
  width: 100%;
}

button.text-link.topic-footer-booking {
  display: table;
  margin: 22px auto 0;
  padding: 0;
  border: none;
  background: none;
  color: var(--sage-dark);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}

button.text-link.topic-footer-booking:hover {
  color: var(--ink);
}

.text-link {
  display: table;
  margin: 22px auto 0;
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.section-band {
  padding: clamp(54px, 8vw, 82px);
  background: rgba(255, 253, 246, 0.64);
  border: 1px solid var(--line);
  border-radius: 34px 26px 30px 28px;
  box-shadow: var(--shadow);
}

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

.steps article,
.service-card,
.specialty-grid article,
.pricing-grid article,
.credential-panel,
.life-grid article,
.faq details {
  background: rgba(255, 253, 246, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.steps article {
  position: relative;
  padding: 26px;
}

.steps article span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 50%;
  font-weight: 900;
}

.steps article p,
.service-card p,
.clean-list,
.specialty-grid p,
.pricing-grid p,
.about p,
.philosophy-copy,
.life-grid p,
.faq p,
.contact p,
footer {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
}

.service-card {
  padding: clamp(26px, 4vw, 38px);
  box-shadow: 0 12px 34px rgba(73, 91, 62, 0.08);
}

.service-card.soft {
  background: rgba(220, 235, 216, 0.54);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 40px;
  margin-bottom: 24px;
  padding: 0 12px;
  color: var(--sage-dark);
  background: rgba(244, 216, 137, 0.44);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.service-detail {
  display: grid;
  gap: 10px;
  margin: 26px 0 28px;
  padding: 24px 0 2px;
  border-top: 1px solid var(--line);
}

.clean-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 24px 0 30px;
}

.specialties {
  margin-bottom: clamp(30px, 5vw, 58px);
}

.specialty-grid,
.pricing-grid,
.credential-grid,
.life-grid {
  display: grid;
  gap: 14px;
}

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

.specialty-grid article,
.pricing-grid article,
.life-grid article:not(.life-card) {
  padding: 24px;
}

.life-grid article.life-card {
  padding: 0;
  overflow: hidden;
}

.life-card-art {
  margin: 0;
  line-height: 0;
  padding: 16px 20px 8px;
  background: rgba(255, 253, 246, 0.96);
}

.life-card-art img {
  display: block;
  width: 100%;
  max-height: 148px;
  margin: 0 auto;
  object-fit: contain;
}

.life-card-body {
  padding: 20px 22px 22px;
}

.life-card-body h3 {
  margin-bottom: 10px;
}

.specialty-grid span {
  color: var(--sage-dark);
  font-weight: 900;
}

.specialty-grid p {
  margin: 10px 0 0;
}

.safety-note {
  margin: 28px 0 0;
  padding: 18px 20px;
  color: var(--muted);
  background: rgba(244, 216, 137, 0.22);
  border: 1px solid rgba(63, 96, 74, 0.14);
  border-radius: 18px;
}

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

.pricing-grid strong {
  color: var(--sage-dark);
  font-size: 24px;
}

.about {
  display: grid;
  gap: 34px;
}

.about-intro {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.credential-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.credential-panel {
  min-height: 0;
  overflow: hidden;
}

.credential-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  margin: 0;
  list-style: none;
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.25;
  user-select: none;
}

.credential-summary::-webkit-details-marker,
.credential-summary::marker {
  display: none;
  content: "";
}

.credential-summary::after {
  content: "+";
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--sage-dark);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 246, 0.82);
}

.credential-panel[open] > .credential-summary::after {
  content: "−";
}

.credential-panel[open] > .credential-summary {
  border-bottom: 1px solid var(--line);
}

.credential-panel-inner {
  padding: 6px 22px 20px;
}

.credential-line {
  margin: 0.48em 0;
  max-width: 100%;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  text-align: left;
  hyphens: auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.credential-line:first-child {
  margin-top: 0;
}

.credential-line:last-child {
  margin-bottom: 0;
}

.credential-panel-inner > .credential-line:not(.credential-line-cont) {
  padding-left: 1.15em;
  text-indent: -1.15em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.credential-line-cont {
  margin: 0.12em 0 0.52em;
  padding-left: 1.75em;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.credential-panel:nth-child(3),
.credential-panel:nth-child(4) {
  background: rgba(220, 235, 216, 0.45);
}

.credential-panel:nth-child(3)[open],
.credential-panel:nth-child(4)[open] {
  background: rgba(220, 235, 216, 0.52);
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: start;
}

.philosophy-copy {
  padding-left: clamp(0px, 3vw, 34px);
  border-left: 2px solid rgba(63, 96, 74, 0.16);
  font-size: 18px;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq details {
  padding: 0 22px;
}

.faq summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--sage-dark);
  font-size: 24px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin-bottom: 20px;
  padding-top: 2px;
  border-top: 1px solid var(--line);
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  margin-bottom: 22px;
}

.contact-cta-card {
  padding: clamp(26px, 4vw, 34px);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: var(--radius-loose);
  box-shadow: var(--shadow);
}

.contact-cta-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.contact-cta-card > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.contact-start-btn {
  width: 100%;
}

.booking-flow {
  margin-bottom: clamp(28px, 5vw, 48px);
}

.booking-flow-header {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.booking-honey {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.booking-form {
  position: relative;
}

.booking-send-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.booking-form-error {
  margin: 0 0 14px;
  padding: 12px 14px;
  color: #6b2c28;
  background: rgba(244, 216, 137, 0.35);
  border: 1px solid rgba(107, 44, 40, 0.22);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
}

.celebration-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.celebration-overlay[hidden] {
  display: none !important;
}

.celebration-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 55, 43, 0.38);
  backdrop-filter: blur(6px);
}

.celebration-card {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  padding: clamp(28px, 5vw, 40px);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(73, 91, 62, 0.22);
}

.celebration-visual {
  position: relative;
  height: 120px;
  margin-bottom: 8px;
}

.celebration-flower {
  position: absolute;
  left: 50%;
  top: 38%;
  font-size: 52px;
  transform: translate(-50%, -50%);
  animation: celebration-float 2.4s ease-in-out infinite;
}

.celebration-flower.secondary {
  left: 62%;
  top: 58%;
  font-size: 34px;
  opacity: 0.92;
  animation-delay: 0.35s;
}

.celebration-ribbon {
  position: absolute;
  width: 10px;
  height: 56px;
  border-radius: 4px;
  opacity: 0.85;
  animation: celebration-fall 2.8s ease-in infinite;
}

.celebration-ribbon.r1 {
  left: 12%;
  top: -10%;
  background: linear-gradient(180deg, var(--yellow), var(--peach));
  animation-delay: 0s;
}

.celebration-ribbon.r2 {
  left: 28%;
  top: -20%;
  height: 44px;
  background: linear-gradient(180deg, var(--mint), var(--sage));
  animation-delay: 0.4s;
}

.celebration-ribbon.r3 {
  left: 72%;
  top: -15%;
  background: linear-gradient(180deg, var(--peach), var(--yellow));
  animation-delay: 0.2s;
}

.celebration-ribbon.r4 {
  left: 86%;
  top: -8%;
  height: 48px;
  background: linear-gradient(180deg, var(--sage), var(--mint));
  animation-delay: 0.55s;
}

.celebration-ribbon.r5 {
  left: 48%;
  top: -25%;
  height: 40px;
  background: linear-gradient(180deg, #f4d889, #9caf90);
  animation-delay: 0.15s;
}

.celebration-title {
  margin: 0 0 12px;
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1.25;
  color: var(--ink);
}

.celebration-sub {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@keyframes celebration-float {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-4deg);
  }
  50% {
    transform: translate(-50%, -56%) rotate(4deg);
  }
}

@keyframes celebration-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(130px) rotate(18deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .celebration-flower,
  .celebration-ribbon {
    animation: none !important;
  }

  .celebration-ribbon {
    opacity: 0.35;
    transform: translateY(72px);
  }
}

.contact-intro h2 {
  margin-bottom: 16px;
}

.contact-intro-lead {
  margin-bottom: 14px;
}

.contact-intro-note {
  margin-bottom: 0;
  font-size: 15px;
}

.contact-intro-note a {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 4vw, 36px);
  align-items: start;
}

.booking-card {
  padding: clamp(26px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-loose);
  box-shadow: 0 18px 48px rgba(73, 91, 62, 0.12);
}

.booking-card h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2.4vw, 28px);
}

.booking-sub {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.booking-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin-bottom: 22px;
}

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

.booking-fields label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.booking-fields input,
.booking-fields select {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 246, 0.92);
  color: var(--text);
  font: inherit;
}

.booking-fields input:focus,
.booking-fields select:focus {
  outline: 2px solid rgba(63, 96, 74, 0.35);
  outline-offset: 1px;
}

.booking-submit {
  width: 100%;
}

.expect-panel {
  padding: clamp(22px, 3vw, 30px) clamp(20px, 3vw, 28px);
  background: rgba(255, 253, 246, 0.72);
  border: 1px solid var(--line);
  border-radius: 28px 22px 26px 24px;
}

.expect-panel > h3 {
  margin-bottom: 6px;
  font-size: clamp(22px, 2.4vw, 28px);
}

.expect-panel h3::after {
  content: "";
  display: block;
  width: 56px;
  height: 5px;
  margin-top: 14px;
  margin-bottom: 4px;
  background: var(--yellow);
  border-radius: 8px 14px 10px 12px;
  transform: rotate(-1.5deg);
  opacity: 0.95;
}

.expect-panel > .expect-en {
  margin: 0 0 20px;
  color: var(--olive);
  font-family: var(--font-sketch), sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.expect-wc-icon {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(36, 55, 43, 0.14);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
  border: 1px solid rgba(63, 96, 74, 0.12);
}

.expect-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.expect-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 14px;
  align-items: start;
  margin-bottom: 20px;
}

.expect-list li:last-child {
  margin-bottom: 0;
}

.expect-list-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 17px;
}

.expect-list-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 540px) {
  .expect-panel {
    text-align: left;
  }

  .expect-panel h3::after {
    margin-left: 0;
    margin-right: 0;
  }
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px 32px;
  padding: 26px clamp(20px, 5vw, 58px) 36px;
  font-size: 14px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.footer-brand span + span {
  color: var(--muted);
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.footer-links a {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links span {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero,
  .service-grid,
  .about-intro,
  .philosophy,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-panels {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .profile-card {
    max-width: 560px;
    margin: 0 auto;
  }

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

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

@media (max-width: 720px) {
  body {
    font-size: 14px;
    line-height: 1.65;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 14px;
  }

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

  .brand small {
    font-size: 11px;
  }

  nav {
    font-size: 13px;
  }

  .nav-cta {
    font-size: 13px;
  }

  .eyebrow {
    font-size: clamp(14px, 3.6vw, 17px);
  }

  .card-kicker {
    font-size: 13px;
  }

  h1 {
    font-size: clamp(26px, 6.8vw, 34px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(20px, 5.4vw, 28px);
    line-height: 1.15;
  }

  .lead {
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.65;
  }

  .button {
    font-size: 14px;
    min-height: 44px;
  }

  .trust-strip span {
    font-size: 12px;
    min-height: 34px;
    padding: 6px 10px;
  }

  .profile-card-body h2 {
    font-size: clamp(20px, 5vw, 26px);
  }

  .mini-tags span {
    font-size: 11px;
    padding: 6px 9px;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.65;
  }

  .topic-grid .topic-tile-head {
    font-size: 15px;
    padding: 18px;
    min-height: 60px;
  }

  .topic-tile-body {
    padding: 0 18px 18px;
  }

  .topic-tile-body p {
    font-size: 14px;
  }

  button.text-link.topic-footer-booking,
  .text-link {
    font-size: 14px;
  }

  .steps article p,
  .service-card p,
  .specialty-grid p,
  .pricing-grid p,
  .about p,
  .philosophy-copy,
  .life-grid p,
  .faq p,
  .contact p {
    font-size: 14px;
    line-height: 1.65;
  }

  .service-icon {
    font-size: 12px;
    min-width: 48px;
    height: 36px;
    margin-bottom: 18px;
  }

  .pricing-grid strong {
    font-size: 19px;
  }

  .credential-summary {
    font-size: 17px;
    padding: 16px 18px;
  }

  .credential-summary::after {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .credential-line,
  .credential-line-cont {
    font-size: 14px;
  }

  .safety-note {
    font-size: 13px;
    padding: 14px 16px;
  }

  .philosophy-copy {
    font-size: 15px;
  }

  .faq summary {
    font-size: 15px;
    padding: 16px 0;
  }

  .faq summary::after {
    font-size: 20px;
  }

  .contact-intro-note {
    font-size: 13px;
  }

  .contact-cta-card h3 {
    font-size: 18px;
  }

  .contact-cta-card > p {
    font-size: 14px;
  }

  .booking-card h3,
  .expect-panel > h3 {
    font-size: clamp(18px, 4.5vw, 22px);
  }

  .booking-sub {
    font-size: 14px;
  }

  .expect-panel > .expect-en {
    font-size: clamp(1.05rem, 3.5vw, 1.35rem);
  }

  .expect-list-copy strong {
    font-size: 15px;
  }

  .expect-list-copy p {
    font-size: 14px;
  }

  .celebration-title {
    font-size: clamp(18px, 4.5vw, 24px);
  }

  .celebration-sub {
    font-size: 14px;
  }

  .booking-send-note,
  .booking-form-error {
    font-size: 13px;
  }

  footer {
    font-size: 13px;
  }

  .site-header {
    position: static;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 14px;
  }

  .hero,
  .topic-picker,
  .process,
  .services,
  .specialties,
  .pricing,
  .about,
  .philosophy,
  .life-outside,
  .faq,
  .contact,
  .booking-flow {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    padding-top: 38px;
  }

  .hero-actions,
  .button,
  .nav-cta {
    width: 100%;
  }

  .button,
  .nav-cta {
    min-height: 48px;
  }

  .trust-strip-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .trust-strip span {
    justify-content: center;
  }

  .section-band {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .topic-grid,
  .steps,
  .specialty-grid,
  .pricing-grid,
  .credential-grid,
  .life-grid {
    grid-template-columns: 1fr;
  }

  .topic-grid .topic-tile-head {
    min-height: 68px;
  }

  .portrait-frame {
    width: min(100%, 330px);
  }

  .portrait-frame.small {
    width: min(100%, 240px);
  }

  .philosophy-copy {
    padding-left: 18px;
  }

  footer {
    flex-direction: column;
  }

  .booking-fields {
    grid-template-columns: 1fr;
  }
}
