:root {
  --cream: #f7f2e8;
  --cream-deep: #eee6d7;
  --paper: #fffdf8;
  --olive: #65704a;
  --olive-dark: #65704a;
  --olive-surface: #33412f;
  --olive-soft: #dfe2d0;
  --sage: #a7ad8c;
  --terracotta: #a86647;
  --terracotta-soft: #e7cbbc;
  --brown: #776b61;
  --muted: #776b61;
  --line: rgba(70, 52, 41, 0.14);
  --shadow: 0 22px 54px rgba(62, 51, 36, 0.1);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: Avenir, "Avenir Next", Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  background: var(--cream);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h2 {
  color: var(--olive-dark);
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 1.05;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(168, 102, 71, 0.35);
  outline-offset: 3px;
}

.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;
}

.section-shell {
  width: min(100% - 36px, 1180px);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--sage);
  margin-inline: 5px;
}

.primary-button,
.secondary-button,
.cream-button,
.header-cta {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  transition: background 180ms ease, border 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.primary-button {
  background: var(--olive-surface);
  box-shadow: 0 10px 22px rgba(51, 65, 47, 0.17);
  color: #fffdf8;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: #283526;
  box-shadow: 0 13px 26px rgba(51, 65, 47, 0.24);
  transform: translateY(-1px);
}

.primary-button:disabled {
  background: #b7baa9;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.secondary-button {
  background: transparent;
  border: 1px solid rgba(51, 65, 47, 0.28);
  color: var(--olive-dark);
}

.secondary-button:hover {
  background: rgba(101, 112, 74, 0.08);
}

.cream-button {
  background: var(--cream);
  color: var(--olive-dark);
}

.cream-button:hover {
  background: var(--paper);
  transform: translateY(-1px);
}

.full-button {
  width: 100%;
}

.text-link {
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(70, 52, 41, 0.32);
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 700;
  gap: 8px;
  padding: 5px 0;
  transition: color 160ms ease, border-color 160ms ease;
}

.text-link:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.site-header {
  backdrop-filter: blur(14px);
  background: rgba(247, 242, 232, 0.9);
  border-bottom: 1px solid rgba(70, 52, 41, 0.08);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 40;
}

.header-inner {
  align-items: center;
  display: flex;
  height: 72px;
  justify-content: space-between;
  margin: 0 auto;
  width: min(100% - 32px, 1180px);
}

.header-tools {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 4px;
}

.language-switcher {
  align-items: center;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(101, 112, 74, 0.2);
  border-radius: 999px;
  display: inline-flex;
  padding: 3px;
}

.language-switcher button,
.language-switcher a {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.64rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.07em;
  min-height: 30px;
  min-width: 32px;
  padding: 0 7px;
  transition: background 160ms ease, color 160ms ease;
}

.language-switcher button.active,
.language-switcher a.active {
  background: var(--olive-surface);
  color: var(--cream);
}

.language-switcher span {
  color: rgba(101, 112, 74, 0.45);
  font-size: 0.62rem;
}

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

.brand-mark,
.booking-brand-mark {
  align-items: center;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
  color: var(--terracotta);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 1.35rem;
  height: 39px;
  justify-content: center;
  position: relative;
  width: 39px;
}

.brand-mark::after,
.booking-brand-mark::after {
  background: var(--olive);
  border: 2px solid var(--cream);
  border-radius: 50%;
  bottom: 2px;
  content: "";
  height: 7px;
  position: absolute;
  right: 1px;
  width: 7px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-text small {
  color: var(--terracotta);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 5px;
  text-transform: uppercase;
}

.desktop-nav,
.header-cta {
  display: none;
}

.mobile-menu-button,
.icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.mobile-menu-button:hover,
.icon-button:hover {
  background: rgba(101, 112, 74, 0.1);
}

.mobile-nav {
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 18px 32px rgba(70, 52, 41, 0.1);
  display: grid;
  gap: 0;
  left: 0;
  padding: 12px 18px 18px;
  position: absolute;
  right: 0;
  top: 72px;
}

.mobile-nav a {
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.2rem;
  padding: 14px 4px;
}

.mobile-nav button {
  align-items: center;
  background: var(--olive-surface);
  border: 0;
  border-radius: 999px;
  color: white;
  display: flex;
  font-weight: 700;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  min-height: 50px;
}

.hero {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  padding-bottom: 26px;
  padding-top: 38px;
  position: relative;
}

.hero::before {
  background:
    radial-gradient(circle at 0% 100%, rgba(168, 102, 71, 0.13), transparent 42%),
    radial-gradient(circle at 92% 12%, rgba(101, 112, 74, 0.12), transparent 38%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-art {
  height: 150px;
  margin: 0 0 20px auto;
  position: relative;
  width: min(68vw, 270px);
}

.hero-orbit {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 253, 248, 0.9), transparent 17%),
    linear-gradient(150deg, rgba(223, 226, 208, 0.9), rgba(231, 203, 188, 0.68));
  border-radius: 61% 39% 44% 56% / 53% 52% 48% 47%;
  box-shadow: inset 0 0 0 1px rgba(70, 52, 41, 0.05), 0 24px 50px rgba(70, 52, 41, 0.08);
  inset: 0 0 0 12%;
  position: absolute;
  transform: rotate(-6deg);
}

.hero-orbit::after {
  border: 1px solid rgba(168, 102, 71, 0.42);
  border-radius: 50%;
  content: "";
  height: 78%;
  left: -17%;
  position: absolute;
  top: 18%;
  width: 78%;
}

.hero-botanical {
  height: 94px;
  left: 47%;
  object-fit: contain;
  position: absolute;
  top: 22%;
  transform: rotate(-18deg);
  width: 76px;
}

.hero-note {
  bottom: 7px;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 0.98rem;
  font-style: italic;
  left: -2px;
  letter-spacing: 0.02em;
  position: absolute;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--olive-dark);
  font-size: clamp(2.9rem, 12.5vw, 6.3rem);
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 900px;
}

.hero-description {
  color: var(--brown);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 670px;
}

.hero-actions {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-strip {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  position: relative;
  z-index: 1;
}

.trust-strip > span {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 9px;
}

.trust-strip svg {
  color: var(--olive);
  width: 17px;
}

.trust-person {
  border: 1.5px solid var(--olive);
  border-radius: 50%;
  height: 15px;
  position: relative;
  width: 15px;
}

.trust-person::after {
  border: 1.5px solid var(--olive);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  bottom: -6px;
  content: "";
  height: 6px;
  left: -3px;
  position: absolute;
  width: 18px;
}

.about-section {
  background: var(--paper);
  padding: 92px 0;
}

.about-grid {
  display: grid;
  gap: 52px;
}

.portrait-wrap {
  margin-inline: auto;
  max-width: 440px;
  position: relative;
  width: 100%;
}

.portrait-frame {
  background: var(--olive-soft);
  border-radius: 48% 48% 16px 16px;
  overflow: hidden;
  padding: 10px;
  position: relative;
}

.portrait-frame::before {
  border: 1px solid rgba(255, 253, 248, 0.75);
  border-radius: inherit;
  content: "";
  inset: 18px;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.portrait-frame img {
  aspect-ratio: 4 / 5;
  border-radius: 46% 46% 10px 10px;
  height: auto;
  object-fit: cover;
  object-position: center 32%;
  width: 100%;
}

.portrait-caption {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  bottom: -25px;
  box-shadow: 0 14px 34px rgba(70, 52, 41, 0.1);
  color: var(--muted);
  display: flex;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  gap: 10px;
  left: 20px;
  margin: 0;
  padding: 13px 16px;
  position: absolute;
  right: 20px;
}

.portrait-caption span {
  color: var(--olive);
  font-size: 1.4rem;
}

.about-copy h2 {
  margin-bottom: 25px;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.about-copy .about-lead {
  color: var(--brown) !important;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45 !important;
}

.credentials-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  gap: 18px;
  margin: 28px 0;
  padding: 20px;
}

.credentials-title {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.credentials-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.credentials-card li {
  align-items: center;
  display: flex;
  font-size: 0.88rem;
  font-weight: 600;
  gap: 7px;
}

.credentials-card li svg {
  color: var(--olive);
  flex: 0 0 auto;
}

.credential-status {
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: 2px;
  text-transform: uppercase;
}

.about-cta {
  color: var(--olive-dark);
}

.themes-section {
  padding-bottom: 96px;
  padding-top: 96px;
}

.section-heading h2 {
  margin-bottom: 22px;
}

.section-heading > p:last-child {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  max-width: 700px;
}

.theme-grid {
  display: grid;
  gap: 14px;
  margin-top: 46px;
}

.theme-card {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 23px;
  position: relative;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.theme-card:hover {
  background: var(--paper);
  box-shadow: 0 15px 34px rgba(70, 52, 41, 0.08);
  transform: translateY(-2px);
}

.theme-number {
  color: var(--terracotta);
  display: block;
  font-family: var(--serif);
  font-size: 0.77rem;
  margin-bottom: 34px;
}

.theme-card h3 {
  color: var(--olive-dark);
  font-size: 1.32rem;
  margin-bottom: 10px;
}

.theme-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.themes-closing {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  text-align: center;
}

.themes-closing > span {
  color: var(--olive);
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.themes-closing p {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  line-height: 1.25;
  margin-bottom: 25px;
}

.process-section {
  background: var(--olive-surface);
  color: #f8f3e9;
  padding: 92px 0;
}

.process-grid {
  display: grid;
  gap: 52px;
}

.process-intro h2 {
  color: #fffaf0;
  margin-bottom: 20px;
}

.process-intro > p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.7);
  line-height: 1.75;
}

.first-session-card {
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.15);
  border-radius: 20px;
  display: flex;
  gap: 16px;
  margin-top: 36px;
  padding: 21px;
}

.first-session-icon {
  color: #d6b19d;
  flex: 0 0 auto;
  font-size: 2rem;
  line-height: 1;
}

.first-session-card h3 {
  color: #fffaf0;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.first-session-card p {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline::before {
  background: rgba(255, 253, 248, 0.17);
  bottom: 18px;
  content: "";
  left: 19px;
  position: absolute;
  top: 20px;
  width: 1px;
}

.timeline li {
  display: grid;
  gap: 18px;
  grid-template-columns: 40px 1fr;
  padding-bottom: 32px;
  position: relative;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline-number {
  align-items: center;
  background: var(--olive-surface);
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 50%;
  color: #dfc3b3;
  display: flex;
  font-family: var(--serif);
  height: 40px;
  justify-content: center;
  position: relative;
  width: 40px;
  z-index: 1;
}

.timeline h3 {
  color: #fffaf0;
  font-size: 1.24rem;
  margin: 5px 0 7px;
}

.timeline p {
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.faq-section {
  display: grid;
  gap: 36px;
  padding-bottom: 90px;
  padding-top: 90px;
}

.faq-heading h2 {
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-list summary {
  align-items: center;
  color: var(--olive-dark);
  cursor: pointer;
  display: flex;
  font-family: var(--serif);
  font-size: 1.08rem;
  justify-content: space-between;
  list-style: none;
  padding: 20px 0;
}

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

.faq-list summary > span:last-child {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  font-family: var(--sans);
  height: 29px;
  justify-content: center;
  margin-left: 14px;
  transition: transform 180ms ease, background 180ms ease;
  width: 29px;
}

.faq-list details[open] summary > span:last-child {
  background: var(--olive-surface);
  color: white;
  transform: rotate(45deg);
}

.faq-list summary .faq-question {
  border: 0;
  border-radius: 0;
  display: inline;
  flex: 1 1 auto;
  height: auto;
  justify-content: initial;
  margin: 0;
  width: auto;
}

body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

.wp-block-heading { color: var(--olive-dark); }
.legal-page-content a { color: var(--olive-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-page-content [data-locale-section][hidden] { display: none !important; }

.faq-list details p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.75;
  margin: -3px 40px 20px 0;
}

.booking-invite {
  background:
    radial-gradient(circle at 90% 15%, rgba(231, 203, 188, 0.19), transparent 32%),
    var(--terracotta);
  border-radius: 26px;
  color: var(--paper);
  display: grid;
  gap: 34px;
  margin-bottom: 80px;
  overflow: hidden;
  padding: 34px 27px;
  position: relative;
}

.booking-invite::after {
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 50%;
  content: "";
  height: 210px;
  position: absolute;
  right: -105px;
  top: -95px;
  width: 210px;
}

.booking-invite .eyebrow {
  color: #f1d7c8;
}

.booking-invite h2 {
  color: #fffaf2;
  font-size: clamp(2.05rem, 8vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 720px;
}

.booking-invite-copy > p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.79);
  line-height: 1.72;
  margin-bottom: 25px;
  max-width: 600px;
}

.booking-invite-details {
  border-top: 1px solid rgba(255, 253, 248, 0.23);
  display: grid;
  gap: 13px;
  padding-top: 25px;
}

.booking-invite-details span {
  align-items: center;
  color: rgba(255, 253, 248, 0.85);
  display: flex;
  font-size: 0.84rem;
  font-weight: 600;
  gap: 10px;
}

.site-footer {
  background: #263126;
  color: rgba(255, 253, 248, 0.76);
  padding: 64px 0 106px;
}

.footer-grid {
  display: grid;
  gap: 44px;
}

.footer-logo .brand-mark {
  border-color: #c68b6d;
  color: #d2a189;
}

.footer-logo .brand-mark::after {
  background: #a7ad8c;
  border-color: #263126;
}

.footer-logo .brand-text strong {
  color: #fffaf2;
  font-size: 1.2rem;
}

.footer-logo .brand-text small {
  color: #d2a189;
}

.footer-brand > p {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 24px 0 0;
  max-width: 320px;
}

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

.footer-column h3 {
  color: #fffaf2;
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button {
  align-items: center;
  background: none;
  border: 0;
  color: rgba(255, 253, 248, 0.75);
  cursor: pointer;
  display: flex;
  font-size: 0.88rem;
  justify-content: space-between;
  max-width: 250px;
  padding: 0;
  text-align: left;
  transition: color 150ms ease;
}

.footer-column a:hover,
.footer-column button:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  display: grid;
  gap: 8px;
  margin-top: 50px;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 0.7rem;
  margin: 0;
}

.sticky-mobile-cta {
  align-items: center;
  background: var(--olive-surface);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  bottom: 14px;
  box-shadow: 0 12px 32px rgba(38, 49, 38, 0.36);
  color: white;
  display: flex;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  left: 16px;
  min-height: 54px;
  position: fixed;
  right: 16px;
  z-index: 35;
}

.sticky-mobile-cta svg:last-child {
  margin-left: auto;
}

/* Booking application */
.booking-overlay,
.legal-overlay {
  align-items: center;
  background: rgba(31, 37, 29, 0.66);
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 100;
}

.booking-shell {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.booking-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.96);
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 44px 1fr 44px;
  min-height: 67px;
  padding: 7px 12px;
}

.booking-brand {
  align-items: center;
  color: var(--olive-dark);
  display: flex;
  font-family: var(--serif);
  font-size: 0.98rem;
  gap: 9px;
  justify-content: center;
}

.booking-brand-mark {
  font-size: 1rem;
  height: 29px;
  width: 29px;
}

.booking-brand-mark::after {
  border-width: 1px;
  height: 5px;
  width: 5px;
}

.step-count {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  justify-content: center;
}

.progress-track {
  background: var(--cream-deep);
  flex: 0 0 3px;
  height: 3px;
}

.progress-track span {
  background: var(--terracotta);
  display: block;
  height: 100%;
  transition: width 280ms ease;
}

.booking-content {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.booking-step {
  margin: 0 auto;
  max-width: 570px;
  min-height: 100%;
  padding: 30px 20px 42px;
}

.booking-heading {
  margin-bottom: 28px;
}

.booking-heading h2,
.confirmation-step h2,
.legal-card h2 {
  color: var(--olive-dark);
  font-size: clamp(2rem, 8.5vw, 3.1rem);
  line-height: 1.06;
  margin-bottom: 10px;
}

.booking-heading > p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.booking-heading > p:last-child span {
  color: var(--terracotta);
  padding-inline: 4px;
}

.date-scroller {
  display: flex;
  gap: 8px;
  margin: 0 -20px;
  overflow-x: auto;
  padding: 2px 20px 12px;
  scrollbar-width: none;
}

.date-scroller::-webkit-scrollbar {
  display: none;
}

.date-card {
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--muted);
  cursor: pointer;
  flex: 0 0 92px;
  min-height: 76px;
  padding: 11px 8px;
  transition: border 160ms ease, background 160ms ease, color 160ms ease;
}

.date-card span,
.date-card strong {
  display: block;
}

.date-card span {
  font-size: 0.67rem;
  margin-bottom: 4px;
}

.date-card strong {
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 600;
}

.date-card.selected {
  background: var(--olive-surface);
  border-color: var(--olive-surface);
  color: white;
}

.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 8px 0 25px;
}

.availability-legend > span {
  align-items: center;
  color: #857a70;
  display: flex;
  font-size: 0.63rem;
  gap: 5px;
}

.legend-dot {
  border: 1px solid var(--line);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.legend-dot.available {
  background: var(--paper);
  border-color: var(--olive);
}

.legend-dot.selected {
  background: var(--olive-surface);
  border-color: var(--olive-surface);
}

.legend-dot.unavailable {
  background: #dedbd3;
  border-color: #dedbd3;
}

.time-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 19px;
}

.time-panel-title {
  color: var(--olive-dark);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.time-grid {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, 1fr);
}

.time-button {
  background: var(--paper);
  border: 1px solid rgba(101, 112, 74, 0.23);
  border-radius: 11px;
  color: var(--olive-dark);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  min-height: 47px;
  transition: background 160ms ease, border 160ms ease, color 160ms ease;
}

.time-button:hover:not(:disabled) {
  border-color: var(--olive);
}

.time-button.selected {
  background: var(--olive-surface);
  border-color: var(--olive-surface);
  color: white;
}

.time-button:disabled {
  background: #eeeae3;
  border-color: transparent;
  color: #b2aca4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-empty {
  align-items: center;
  background: var(--cream);
  border: 1px dashed rgba(101, 112, 74, 0.28);
  border-radius: 18px;
  color: var(--olive);
  display: flex;
  flex-direction: column;
  min-height: 155px;
  justify-content: center;
  padding: 25px;
  text-align: center;
}

.calendar-empty p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 8px 0 0;
}

.prototype-hint {
  color: #948a7f;
  font-size: 0.66rem;
  font-style: italic;
  margin: 12px 0 24px;
  text-align: center;
}

.appointment-summary {
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  gap: 11px;
  grid-template-columns: 38px 1fr auto;
  margin-bottom: 25px;
  padding: 15px;
}

.summary-icon {
  align-items: center;
  background: var(--olive-soft);
  border-radius: 10px;
  color: var(--olive-dark);
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.appointment-summary div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.appointment-summary strong {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1.3;
}

.appointment-summary div span {
  color: var(--muted);
  font-size: 0.68rem;
}

.appointment-summary div i {
  color: var(--terracotta);
  font-style: normal;
  padding-inline: 3px;
}

.appointment-summary button {
  background: none;
  border: 0;
  color: var(--terracotta);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 1px;
}

.form-stack {
  display: grid;
  gap: 17px;
}

.field-label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-label > span,
.preference-fieldset legend,
.payment-methods legend {
  color: var(--olive-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.field-label input {
  background: var(--paper);
  border: 1px solid rgba(70, 52, 41, 0.19);
  border-radius: 12px;
  color: var(--brown);
  min-height: 50px;
  outline: 0;
  padding: 0 14px;
  transition: border 150ms ease, box-shadow 150ms ease;
}

.field-label input::placeholder {
  color: #aaa196;
  font-size: 0.83rem;
}

.field-label input:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(101, 112, 74, 0.1);
}

.field-label input[aria-invalid="true"] {
  border-color: #ac5a50;
}

.field-error {
  color: #9b473f;
  font-size: 0.67rem;
}

.preference-fieldset,
.payment-methods {
  border: 0;
  margin: 24px 0;
  padding: 0;
}

.preference-fieldset legend,
.payment-methods legend {
  margin-bottom: 10px;
}

.segmented-control {
  background: var(--cream);
  border-radius: 13px;
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
}

.segmented-control label {
  align-items: center;
  border-radius: 10px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 7px;
  justify-content: center;
  min-height: 43px;
}

.segmented-control label.selected {
  background: var(--paper);
  box-shadow: 0 4px 12px rgba(70, 52, 41, 0.08);
  color: var(--olive-dark);
}

.segmented-control input,
.payment-methods input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consent-row {
  align-items: flex-start;
  color: var(--muted);
  display: flex;
  font-size: 0.72rem;
  gap: 10px;
  line-height: 1.55;
  margin: 4px 0 5px;
}

.consent-row input {
  accent-color: var(--olive-surface);
  flex: 0 0 auto;
  height: 18px;
  margin: 1px 0 0;
  width: 18px;
}

.consent-error {
  display: block;
  margin-bottom: 8px;
}

.inline-policy {
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
}

.inline-policy summary {
  color: var(--olive-dark);
  cursor: pointer;
  font-weight: 700;
  padding: 11px 0;
}

.inline-policy p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 12px;
}

.booking-step .full-button {
  margin-top: 24px;
}

.payment-summary-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 17px;
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr auto;
  margin-bottom: 25px;
  padding: 18px;
}

.payment-summary-card > div {
  display: flex;
  flex-direction: column;
}

.payment-summary-card span {
  color: var(--muted);
  font-size: 0.68rem;
}

.payment-summary-card strong {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 0.98rem;
}

.price-block {
  text-align: right;
}

.payment-summary-card > p {
  border-top: 1px solid var(--line);
  color: #91877c;
  font-size: 0.64rem;
  font-style: italic;
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 12px;
}

.payment-methods {
  display: grid;
  gap: 9px;
}

.payment-methods legend {
  grid-column: 1 / -1;
}

.payment-methods label {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: 18px 1fr auto;
  min-height: 66px;
  padding: 11px 14px;
}

.payment-methods label.selected {
  background: rgba(223, 226, 208, 0.33);
  border-color: var(--olive);
}

.payment-radio {
  border: 1.5px solid #a5a098;
  border-radius: 50%;
  height: 17px;
  position: relative;
  width: 17px;
}

.payment-methods label.selected .payment-radio {
  border-color: var(--olive-surface);
}

.payment-methods label.selected .payment-radio::after {
  background: var(--olive-surface);
  border-radius: 50%;
  content: "";
  inset: 3px;
  position: absolute;
}

.payment-methods label > span:nth-child(3) {
  display: flex;
  flex-direction: column;
}

.payment-methods strong {
  color: var(--olive-dark);
  font-size: 0.78rem;
}

.payment-methods small {
  color: var(--muted);
  font-size: 0.62rem;
  margin-top: 2px;
}

.payment-methods b {
  color: var(--olive-dark);
  font-size: 0.67rem;
  letter-spacing: -0.03em;
}

.card-glyph {
  border: 1.5px solid var(--olive-surface);
  border-radius: 3px;
  height: 15px;
  position: relative;
  width: 23px;
}

.card-glyph::after {
  background: var(--olive-surface);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 3px;
}

.pix-demo,
.secure-payment-note {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  gap: 17px;
  padding: 16px;
}

.mock-qr {
  align-items: center;
  background:
    linear-gradient(90deg, var(--olive-surface) 10%, transparent 10% 20%, var(--olive-surface) 20% 30%, transparent 30% 40%, var(--olive-surface) 40% 58%, transparent 58% 72%, var(--olive-surface) 72% 84%, transparent 84%),
    linear-gradient(var(--olive-surface) 11%, transparent 11% 25%, var(--olive-surface) 25% 37%, transparent 37% 55%, var(--olive-surface) 55% 67%, transparent 67% 83%, var(--olive-surface) 83%);
  border: 7px solid white;
  box-shadow: 0 3px 12px rgba(70, 52, 41, 0.1);
  display: flex;
  flex: 0 0 auto;
  height: 84px;
  justify-content: center;
  width: 84px;
}

.mock-qr span {
  background: white;
  color: var(--olive-dark);
  font-size: 0.55rem;
  font-weight: 800;
  padding: 4px;
}

.pix-demo strong {
  color: var(--olive-dark);
  font-size: 0.78rem;
}

.pix-demo p {
  color: var(--muted);
  font-size: 0.65rem;
  margin: 3px 0 8px;
}

.pix-demo button {
  background: transparent;
  border: 0;
  color: var(--terracotta);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0;
}

.secure-payment-note {
  color: var(--olive);
}

.secure-payment-note p {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.6;
  margin: 0;
}

.secure-caption {
  align-items: center;
  color: #948a7f;
  display: flex;
  font-size: 0.63rem;
  gap: 6px;
  justify-content: center;
  margin: 11px 0 0;
}

.spinner {
  animation: spin 800ms linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  border-top-color: white;
  height: 18px;
  width: 18px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.confirmation-step {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 38px;
  text-align: center;
}

.success-mark {
  align-items: center;
  background: var(--olive-soft);
  border: 1px solid rgba(101, 112, 74, 0.18);
  border-radius: 50%;
  color: var(--olive-dark);
  display: flex;
  height: 78px;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  width: 78px;
}

.success-mark::after {
  border: 1px solid var(--terracotta-soft);
  border-radius: 50%;
  content: "";
  inset: -8px;
  position: absolute;
}

.confirmation-step h2 {
  margin-bottom: 20px;
}

.confirmation-date {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
  padding: 16px 10px;
  width: 100%;
}

.confirmation-date strong {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1rem;
}

.confirmation-date span {
  color: var(--muted);
  font-size: 0.78rem;
}

.confirmation-copy {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
  max-width: 390px;
}

.confirmation-actions {
  width: 100%;
}

.confirmation-actions .full-button {
  margin-top: 10px;
}

.text-button,
.close-confirmation {
  background: none;
  border: 0;
  color: var(--terracotta);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 18px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.signature {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.88rem;
  margin: 34px 0 0;
}

.signature em {
  color: var(--olive-dark);
  font-size: 1.8rem;
}

.close-confirmation {
  color: var(--muted);
  font-weight: 500;
  margin-top: 12px;
}

.inline-success {
  align-items: center;
  background: rgba(223, 226, 208, 0.5);
  border-radius: 999px;
  color: var(--olive-dark);
  display: flex;
  font-size: 0.67rem;
  gap: 5px;
  margin: 0 0 4px;
  padding: 7px 12px;
}

/* Legal prototype panels */
.legal-overlay {
  padding: 18px;
}

.legal-card {
  background: var(--paper);
  border-radius: 22px;
  box-shadow: var(--shadow);
  max-width: 520px;
  padding: 30px 23px 24px;
  position: relative;
  width: 100%;
}

.legal-close {
  position: absolute;
  right: 10px;
  top: 10px;
}

.legal-card h2 {
  padding-right: 30px;
}

.legal-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.legal-card .primary-button {
  margin-top: 8px;
  width: 100%;
}

@media (min-width: 620px) {
  .section-shell {
    width: min(100% - 56px, 1180px);
  }

  .hero {
    padding-top: 58px;
  }

  .hero-art {
    height: 205px;
    width: 320px;
  }

  .hero-botanical {
    height: 122px;
    width: 98px;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    gap: 24px;
  }

  .trust-strip {
    grid-template-columns: repeat(3, max-content);
    gap: 30px;
  }

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

  .theme-card {
    min-height: 230px;
  }

  .footer-grid {
    grid-template-columns: 1.7fr 1fr 1fr;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
  }

  .booking-shell {
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(31, 37, 29, 0.26);
    height: min(860px, calc(100% - 42px));
    width: min(620px, calc(100% - 36px));
  }

  .booking-step {
    padding-inline: 40px;
  }

  .date-scroller {
    margin-inline: 0;
    padding-inline: 0;
  }

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

@media (min-width: 880px) {
  .header-inner {
    height: 82px;
  }

  .site-header {
    position: sticky;
  }

  .mobile-menu-button,
  .mobile-nav {
    display: none;
  }

  .desktop-nav {
    align-items: center;
    display: flex;
    gap: clamp(18px, 2.5vw, 34px);
  }

  .header-tools {
    gap: 10px;
  }

  .desktop-nav a {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    position: relative;
  }

  .desktop-nav a::after {
    background: var(--terracotta);
    bottom: -6px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
    width: 100%;
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
  }

  .header-cta {
    background: var(--olive-surface);
    color: white;
    display: inline-flex;
    min-height: 44px;
    padding-inline: 19px;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
    grid-template-rows: 1fr auto;
    min-height: calc(100svh - 82px);
    padding-bottom: 32px;
    padding-top: clamp(70px, 9vh, 110px);
  }

  .hero-copy {
    align-self: start;
    grid-column: 1;
    grid-row: 1;
  }

  .hero-art {
    align-self: center;
    grid-column: 2;
    grid-row: 1;
    height: min(34vw, 430px);
    margin: -60px 0 0 auto;
    width: min(34vw, 430px);
  }

  .hero-note {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 7.4vw, 6.5rem);
    max-width: 820px;
  }

  .hero-description {
    font-size: 1.03rem;
    max-width: 610px;
  }

  .trust-strip {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 58px;
  }

  .about-section {
    padding: 130px 0;
  }

  .about-grid {
    align-items: center;
    gap: clamp(70px, 10vw, 150px);
    grid-template-columns: minmax(300px, 0.84fr) minmax(380px, 1.16fr);
  }

  .portrait-caption {
    left: 34px;
    right: -36px;
  }

  .about-copy .about-lead {
    font-size: 1.55rem;
  }

  .centered-heading {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .themes-section {
    padding-bottom: 130px;
    padding-top: 130px;
  }

  .theme-grid {
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
  }

  .theme-card {
    min-height: 250px;
    padding: 28px;
  }

  .themes-closing {
    margin-top: 72px;
  }

  .process-section {
    padding: 130px 0;
  }

  .process-grid {
    align-items: start;
    gap: clamp(70px, 10vw, 150px);
    grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1.1fr);
  }

  .process-intro {
    position: sticky;
    top: 130px;
  }

  .timeline li {
    padding-bottom: 46px;
  }

  .timeline h3 {
    font-size: 1.4rem;
  }

  .faq-section {
    gap: 90px;
    grid-template-columns: 0.7fr 1.3fr;
    padding-bottom: 130px;
    padding-top: 130px;
  }

  .booking-invite {
    align-items: end;
    border-radius: 36px;
    grid-template-columns: 1.25fr 0.75fr;
    margin-bottom: 110px;
    padding: 62px 68px;
  }

  .booking-invite-details {
    border-left: 1px solid rgba(255, 253, 248, 0.23);
    border-top: 0;
    padding: 15px 0 15px 42px;
  }

  .site-footer {
    padding-bottom: 38px;
    padding-top: 82px;
  }

  .sticky-mobile-cta {
    display: none;
  }
}

@media (min-width: 1100px) {
  .brand-text strong {
    font-size: 1.08rem;
  }

  .brand-text small {
    font-size: 0.59rem;
  }
}

@media (max-width: 365px) {
  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text small {
    font-size: 0.51rem;
  }

  .date-card { flex-basis: 82px; }

  .booking-step {
    padding-inline: 17px;
  }
}

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

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

/* Operational booking states */
.operational-hint {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
  margin: 18px 0;
  text-align: center;
}

.booking-state-error {
  background: #fff7f3;
  border: 1px solid rgba(168, 102, 71, 0.24);
  border-radius: 16px;
  color: #82533f;
  margin: 18px 0;
  padding: 16px;
}

.booking-state-error p { margin: 0; }

.booking-state-error button,
.booking-state-error a {
  background: transparent;
  border: 0;
  color: var(--terracotta);
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  margin-top: 10px;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.appointment-summary b {
  color: var(--terracotta);
  display: block;
  font-size: 0.83rem;
  margin-top: 5px;
}

.consent-row a {
  color: var(--olive-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.payment-summary-card small {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  margin-top: 5px;
}

.real-pix-panel {
  align-items: center;
  background: rgba(223, 226, 208, 0.34);
  border: 1px solid rgba(101, 112, 74, 0.22);
  border-radius: 18px;
  display: grid;
  gap: 18px;
  grid-template-columns: 112px 1fr;
  margin: 20px 0;
  padding: 16px;
}

.real-pix-panel img,
.pix-qr-placeholder {
  background: white;
  border-radius: 10px;
  height: 112px;
  object-fit: contain;
  padding: 7px;
  width: 112px;
}

.pix-qr-placeholder {
  align-items: center;
  color: var(--olive-surface);
  display: flex;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.12em;
}

.real-pix-panel strong {
  color: var(--olive-dark);
  display: block;
  font-family: var(--serif);
}

.real-pix-panel p {
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.5;
  margin: 4px 0 9px;
}

.real-pix-panel button {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--olive-dark);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.73rem;
  font-weight: 700;
  gap: 6px;
  min-height: 38px;
  padding: 0 12px;
}

.payment-fallback {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin: 20px 0;
  padding: 18px;
}

.payment-fallback > strong {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.payment-fallback > p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
  margin: 7px 0 15px;
}

.payment-status-box {
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  gap: 12px;
  margin: 18px 0;
  padding: 15px;
}

.payment-status-dot {
  background: #d29b64;
  border-radius: 50%;
  flex: 0 0 auto;
  height: 10px;
  margin-top: 7px;
  width: 10px;
}

.payment-status-dot.paid { background: #6f865c; }
.payment-status-dot.failed,
.payment-status-dot.refunded { background: #af625a; }

.payment-status-box strong {
  color: var(--olive-dark);
  display: block;
  font-size: 0.88rem;
}

.payment-status-box p {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 4px 0 0;
}

.success-mark.pending {
  background: var(--terracotta-soft);
  color: var(--terracotta);
}

.spinner.dark {
  border-color: rgba(101, 112, 74, 0.28);
  border-top-color: var(--olive-dark);
  height: 22px;
  width: 22px;
}

/* Legal pages */
.legal-page {
  min-height: 100svh;
  padding: 0 18px 56px;
}

.legal-page-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 900px;
  min-height: 78px;
}

.legal-back-link {
  color: var(--olive-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.legal-header-tools {
  align-items: center;
  display: flex;
  gap: 14px;
}

@media (max-width: 520px) {
  .legal-back-link {
    display: none;
  }

  .legal-page-header .brand-text small {
    display: none;
  }
}

.legal-page-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin: 28px auto 0;
  max-width: 820px;
  padding: 28px 22px;
}

.legal-page-card h1 {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 9vw, 4.25rem);
  font-weight: 500;
  line-height: 1.02;
  margin: 0 0 28px;
}

.legal-page-content { color: var(--brown); }

.legal-page-content h2 {
  color: var(--olive-dark);
  font-size: 1.45rem;
  margin: 34px 0 12px;
}

.legal-page-content p,
.legal-page-content li { line-height: 1.8; }
.legal-page-content ul { padding-left: 22px; }

.legal-placeholder {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.legal-placeholder strong { color: var(--terracotta); }
.legal-placeholder p { margin: 8px 0 0; }
.preserve-lines { white-space: pre-line; }

/* Private admin */
.admin-app,
.admin-gate {
  background: #f3efe6;
  color: var(--brown);
  min-height: 100svh;
}

.admin-gate {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 22px;
}

.admin-gate-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  max-width: 560px;
  padding: 28px;
  width: 100%;
}

.admin-gate-card h1 {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 36px 0 18px;
}

.admin-gate-card p { color: var(--muted); line-height: 1.7; }

.admin-gate-actions {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.admin-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 18px;
  position: sticky;
  top: 0;
  z-index: 30;
}

.admin-brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.admin-brand > span:last-child { display: flex; flex-direction: column; }

.admin-brand strong {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.05;
}

.admin-brand small {
  color: var(--terracotta);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 4px;
  text-transform: uppercase;
}

.admin-user {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.admin-user span { display: none; font-size: 0.73rem; }
.admin-user a { color: var(--terracotta); font-size: 0.74rem; font-weight: 700; }
.admin-layout { margin: 0 auto; max-width: 1240px; }

.admin-tabs {
  background: #f3efe6;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 5px;
  overflow-x: auto;
  padding: 12px 16px;
  position: sticky;
  top: 72px;
  z-index: 20;
}

.admin-tabs button,
.admin-filters button {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 0.76rem;
  font-weight: 700;
  min-height: 38px;
  padding: 0 14px;
}

.admin-tabs button.active,
.admin-filters button.active { background: var(--olive-surface); color: white; }
.admin-content { padding: 24px 16px 70px; }

.admin-title-row {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.admin-title-row p {
  color: var(--terracotta);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.admin-title-row h1 {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.admin-title-row > button {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--olive-dark);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 700;
  min-height: 40px;
  padding: 0 15px;
}

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

.admin-summary article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  min-height: 118px;
  padding: 15px;
}

.admin-summary span { color: var(--muted); font-size: 0.7rem; line-height: 1.35; }

.admin-summary strong {
  align-self: end;
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 500;
  line-height: 1;
}

.admin-summary small { color: var(--muted); font-size: 0.65rem; }

.admin-filters {
  display: flex;
  gap: 5px;
  margin: 24px -16px 14px;
  overflow-x: auto;
  padding: 0 16px 5px;
}

.booking-admin-list { display: grid; gap: 10px; }

.booking-admin-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 17px;
  overflow: hidden;
}

.booking-admin-summary {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  gap: 11px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 15px;
  text-align: left;
  width: 100%;
}

.booking-time {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.booking-admin-summary strong,
.booking-admin-summary small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-admin-summary strong { color: var(--brown); font-size: 0.86rem; }
.booking-admin-summary small { color: var(--muted); font-size: 0.68rem; margin-top: 2px; }

.status-pill {
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  grid-column: 1 / -1;
  justify-self: start;
  padding: 5px 9px;
}

.status-pill.confirmed { background: #e4ecdc; color: #587047; }
.status-pill.pending_payment { background: #f3e5d7; color: #95633f; }
.status-pill.cancelled { background: #eee9e4; color: #857a70; }

.booking-admin-detail { border-top: 1px solid var(--line); padding: 17px; }
.booking-admin-detail dl { display: grid; gap: 13px; margin: 0; }
.booking-admin-detail dl div { min-width: 0; }

.booking-admin-detail dt {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-admin-detail dd {
  color: var(--brown);
  font-size: 0.78rem;
  margin: 2px 0 0;
  overflow-wrap: anywhere;
}

.booking-admin-actions { display: grid; gap: 8px; margin-top: 20px; }

.booking-admin-actions a,
.booking-admin-actions button,
.admin-save-button,
.block-form button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--olive-dark);
  cursor: pointer;
  display: flex;
  font-size: 0.77rem;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 0 13px;
}

.booking-admin-actions .admin-primary-link,
.admin-save-button,
.block-form button { background: var(--olive-surface); color: white; }
.booking-admin-actions .danger { border-color: rgba(172, 90, 80, 0.28); color: #9b473f; }

.admin-empty,
.admin-intro { color: var(--muted); font-size: 0.84rem; line-height: 1.65; }

.admin-empty {
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 34px 18px;
  text-align: center;
}

.admin-warning-list { display: grid; gap: 7px; margin-bottom: 20px; }

.admin-warning-list p {
  background: #fff7ed;
  border: 1px solid #ead5bc;
  border-radius: 11px;
  color: #8d633e;
  font-size: 0.74rem;
  margin: 0;
  padding: 10px 12px;
}

.admin-notice {
  align-items: center;
  border-radius: 11px;
  display: flex;
  font-size: 0.76rem;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 10px 12px;
}

.admin-notice.success { background: #e7eedf; color: #5c724b; }
.admin-notice.error { background: #f7e5e1; color: #934f47; }
.admin-notice button { background: none; border: 0; color: inherit; cursor: pointer; font-size: 1.2rem; }

.availability-editor,
.settings-form { display: grid; gap: 11px; margin: 22px 0; }

.availability-row {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 15px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 15px;
}

.day-toggle {
  align-items: center;
  display: flex;
  font-size: 0.84rem;
  font-weight: 700;
  gap: 9px;
  grid-column: 1 / -1;
}

.day-toggle input { accent-color: var(--olive-surface); height: 18px; width: 18px; }

.availability-row > label:not(.day-toggle),
.block-form label,
.settings-form > label { display: flex; flex-direction: column; gap: 5px; }

.availability-row label > span,
.block-form label > span,
.settings-form label > span { color: var(--muted); font-size: 0.66rem; font-weight: 700; }

.availability-row input[type="time"],
.block-form input,
.block-form select,
.settings-form input,
.settings-form textarea,
.settings-form select {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--brown);
  min-height: 44px;
  min-width: 0;
  padding: 9px 11px;
  width: 100%;
}

.availability-row input:disabled { background: #ece9e2; color: #aaa196; }
.admin-save-button { margin-top: 12px; width: 100%; }
.admin-subsection { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 28px; }

.admin-subsection h2,
.integration-grid h2 { color: var(--olive-dark); font-size: 1.55rem; margin-bottom: 15px; }

.block-form { display: grid; gap: 10px; }
.block-list { display: grid; gap: 7px; margin-top: 15px; }

.block-list > div {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 11px;
  display: flex;
  font-size: 0.75rem;
  justify-content: space-between;
  padding: 10px 12px;
}

.block-list button { background: transparent; border: 0; color: var(--terracotta); cursor: pointer; font-size: 0.72rem; font-weight: 700; }
.block-list p { color: var(--muted); font-size: 0.78rem; }

.settings-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 17px;
}

.settings-form > label { margin-bottom: 7px; }
.settings-form label > span { color: var(--brown); font-size: 0.76rem; }
.settings-form small { color: var(--muted); font-size: 0.65rem; line-height: 1.45; }
.settings-form textarea { min-height: 130px; resize: vertical; }

.settings-subsection {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}

.settings-subsection .admin-intro,
.settings-subsection h2 {
  margin: 0;
}

.settings-subsection > label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.currency-input,
.inline-number {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  overflow: hidden;
}

.currency-input b,
.inline-number b { color: var(--olive-dark); font-size: 0.75rem; padding-left: 12px; }
.currency-input input,
.inline-number input { border: 0; }
.inline-number b { padding-left: 0; padding-right: 12px; }

.integration-grid { display: grid; gap: 12px; }

.integration-grid article,
.integration-boundary {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 18px;
}

.integration-grid article > div:first-child { align-items: flex-start; display: flex; justify-content: space-between; }
.integration-grid h2 { margin: 0; }
.integration-grid article p { color: var(--muted); font-size: 0.76rem; line-height: 1.6; }

.integration-grid article > div > span {
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 5px 8px;
}

.integration-grid .connected { background: #e4ecdc; color: #587047; }
.integration-grid .not-connected { background: #eee9e4; color: #857a70; }

.integration-grid article button {
  background: #ece9e2;
  border: 0;
  border-radius: 10px;
  color: #9a9289;
  min-height: 42px;
  padding: 0 13px;
}

.integration-grid article small { color: var(--muted); display: block; font-size: 0.63rem; margin-top: 9px; }
.integration-warning { background: #fff7ed; border-radius: 9px; color: #8d633e; font-size: 0.72rem; padding: 9px 10px; }

.integration-boundary {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
  margin-top: 14px;
}

.integration-boundary strong { color: var(--olive-dark); display: block; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; }
.integration-boundary p { margin: 5px 0 16px; }

@media (min-width: 760px) {
  .legal-page-card { padding: 52px 58px; }
  .admin-user span { display: block; }
  .admin-content { padding-left: 28px; padding-right: 28px; }
  .admin-summary { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .booking-admin-summary { grid-template-columns: 76px minmax(0, 1fr) auto; }
  .status-pill { grid-column: auto; }
  .booking-admin-detail dl { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .booking-admin-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .availability-row { align-items: end; grid-template-columns: minmax(200px, 1fr) 160px 160px; }
  .day-toggle { grid-column: auto; min-height: 44px; }
  .block-form { align-items: end; grid-template-columns: 1fr 1fr auto; }
  .block-form button { min-width: 130px; }
  .integration-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 980px) {
  .admin-layout { display: grid; grid-template-columns: 210px minmax(0, 1fr); }
  .admin-tabs {
    align-content: start;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    display: grid;
    min-height: calc(100svh - 72px);
    overflow: visible;
    padding: 24px 16px;
  }
  .admin-tabs button { justify-content: flex-start; text-align: left; width: 100%; }
  .admin-content { max-width: 1000px; padding: 40px 38px 80px; }
}
