:root {
  --ink: #171512;
  --ink-soft: #3f3a33;
  --muted: #756f66;
  --line: #e5dccf;
  --paper: #fffdf8;
  --ivory: #f7f1e7;
  --surface: #fbf6ed;
  --surface-strong: #efe5d6;
  --cobalt: #214fd2;
  --cobalt-dark: #173894;
  --copper: #b9783b;
  --copper-soft: #ead2b7;
  --green: #4c8b67;
  --amber: #d79d46;
  --shadow: 0 24px 70px rgba(45, 35, 23, 0.13);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  margin-inline: auto;
  width: var(--container);
}

.skip-link {
  background: var(--ink);
  color: #fff;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-150%);
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 50%;
  padding: 18px 0;
  position: fixed;
  top: 0;
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
  width: var(--container);
  z-index: 50;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(229, 220, 207, 0.86);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  margin-top: 12px;
  padding: 10px 12px;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 760;
  gap: 0.7rem;
  min-width: max-content;
}

.site-header.is-scrolled .brand {
  color: var(--ink);
}

.brand__mark {
  align-items: center;
  background: var(--ink);
  border-radius: 7px;
  color: var(--paper);
  display: inline-flex;
  font-size: 0.82rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.brand__initials {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-header.is-scrolled .brand__mark {
  background: var(--ink);
  color: var(--paper);
}

.brand__stack {
  display: grid;
  line-height: 1.05;
}

.brand__text {
  letter-spacing: 0;
}

.brand__meta {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  margin-top: 0.18rem;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: 0.94rem;
  font-weight: 690;
  gap: 0.35rem;
}

.site-header.is-scrolled .site-nav {
  color: var(--ink-soft);
}

.site-nav a {
  border-radius: 999px;
  padding: 0.68rem 0.9rem;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(185, 120, 59, 0.13);
  color: var(--ink);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  background: var(--surface);
  color: var(--ink);
}

.site-nav .nav-cta {
  background: var(--cobalt);
  color: #fff;
  margin-left: 0.35rem;
}

.site-header.is-scrolled .site-nav .nav-cta {
  background: var(--cobalt);
  color: #fff;
}

.nav-toggle {
  background: rgba(23, 21, 18, 0.06);
  border: 1px solid rgba(23, 21, 18, 0.18);
  border-radius: 999px;
  display: none;
  height: 44px;
  place-items: center;
  position: relative;
  width: 44px;
}

.site-header.is-scrolled .nav-toggle {
  background: var(--surface);
  border-color: var(--line);
}

.nav-toggle__bar {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 180ms ease;
  width: 18px;
}

.site-header.is-scrolled .nav-toggle__bar {
  background: var(--ink);
}

.nav-toggle__bar:first-child {
  transform: translateY(-4px);
}

.nav-toggle__bar:nth-child(2) {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  transform: rotate(-45deg);
}

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 84% 16%, rgba(185, 120, 59, 0.14), transparent 28%),
    linear-gradient(135deg, var(--paper) 0%, var(--ivory) 100%);
  display: grid;
  min-height: 84svh;
  overflow: hidden;
  position: relative;
}

.hero__grid {
  inset: 0;
  position: absolute;
}

.hero__grid {
  background-image:
    linear-gradient(rgba(23, 21, 18, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 18, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
}

.hero__layout {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(510px, 0.94fr) minmax(440px, 1.06fr);
  padding: 112px 0 44px;
  position: relative;
  z-index: 1;
}

.hero__content {
  color: var(--ink);
  padding: 0;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero h1,
.legal-hero h1 {
  font-size: clamp(2.45rem, 4.95vw, 4.08rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
  max-width: 930px;
}

.hero__lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.75vw, 1.18rem);
  margin: 1.25rem 0 0;
  max-width: 720px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.55rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.15rem;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--cobalt);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--cobalt-dark);
}

.button--ghost {
  border-color: rgba(23, 21, 18, 0.18);
  color: var(--ink);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(23, 21, 18, 0.05);
}

.hero__proof {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2rem 0 0;
  max-width: 800px;
}

.hero__proof div {
  border-top: 1px solid var(--line);
  padding: 0.75rem 1rem 0 0;
}

.hero__proof dt {
  color: var(--cobalt);
  font-size: 0.95rem;
  font-weight: 820;
}

.hero__proof dd {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.25rem 0 0;
}

.hero-console {
  background: #fff;
  border: 1px solid rgba(23, 21, 18, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-console__top {
  align-items: center;
  background: #f5efe6;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 0.42rem;
  height: 32px;
  padding: 0 0.9rem;
}

.hero-console__top span {
  border-radius: 999px;
  display: block;
  height: 9px;
  width: 9px;
}

.hero-console__top span:first-child {
  background: #e56a61;
}

.hero-console__top span:nth-child(2) {
  background: #ddb449;
}

.hero-console__top span:nth-child(3) {
  background: #72ad73;
}

.hero-console img {
  aspect-ratio: 2048 / 1039;
  object-fit: cover;
  width: 100%;
}

.hero-console__stats {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-console__stats span {
  color: var(--muted);
  font-size: 0.82rem;
  padding: 0.78rem 0.85rem;
}

.hero-console__stats span + span {
  border-left: 1px solid var(--line);
}

.hero-console__stats strong {
  color: var(--ink);
  display: block;
  font-size: 0.9rem;
}

.signal-strip {
  align-items: center;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  padding: 1rem 1.25rem;
}

.signal-strip span {
  background: rgba(255, 253, 248, 0.07);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.9rem;
  font-weight: 740;
  padding: 0.5rem 0.75rem;
}

.section {
  padding: clamp(70px, 8vw, 120px) 0;
  scroll-margin-top: 96px;
}

.section--light {
  background: var(--surface);
}

.section--carousel {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--surface) 100%);
}

.section--soft {
  background: linear-gradient(180deg, #fff 0%, var(--surface-strong) 100%);
}

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

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

.section-heading h2,
.split__copy h2,
.booking__intro h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.55rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.consult-carousel {
  align-items: stretch;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #fff;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  margin-bottom: 1rem;
  min-height: 430px;
  overflow: hidden;
}

.consult-carousel__media {
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.consult-carousel__media::after {
  background: linear-gradient(90deg, transparent 52%, rgba(23, 21, 18, 0.38) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.consult-carousel__media img {
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 480ms ease;
  width: 100%;
}

.consult-carousel__content {
  align-content: center;
  background:
    linear-gradient(135deg, rgba(33, 79, 210, 0.22), transparent 42%),
    var(--ink);
  display: grid;
  padding: clamp(2rem, 5vw, 4.5rem);
  position: relative;
}

.consult-carousel__content::before {
  background: var(--copper);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}

.consult-carousel__kicker {
  color: var(--copper-soft);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.consult-carousel h3 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.consult-carousel p {
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.05rem;
  margin: 1rem 0 0;
  max-width: 520px;
}

.consult-carousel__controls {
  display: flex;
  gap: 0.55rem;
  margin-top: 2rem;
}

.consult-carousel__controls button {
  background: rgba(255, 253, 248, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 10px;
  padding: 0;
  transition: background 180ms ease, width 180ms ease;
  width: 10px;
}

.consult-carousel__controls button.is-active {
  background: var(--copper);
  width: 34px;
}

.section-heading p,
.split__copy p,
.booking__intro p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 1rem auto 0;
}

.section-heading--left p {
  margin-left: 0;
}

.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1rem;
}

.service-card {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 260px;
  padding: 1.45rem;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(185, 120, 59, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card__index {
  color: var(--cobalt);
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 850;
  margin-bottom: 4rem;
}

.service-card h3,
.timeline-item h3 {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.18;
  margin: 0 0 0.8rem;
}

.service-card p,
.timeline-item p {
  color: var(--muted);
  margin: 0;
}

.method-layout {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: 0.86fr 1.14fr;
}

.section--method {
  background:
    linear-gradient(rgba(23, 21, 18, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 18, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.process-grid {
  counter-reset: process;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 300px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.process-step::after {
  background: var(--copper);
  content: "";
  height: 4px;
  left: 1.5rem;
  position: absolute;
  right: 1.5rem;
  top: 0;
}

.process-step__number {
  color: rgba(23, 21, 18, 0.14);
  display: block;
  font-size: clamp(3.6rem, 7vw, 5.2rem);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 0.8;
  margin-bottom: 4rem;
}

.process-step h3 {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.process-step p {
  color: var(--muted);
  margin: 0;
}

.timeline {
  border-left: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  padding-left: 1.35rem;
}

.timeline-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  position: relative;
}

.timeline-item::before {
  background: var(--copper);
  border: 4px solid #fff;
  border-radius: 999px;
  content: "";
  height: 14px;
  left: calc(-1.35rem - 8px);
  position: absolute;
  top: 1.55rem;
  width: 14px;
}

.timeline-item__number {
  align-items: center;
  background: rgba(185, 120, 59, 0.14);
  border-radius: 999px;
  color: var(--copper);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 860;
  height: 30px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 30px;
}

.section--split {
  overflow: hidden;
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 7vw, 5.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split__copy {
  max-width: 560px;
}

.split__copy p {
  margin-left: 0;
}

.split__media {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0;
  overflow: hidden;
}

.split__media img {
  aspect-ratio: 1.18;
  object-fit: cover;
  width: 100%;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  margin: 1.55rem 0 0;
  padding: 0;
}

.check-list li {
  color: var(--ink-soft);
  font-weight: 650;
  padding-left: 1.75rem;
  position: relative;
}

.check-list li::before {
  background: var(--copper);
  border-radius: 999px;
  content: "";
  height: 0.58rem;
  left: 0;
  position: absolute;
  top: 0.47rem;
  width: 0.58rem;
}

.compact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.55rem;
}

.compact-points span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 740;
  padding: 0.55rem 0.78rem;
}

.section--booking {
  background:
    linear-gradient(180deg, rgba(23, 21, 18, 0.94), rgba(23, 21, 18, 0.98)),
    url("../assets/site/dashboard-demo.png") center / cover;
  color: #fff;
}

.booking {
  display: grid;
  gap: 1.25rem;
}

.booking__intro {
  margin: 0 auto 1rem;
  max-width: 820px;
  text-align: center;
}

.booking__intro h2 {
  color: #fff;
}

.booking__intro p {
  color: rgba(255, 255, 255, 0.72);
}

.booking-panel {
  background: #fff;
  border: 1px solid rgba(234, 210, 183, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.booking-panel--native {
  color: var(--ink);
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.15rem, 3vw, 2rem);
}

.booking-panel__header {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: 1.15rem;
}

.booking-panel__header h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
  margin: 0;
}

.booking-panel__price {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 800;
  margin: 0;
  padding: 0.48rem 0.7rem;
  white-space: nowrap;
}

.booking-panel__label {
  color: var(--copper);
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.booking-form {
  display: grid;
  gap: 1.15rem;
}

.booking-form > .button {
  justify-self: start;
}

.slot-picker {
  border: 0;
  margin: 0;
  padding: 0;
}

.slot-picker legend {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  margin-bottom: 0.9rem;
}

.slot-choice input {
  clip: rect(0, 0, 0, 0);
  height: 1px;
  position: absolute;
  width: 1px;
}

.slot-choice span {
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 790;
  min-height: 42px;
  padding: 0.58rem 0.85rem;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.slot-choice:hover span,
.slot-choice input:focus-visible + span {
  border-color: var(--copper);
}

.slot-choice.is-selected span,
.slot-choice input:checked + span {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: #fff;
}

.agenda-nav {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 0.2rem;
  padding: 1rem 0;
}

.agenda-nav a,
.agenda-nav span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 820;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  text-align: center;
}

.agenda-nav a {
  background: #fff;
}

.agenda-nav span {
  opacity: 0.45;
}

.agenda-nav strong {
  color: var(--ink);
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
}

.week-agenda {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
}

.week-agenda__row {
  display: grid;
  grid-template-columns: 88px repeat(5, minmax(118px, 1fr));
  min-width: 760px;
}

.week-agenda__row + .week-agenda__row {
  border-top: 1px solid var(--line);
}

.week-agenda__row > span,
.week-agenda__cell {
  align-items: center;
  border-left: 1px solid var(--line);
  display: flex;
  min-height: 64px;
  padding: 0.5rem;
}

.week-agenda__row > span:first-child {
  border-left: 0;
}

.week-agenda__row--head > span {
  background: var(--surface);
  display: grid;
  gap: 0.12rem;
  justify-items: center;
  min-height: 58px;
  text-align: center;
}

.week-agenda__row--head strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.week-agenda__row--head small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.week-agenda__time {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 850;
  justify-content: center;
}

.agenda-slot {
  width: 100%;
}

.agenda-slot span {
  align-items: center;
  border-radius: 8px;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem;
  text-align: center;
  width: 100%;
}

.agenda-empty {
  background: var(--surface);
  border-radius: 8px;
  display: block;
  height: 44px;
  opacity: 0.55;
  width: 100%;
}

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

.booking-form label,
.admin-form label,
.full-field {
  display: grid;
  gap: 0.4rem;
}

.booking-form label span,
.admin-form label span,
.full-field span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 780;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.admin-form input,
.admin-form select {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 46px;
  padding: 0.72rem 0.8rem;
  width: 100%;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form small,
.admin-form small,
.field-error {
  color: #b42318;
  margin: 0;
}

.notice {
  border-radius: 8px;
  font-weight: 760;
  margin: 0;
  padding: 0.9rem 1rem;
}

.notice--success {
  background: #e9f6ee;
  color: #20613a;
}

.notice--error {
  background: #fff1ef;
  color: #9f2a1f;
}

.empty-state {
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  margin: 0;
  padding: 1rem;
}

.booking__legal {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  text-align: center;
}

.booking__legal a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.checkout-page {
  background:
    linear-gradient(rgba(23, 21, 18, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 18, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  min-height: 100vh;
  padding: clamp(7rem, 12vw, 9rem) 0 clamp(3rem, 8vw, 5rem);
}

.checkout-shell {
  align-items: start;
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
}

.checkout-summary,
.checkout-embed {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(45, 35, 23, 0.1);
}

.checkout-summary {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.checkout-summary h1 {
  font-size: clamp(2.05rem, 5vw, 4rem);
  line-height: 0.98;
  margin: 0;
}

.checkout-details {
  border-top: 1px solid var(--line);
  display: grid;
  margin: 0;
}

.checkout-details div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
}

.checkout-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-details dd {
  color: var(--ink);
  display: grid;
  font-size: 1rem;
  font-weight: 800;
  gap: 0.18rem;
  margin: 0;
}

.checkout-details dd span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.checkout-back {
  justify-self: start;
}

.checkout-embed {
  min-height: 620px;
  padding: clamp(0.9rem, 2.5vw, 1.5rem);
}

#stripe-checkout {
  min-height: 560px;
}

.checkout-error {
  margin-top: 1rem;
}

.admin-page {
  background:
    linear-gradient(rgba(23, 21, 18, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 18, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.admin-shell {
  display: grid;
  gap: 1.25rem;
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(1rem, 3vw, 2rem);
}

.admin-hero {
  align-items: center;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: clamp(1.25rem, 4vw, 2.25rem);
}

.admin-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
  margin: 0;
}

.admin-hero p:last-child {
  color: var(--muted);
  margin: 0.8rem 0 0;
  max-width: 720px;
}

.admin-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 0.8fr 1.2fr;
}

.admin-tabs {
  align-items: center;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 0.45rem;
  padding: 0.45rem;
}

.admin-tabs a {
  align-items: center;
  border-radius: 6px;
  color: var(--ink-soft);
  display: inline-flex;
  font-weight: 850;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0.62rem 0.9rem;
  transition: background 180ms ease, color 180ms ease;
}

.admin-tabs a:hover,
.admin-tabs a:focus-visible {
  background: var(--surface);
  color: var(--ink);
}

.admin-tabs a.is-active {
  background: var(--ink);
  color: #fff;
}

.admin-tabs span {
  align-items: center;
  background: rgba(255, 253, 248, 0.2);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  justify-content: center;
  min-width: 28px;
  padding: 0.16rem 0.44rem;
}

.admin-card {
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(45, 35, 23, 0.08);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.admin-card--wide {
  display: grid;
  gap: 1rem;
}

.admin-card h2 {
  font-size: 1.45rem;
  margin: 0;
}

.admin-section-title {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.admin-section-title .eyebrow {
  margin-bottom: 0.35rem;
}

.admin-section-title > span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 820;
  padding: 0.42rem 0.68rem;
  white-space: nowrap;
}

.admin-form {
  display: grid;
  gap: 0.9rem;
}

.admin-form--stacked {
  gap: 1.1rem;
}

.admin-form hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0.2rem 0;
  width: 100%;
}

.check-field {
  align-items: center;
  display: flex !important;
  gap: 0.55rem !important;
}

.check-field input {
  min-height: auto;
  width: auto;
}

.admin-list,
.appointments-table {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.admin-row,
.appointment-row {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 0.9rem;
  padding: 0.9rem;
}

.admin-row {
  grid-template-columns: 1fr auto auto;
}

.admin-row span,
.appointment-row span {
  color: var(--muted);
  display: block;
}

.appointment-row .payment-pill {
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 850;
  margin-top: 0.25rem;
}

.admin-row button,
.appointment-row button {
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  min-height: 36px;
  padding: 0.45rem 0.75rem;
}

.appointment-row .button-danger {
  background: #9f2a1f;
}

.appointment-row {
  grid-template-columns: 0.85fr 1fr 1fr auto;
}

.appointment-row p {
  color: var(--muted);
  margin: 0;
}

.appointment-actions,
.appointment-row form {
  display: flex;
  gap: 0.5rem;
}

.appointment-actions {
  align-items: flex-start;
  flex-direction: column;
}

.appointment-row select {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  min-height: 36px;
  padding: 0.4rem 0.7rem;
}

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer__inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-inline: auto;
  padding: 1.25rem 0;
  width: var(--container);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 750;
}

.legal-hero {
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.93), rgba(23, 21, 18, 0.46) 56%, rgba(33, 79, 210, 0.34)),
    url("../assets/site/legal-documents.jpg") center / cover;
  color: #fff;
  padding: 150px 0 86px;
}

.legal-hero p:last-child {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  max-width: 760px;
}

.legal-content {
  display: grid;
  gap: 2rem;
  max-width: 840px;
}

.legal-content article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 2rem;
}

.legal-content h2 {
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.legal-content p {
  color: var(--muted);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 28px, 920px);
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: var(--ink);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.55rem;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(280px, calc(100vw - 28px));
  }

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

  .site-nav a {
    border-radius: 6px;
    width: 100%;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-header.is-scrolled .site-nav a:hover,
  .site-header.is-scrolled .site-nav a:focus-visible {
    background: var(--surface);
    color: var(--ink);
  }

  .site-nav .nav-cta,
  .site-header.is-scrolled .site-nav .nav-cta {
    background: var(--cobalt);
    color: #fff;
    margin: 0.25rem 0 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

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

  .consult-carousel,
  .process-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .consult-carousel__media {
    min-height: 320px;
  }

  .consult-carousel__media::after {
    background: linear-gradient(180deg, transparent 45%, rgba(23, 21, 18, 0.5) 100%);
  }

  .process-step {
    min-height: 230px;
  }

  .process-step__number {
    margin-bottom: 2.4rem;
  }

  .split--image-right .split__media {
    order: -1;
  }

  .booking-panel,
  .admin-grid,
  .checkout-shell,
  .appointment-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 24px, 620px);
  }

  .site-header {
    padding: 12px 0;
  }

  .brand__text {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 0;
  }

  .hero__layout {
    padding: 100px 0 46px;
  }

  .hero h1,
  .legal-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .booking-form > .button {
    justify-self: stretch;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    margin-top: 2.2rem;
  }

  .hero__proof div {
    padding: 0.85rem 0 0.85rem;
  }

  .hero-console__stats {
    grid-template-columns: 1fr;
  }

  .hero-console__stats span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .service-card {
    min-height: auto;
  }

  .service-card__index {
    margin-bottom: 2rem;
  }

  .signal-strip {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 0.75rem;
  }

  .signal-strip span {
    white-space: nowrap;
  }

  .consult-carousel {
    min-height: auto;
  }

  .consult-carousel__content {
    padding: 1.6rem;
  }

  .consult-carousel__media {
    min-height: 260px;
  }

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

  .section {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .booking-panel,
  .booking-panel__header,
  .admin-section-title,
  .admin-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-page {
    padding-top: 6.25rem;
  }

  .checkout-embed {
    min-height: 540px;
    padding: 0.7rem;
  }

  #stripe-checkout {
    min-height: 500px;
  }

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

  .admin-tabs {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-tabs a {
    justify-content: space-between;
    width: 100%;
  }

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

  .agenda-nav strong {
    order: -1;
  }

  .week-agenda__row {
    grid-template-columns: 76px repeat(5, minmax(108px, 1fr));
    min-width: 640px;
  }

  .slot-choice span {
    justify-content: center;
    width: 100%;
  }

  .appointment-row form {
    flex-direction: column;
  }

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

  .legal-hero {
    padding: 128px 0 64px;
  }
}
