:root {
  --bg: #F7F3EE;
  --bg-soft: #FFFDF9;
  --bg-warm: #EDE3D7;
  --surface: rgba(255, 253, 249, 0.82);
  --surface-strong: #FFFFFF;
  --border: #E5D9CF;
  --border-strong: rgba(229, 217, 207, 0.98);
  --text: #20302C;
  --text-muted: #5F6F68;
  --primary: #4E786E;
  --primary-hover: #40665E;
  --secondary: #7C96A7;
  --accent: #B08BC9;
  --highlight: #D6AD57;
  --highlight-soft: #F3E0AF;
  --focus: rgba(78, 120, 110, 0.28);
  --shadow: 0 18px 40px rgba(47, 58, 55, 0.10);
  --shadow-soft: 0 10px 24px rgba(78, 120, 110, 0.08);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: 'Karla', sans-serif;
  color: var(--text);
  background:
    radial-gradient(100% 78% at 14% 14%, rgba(143, 183, 200, 0.14) 0%, transparent 42%),
    radial-gradient(100% 78% at 86% 12%, rgba(176, 139, 201, 0.13) 0%, transparent 40%),
    radial-gradient(120% 90% at 50% 108%, rgba(214, 173, 87, 0.10) 0%, transparent 44%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 54%, var(--bg-warm) 100%);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(32, 48, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 48, 44, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.22;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 92%);
}

::selection {
  background: rgba(176, 139, 201, 0.28);
  color: var(--text);
}

a {
  color: inherit;
}

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

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

button {
  border: none;
}

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

.site-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 42px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(248, 242, 235, 0.84) 100%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 8%, rgba(143, 183, 200, 0.14), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(176, 139, 201, 0.10), transparent 30%);
  opacity: 0.75;
}

.panel > * {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  position: sticky;
  top: 14px;
  z-index: 12;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-copy span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.nav-link,
.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-link {
  padding: 10px 13px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-link[aria-current='page'] {
  color: var(--text);
  background: rgba(78, 120, 110, 0.10);
}

.nav-button {
  padding: 10px 15px;
  background: linear-gradient(135deg, var(--primary) 0%, #5B857A 100%);
  color: var(--bg-soft);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(78, 120, 110, 0.18);
}

.button {
  padding: 13px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.button.primary {
  color: var(--bg-soft);
  background: linear-gradient(135deg, var(--primary) 0%, #5B857A 100%);
  box-shadow: 0 12px 24px rgba(78, 120, 110, 0.18);
}

.button.primary:hover,
.nav-button:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #4D7368 100%);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--border);
}

.button.secondary:hover {
  border-color: rgba(78, 120, 110, 0.26);
  background: rgba(78, 120, 110, 0.06);
}

.button.ghost {
  color: var(--primary);
  background: transparent;
  border-color: rgba(78, 120, 110, 0.20);
}

.button.ghost:hover {
  background: rgba(78, 120, 110, 0.06);
}

.button.small {
  padding: 10px 14px;
  font-size: 13px;
}

.button:active,
.nav-button:active {
  transform: translateY(1px) scale(0.99);
}

.button:focus-visible,
.nav-link:focus-visible,
.nav-button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 26px;
  padding: 32px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.hero-copy .lead {
  margin: 0;
  max-width: 66ch;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

.eyebrow,
.section-kicker,
.mini-label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--primary);
}

h1,
h2,
h3,
h4,
.h1,
.h2 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}

h1,
.h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.96;
  max-width: 12ch;
}

h2,
.h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.04;
}

h3 {
  font-size: 26px;
  line-height: 1.08;
}

.section-copy,
.sub,
.detail-copy,
.card-copy,
.cta-note,
.fine-print,
.status,
.footer-note,
.booked-meta p,
.legal-prose p,
.legal-prose li {
  color: var(--text-muted);
}

.sub {
  margin: 0;
  max-width: 66ch;
  font-size: 16px;
  line-height: 1.72;
}

.hero-actions,
.card-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(78, 120, 110, 0.10);
  border: 1px solid rgba(78, 120, 110, 0.16);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.tag.secondary {
  background: rgba(143, 183, 200, 0.11);
  border-color: rgba(143, 183, 200, 0.18);
}

.tag.accent {
  background: rgba(176, 139, 201, 0.10);
  border-color: rgba(176, 139, 201, 0.18);
}

.tag.highlight {
  background: rgba(214, 173, 87, 0.12);
  border-color: rgba(214, 173, 87, 0.18);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(247, 243, 238, 0.88) 100%);
  box-shadow: var(--shadow-soft);
}

.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0 4px;
}

.hero-art svg {
  width: min(100%, 360px);
  height: auto;
  overflow: visible;
}

.glow-core {
  transform-origin: 160px 148px;
  animation: breathe 5.2s ease-in-out infinite;
}

.mote {
  animation: rise 6s ease-in infinite;
}

.mote-1 {
  animation-delay: 0s;
}

.mote-2 {
  animation-delay: 1.8s;
}

.mote-3 {
  animation-delay: 3.4s;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.76;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes rise {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }

  15% {
    opacity: 0.9;
  }

  85% {
    opacity: 0;
  }

  100% {
    transform: translateY(-46px);
    opacity: 0;
  }
}

.hero-note,
.callout,
.book-card,
.form-card,
.booked-meta,
.step-card,
.service-card,
.detail-card,
.testimonial-card,
.faq-item,
.legal-box {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.hero-note {
  padding: 18px 18px 16px;
  background: rgba(78, 120, 110, 0.06);
}

.hero-note p {
  margin: 0;
  line-height: 1.65;
  font-size: 14px;
}

.section {
  padding: 30px 32px 32px;
}

.section-head {
  max-width: 74ch;
  margin-bottom: 22px;
}

.section-head .lead,
.section-head .section-copy {
  margin-top: 12px;
}

.section-grid,
.step-grid,
.service-grid,
.detail-grid,
.footer-grid,
.booked-grid,
.faq-grid,
.contact-grid,
.layout-grid {
  display: grid;
  gap: 16px;
}

.section-grid,
.step-grid,
.detail-grid,
.faq-grid,
.contact-grid,
.layout-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step-card,
.detail-card,
.testimonial-card,
.faq-item,
.legal-box {
  padding: 22px;
}

.step-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(78, 120, 110, 0.18);
  background: rgba(78, 120, 110, 0.11);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.step-card h3,
.detail-card h3,
.testimonial-card h3,
.faq-item summary {
  margin-bottom: 10px;
}

.step-card p,
.detail-card p,
.testimonial-card p,
.callout p,
.book-card p,
.legal-box p,
.booked-meta p {
  margin: 0;
  line-height: 1.72;
  font-size: 15px;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.service-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.service-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--accent), var(--highlight));
}

.service-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--highlight), var(--primary));
}

.service-card:nth-child(5)::before {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(78, 120, 110, 0.22);
  box-shadow: 0 16px 30px rgba(32, 48, 44, 0.10);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.service-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(78, 120, 110, 0.10);
  color: var(--primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-chip {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
}

.service-card h3 a {
  text-decoration: none;
  color: inherit;
}

.service-card p,
.card-copy {
  line-height: 1.68;
  font-size: 15px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 16px;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(143, 183, 200, 0.20);
  background: rgba(143, 183, 200, 0.12);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.service-tags li:nth-child(2) {
  border-color: rgba(176, 139, 201, 0.18);
  background: rgba(176, 139, 201, 0.10);
}

.service-tags li:nth-child(3) {
  border-color: rgba(214, 173, 87, 0.18);
  background: rgba(214, 173, 87, 0.12);
}

.card-actions {
  margin-top: auto;
}

.card-actions .button {
  flex: 1 1 0;
}

.detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.detail-card ul,
.legal-prose ul,
.booked-meta ul,
.checklist {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.detail-card li,
.legal-prose li,
.booked-meta li,
.checklist li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
  line-height: 1.6;
  color: var(--text-muted);
}

.detail-card li::before,
.legal-prose li::before,
.booked-meta li::before,
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  box-shadow: 0 0 0 4px rgba(78, 120, 110, 0.08);
}

.callout {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 243, 238, 0.94) 100%);
}

.callout.warning {
  border-color: rgba(214, 173, 87, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(243, 224, 175, 0.22) 100%);
}

.callout strong,
.detail-card strong,
.booked-meta strong,
.legal-box strong {
  color: var(--text);
}

.callout .button,
.book-card .button,
.form-card .button,
.booked-meta .button {
  margin-top: 14px;
}

.fine-print,
.cta-note,
.footer-note,
.status {
  font-size: 13px;
  line-height: 1.65;
}

.book-card {
  padding: 22px;
}

.price {
  margin: 10px 0 8px;
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  color: var(--text);
}

.price small {
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.form-card {
  padding: 24px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  padding: 13px 16px;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

textarea {
  min-height: 160px;
  resize: vertical;
  border-radius: 24px;
}

select {
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: var(--primary);
}

.status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--secondary);
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.08;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: '+';
  font-family: 'Karla', sans-serif;
  font-size: 18px;
  color: var(--primary);
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item > div,
.faq-item .faq-body {
  padding: 0 22px 22px;
}

.faq-item p {
  margin: 0;
  line-height: 1.72;
  color: var(--text-muted);
}

.faq-item .faq-body p + p {
  margin-top: 12px;
}

.testimonial-card .quote {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  line-height: 1.35;
  color: var(--text);
}

.placeholder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.placeholder-badge::before {
  content: 'TODO';
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(214, 173, 87, 0.22);
  background: rgba(214, 173, 87, 0.12);
  color: #8B6720;
}

.legal-box {
  padding: 24px;
}

.legal-prose {
  display: grid;
  gap: 14px;
}

.legal-prose p,
.legal-prose li {
  line-height: 1.72;
}

.booked-shell {
  display: grid;
  gap: 20px;
}

.booked-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 22px;
  padding: 32px;
}

.booked-meta {
  padding: 22px;
}

.scheduler-shell {
  padding: 0;
  overflow: hidden;
}

.scheduler-frame {
  width: 100%;
  min-height: 760px;
  border: 0;
  display: block;
  background: rgba(255, 255, 255, 0.60);
}

.scheduler-fallback {
  padding: 24px;
}

.booked-chooser {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.booked-chooser a {
  justify-content: space-between;
}

.offer-actions {
  display: grid;
  gap: 10px;
}

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

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offer-card.featured {
  border-color: rgba(214, 173, 87, 0.34);
  box-shadow: 0 18px 40px rgba(47, 58, 55, 0.10), 0 0 0 1px rgba(214, 173, 87, 0.08);
}

.offer-card .price {
  margin-top: 0;
}

.offer-card .offer-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.62;
}

.founding-banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  margin-bottom: 16px;
}

.founding-banner[hidden] {
  display: none !important;
}

.founding-banner .banner-copy {
  display: grid;
  gap: 6px;
}

.founding-banner .banner-copy p {
  margin: 0;
}

.founding-banner .banner-close {
  align-self: flex-start;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 24px;
  align-items: center;
  padding: 18px 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copy strong,
.footer-brand strong {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
}

.footer-note {
  margin: 0;
}

.footer-links,
.footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.footer-links a,
.footer-meta span {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.legal-page .section,
.rich-page .section,
.booking-page .section {
  padding-top: 0;
}

.content-stack {
  display: grid;
  gap: 22px;
}

.mt-sm {
  margin-top: 10px;
}

.mt-md {
  margin-top: 18px;
}

.mt-lg {
  margin-top: 24px;
}

.underline-link {
  text-underline-offset: 3px;
}

@media (max-width: 1040px) {
  .hero,
  .booked-hero {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(1120px, calc(100% - 18px));
    padding-top: 10px;
  }

  .site-header,
  .hero,
  .section,
  .booked-hero,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header,
  .site-footer {
    gap: 14px;
  }

  .brand-copy span {
    font-size: 11px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .card-actions .button {
    flex: 1 1 100%;
  }

  .booked-chooser {
    grid-template-columns: 1fr;
  }

  .scheduler-frame {
    min-height: 680px;
  }
}

@media (max-width: 540px) {
  h1,
  .h1 {
    font-size: clamp(34px, 11vw, 52px);
  }

  h2,
  .h2 {
    font-size: clamp(26px, 9vw, 36px);
  }

  .site-nav {
    gap: 6px;
  }

  .nav-link,
  .nav-button {
    padding: 9px 11px;
  }

  .panel,
  .hero,
  .section,
  .booked-hero {
    border-radius: 24px;
  }

  .service-card,
  .step-card,
  .detail-card,
  .testimonial-card,
  .faq-item,
  .book-card,
  .form-card,
  .legal-box,
  .booked-meta,
  .callout {
    padding: 18px;
  }

  .faq-item summary {
    font-size: 20px;
    padding: 18px;
  }

  .faq-item > div,
  .faq-item .faq-body {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 18px;
  }

  .scheduler-frame {
    min-height: 620px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .glow-core,
  .mote {
    animation: none !important;
  }
}
