:root {
  --ink: #4b342c;
  --muted: #9c7164;
  --paper: #e8e1d1;
  --soft: #d8b69f;
  --sage: #4b342c;
  --sage-2: #c38380;
  --rose: #c38380;
  --rose-soft: #d8b69f;
  --clay: #9c7164;
  --cream: #e8e1d1;
  --blush: #d8b69f;
  --card: #f8efe6;
  --line: rgba(75, 52, 44, 0.18);
  --white: #fffaf4;
  --shadow: 0 16px 44px rgba(75, 52, 44, 0.14);
  --font-display: "Bodoni 72", "Bodoni MT", Didot, "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Avenir Next", "Trebuchet MS", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --font-label: "Codec Pro", "Avenir Next", "Trebuchet MS", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --font-accent: "Amoresa", "Segoe Script", "Lucida Handwriting", "Brush Script MT", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
}

@keyframes softFloatLeft {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.02) rotate(-0.4deg);
  }

  50% {
    transform: translate3d(16px, -12px, 0) scale(1.055) rotate(0.35deg);
  }
}

@keyframes softFloatRight {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.02) rotate(0.35deg);
  }

  50% {
    transform: translate3d(-14px, -10px, 0) scale(1.05) rotate(-0.35deg);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softDotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(217, 157, 148, 0.17);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(217, 157, 148, 0.1);
    transform: scale(1.08);
  }
}

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

a {
  color: inherit;
  text-decoration-color: rgba(182, 111, 88, 0.45);
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-color: currentColor;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  border-radius: 4px;
  background: var(--sage);
  color: var(--white);
  padding: 0.6rem 0.85rem;
}

.skip-link:focus {
  top: 1rem;
}

.visually-hidden {
  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 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-note {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.9rem;
  font-family: var(--font-label);
  font-weight: 700;
  text-align: center;
  padding: 0.45rem 1rem;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 250, 244, 0.95);
  border-bottom: 1px solid rgba(75, 52, 44, 0.14);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 132px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.15rem 0 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  min-width: max-content;
  text-decoration: none;
}

.brand img {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  background: var(--ink);
  object-fit: cover;
}

.brand > span {
  display: none;
}

.brand-name {
  display: block;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.1;
}

.brand-subtitle {
  display: block;
  color: var(--clay);
  font-family: var(--font-label);
  font-size: 0.76rem;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-family: var(--font-label);
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  border-radius: 0;
  background: transparent;
  padding: 0.2rem 0.45rem 0.35rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, text-decoration-color 180ms ease, transform 180ms ease;
}

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

.site-nav a:hover,
.site-nav a:focus-visible,
body[data-page="home"] .site-nav a[href="index.html"],
body[data-page="services"] .site-nav a[href="services.html"],
body[data-page="booking"] .site-nav a[href="booking.html"],
body[data-page="gallery"] .site-nav a[href="gallery.html"],
body[data-page="about"] .site-nav a[href="about.html"],
body[data-page="contact"] .site-nav a[href="contact.html"],
body[data-page="products"] .site-nav a[href="products.html"],
body[data-page="policies"] .site-nav a[href="policies.html"] {
  background: transparent;
  color: var(--rose);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--sage);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

main {
  flex: 1;
}

.hero {
  position: relative;
  min-height: 610px;
  height: calc(100svh - 188px);
  max-height: 760px;
  display: grid;
  align-items: start;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 82%, rgba(216, 182, 159, 0.74), transparent 23rem),
    radial-gradient(circle at 92% 80%, rgba(195, 131, 128, 0.28), transparent 28rem),
    linear-gradient(180deg, var(--white), var(--paper) 74%, rgba(216, 182, 159, 0.35));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.52;
  box-shadow: 0 20px 48px rgba(75, 52, 44, 0.14);
  filter: saturate(0.78);
}

.hero::before {
  left: max(-150px, -9vw);
  bottom: -116px;
  width: clamp(300px, 42vw, 600px);
  aspect-ratio: 1.12;
  border-radius: 50% 50% 18% 18%;
  background-image: url("facial-foam-glow.jpeg");
  background-position: 48% 46%;
  transform: translate3d(0, 0, 0) scale(1.02);
  animation: softFloatLeft 16s ease-in-out infinite;
}

.hero::after {
  right: max(-130px, -8vw);
  bottom: -96px;
  width: clamp(260px, 35vw, 520px);
  aspect-ratio: 1.08;
  border-radius: 40% 50% 18% 18%;
  background-image: url("facial-lash-cleanse.jpeg");
  background-position: 48% 42%;
  transform: translate3d(0, 0, 0) scale(1.02);
  animation: softFloatRight 18s ease-in-out infinite;
}

.hero-content {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  color: var(--ink);
  padding: clamp(2.8rem, 5vh, 4rem) 0 5rem;
  text-align: center;
  animation: heroFadeIn 900ms ease both;
}

.hero-content::before {
  content: "";
  display: block;
  width: min(170px, 42vw);
  height: 1px;
  margin: 0 auto 2.15rem;
  background: var(--soft);
}

.hero-logo {
  width: min(320px, 72vw);
  margin: 0 0 1.15rem;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(75, 52, 44, 0.26);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--rose-soft);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1,
.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 4.45rem;
  font-weight: 700;
}

.hero-title-logo {
  margin: 0;
}

.hero-title-logo img {
  width: min(640px, 82vw);
  height: auto;
  margin: 0 auto;
  filter: brightness(0) saturate(100%) invert(21%) sepia(14%) saturate(982%) hue-rotate(337deg) brightness(94%) contrast(91%);
  opacity: 0.95;
}

.hero-lede {
  max-width: 610px;
  margin: 1.2rem auto 0;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 400;
}

.hero-actions,
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.72rem 1rem;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-label);
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(75, 52, 44, 0);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--clay);
  box-shadow: 0 12px 24px rgba(75, 52, 44, 0.14);
  transform: translateY(-2px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

body[data-page="home"] .hero .button.light {
  background: var(--soft);
  color: var(--ink);
}

body[data-page="home"] .hero .button.secondary {
  border-color: var(--soft);
  background: rgba(255, 250, 244, 0.52);
  color: var(--ink);
}

body[data-page="home"] .hero .button.secondary:hover,
body[data-page="home"] .hero .button.secondary:focus-visible,
body[data-page="home"] .hero .button.light:hover,
body[data-page="home"] .hero .button.light:focus-visible {
  background: var(--rose);
  color: var(--white);
}

.button.light {
  background: var(--white);
  color: var(--sage);
}

.button.outline {
  border-color: var(--sage-2);
  background: transparent;
  color: var(--ink);
}

.button.outline:hover,
.button.outline:focus-visible {
  background: var(--soft);
}

.button[disabled],
.button[aria-disabled="true"] {
  border-color: var(--line);
  background: var(--soft);
  color: var(--clay);
  cursor: not-allowed;
}

.section {
  padding: 4.6rem 0;
}

.section.alt {
  background: var(--blush);
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(830px, calc(100% - 2rem));
}

.section-heading {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  margin: 0;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 2.35rem;
}

.section-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.soft-panel {
  display: grid;
  gap: 0.9rem;
  align-self: stretch;
  justify-content: start;
  border-left: 2px solid rgba(75, 52, 44, 0.18);
  background: rgba(255, 250, 244, 0.28);
  padding: clamp(1.35rem, 3vw, 2.2rem);
}

.soft-panel h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.soft-panel p {
  margin: 0;
  color: var(--muted);
}

body.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

body.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready .grid > [data-reveal]:nth-child(2n) {
  --reveal-delay: 90ms;
}

body.motion-ready .grid > [data-reveal]:nth-child(3n) {
  --reveal-delay: 150ms;
}

body.motion-ready .feature-list [data-reveal]:nth-child(2) {
  --reveal-delay: 90ms;
}

body.motion-ready .feature-list [data-reveal]:nth-child(3) {
  --reveal-delay: 180ms;
}

.page-hero {
  background: linear-gradient(135deg, var(--soft), var(--paper) 62%, rgba(195, 131, 128, 0.32));
  border-bottom: 1px solid var(--line);
  padding: 4.2rem 0 3.6rem;
}

.page-hero .container {
  display: grid;
  gap: 0.7rem;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 3rem;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--line);
  aspect-ratio: 4 / 3;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.media-frame:hover,
.media-frame:focus-within {
  box-shadow: 0 22px 54px rgba(75, 52, 44, 0.18);
  transform: translateY(-3px);
}

.media-frame:hover img,
.media-frame:focus-within img {
  transform: scale(1.035);
}

.portrait-frame {
  aspect-ratio: 1 / 1;
  max-width: 500px;
  justify-self: end;
}

.portrait-frame img {
  object-position: center top;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 1.3rem 0 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.7rem;
  color: var(--muted);
  transition: color 220ms ease, transform 220ms ease;
}

.feature-list li:hover {
  color: var(--ink);
  transform: translateX(4px);
}

.feature-list li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 5px rgba(217, 157, 148, 0.17);
  transform-origin: center;
}

body.motion-ready .feature-list li.is-visible::before {
  animation: softDotPulse 2.8s ease-in-out 1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  padding: 1.25rem;
  box-shadow: 0 10px 28px rgba(75, 52, 44, 0.08);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.card:hover,
.card:focus-within {
  border-color: rgba(195, 131, 128, 0.48);
  box-shadow: 0 18px 40px rgba(75, 52, 44, 0.14);
  transform: translateY(-4px);
}

.card h3 {
  margin: 0 0 0.45rem;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.42rem;
}

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

.card .meta {
  display: inline-flex;
  margin-bottom: 0.75rem;
  border-radius: 4px;
  background: var(--blush);
  color: var(--clay);
  padding: 0.2rem 0.45rem;
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card .details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card .price {
  color: var(--sage);
  font-weight: 800;
}

.band {
  background: var(--ink);
  color: var(--soft);
  padding: 3.2rem 0;
}

.band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
}

.band p {
  max-width: 650px;
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.1rem;
  align-items: start;
}

.booking-embed-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0;
  box-shadow: 0 12px 34px rgba(75, 52, 44, 0.09);
  overflow: hidden;
}

.booking-embed-panel iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
}

.booking-custom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.2rem;
  align-items: start;
}

.booking-main,
.booking-summary,
.booking-step-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 12px 34px rgba(75, 52, 44, 0.08);
}

.booking-main {
  overflow: hidden;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(255, 250, 244, 0.62);
  border-bottom: 1px solid var(--line);
}

.booking-steps li {
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.86rem 0.9rem;
  text-align: center;
  text-transform: uppercase;
}

.booking-steps li:last-child {
  border-right: 0;
}

.booking-steps li.is-active,
.booking-steps li.is-complete {
  background: var(--soft);
  color: var(--ink);
}

.booking-flow {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.4rem);
}

.booking-step-panel {
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.section-heading.compact {
  margin-bottom: 1rem;
}

.section-heading.compact h2 {
  font-size: 1.65rem;
}

.booking-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.service-choice,
.time-slot {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.8rem 0.9rem;
}

.service-choice:hover,
.service-choice:focus-visible,
.time-slot:hover,
.time-slot:focus-visible {
  border-color: rgba(195, 131, 128, 0.56);
  box-shadow: 0 12px 24px rgba(75, 52, 44, 0.11);
  transform: translateY(-2px);
}

.service-choice.is-selected,
.time-slot.is-selected {
  border-color: var(--rose);
  background: rgba(216, 182, 159, 0.38);
  box-shadow: 0 12px 26px rgba(75, 52, 44, 0.12);
}

.service-radio {
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid var(--rose);
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 0 0 3px var(--white);
}

.service-choice.is-selected .service-radio {
  background: var(--rose);
}

.service-choice-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.service-title {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.1;
}

.service-description {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.service-choice .service-meta {
  display: grid;
  gap: 0.16rem;
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.week-calendar-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.7);
  padding: 0.65rem;
}

.week-label {
  display: block;
  color: var(--ink);
  font-family: var(--font-label);
  font-weight: 800;
  text-align: center;
}

.week-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
}

.week-day {
  min-height: 162px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0.58rem;
}

.week-day.is-today {
  border-color: rgba(195, 131, 128, 0.72);
  box-shadow: inset 0 0 0 1px rgba(195, 131, 128, 0.18);
}

.week-day header {
  display: grid;
  gap: 0.1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.45rem;
  min-height: 48px;
}

.week-day header span {
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 800;
}

.week-day header strong {
  color: var(--rose);
  font-family: var(--font-label);
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
}

.week-slots {
  display: grid;
  gap: 0.36rem;
}

.time-slot {
  min-height: 34px;
  padding: 0.45rem 0.34rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.no-slots {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

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

.field span {
  color: var(--sage);
  font-family: var(--font-label);
  font-weight: 800;
}

.policy-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  margin-top: 1rem;
  color: var(--muted);
}

.policy-check input {
  width: 18px;
  height: 18px;
  margin-top: 0.22rem;
  accent-color: var(--rose);
}

.save-info-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  margin-top: 0.85rem;
  border: 1px solid rgba(75, 52, 44, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.5);
  color: var(--ink);
  padding: 0.85rem;
}

.save-info-check input {
  width: 18px;
  height: 18px;
  margin-top: 0.22rem;
  accent-color: var(--rose);
}

.save-info-check span {
  display: grid;
  gap: 0.16rem;
  font-family: var(--font-label);
  font-weight: 800;
}

.save-info-check small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.35;
}

.field-error {
  display: none;
  color: #8a3f35;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.field-error.is-visible {
  display: block;
}

.field input[aria-invalid="true"],
.policy-check input[aria-invalid="true"] {
  border-color: #8a3f35;
  box-shadow: 0 0 0 3px rgba(138, 63, 53, 0.1);
}

.policy-error {
  margin-top: 0.4rem;
}

.discount-code-field {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.discount-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  color: var(--sage);
  cursor: pointer;
}

.discount-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--rose);
}

.discount-toggle span,
.discount-code-entry label {
  color: var(--sage);
  font-family: var(--font-label);
  font-weight: 800;
}

.discount-code-entry {
  display: grid;
  gap: 0.38rem;
}

.discount-code-entry[hidden] {
  display: none;
}

.discount-code-entry input {
  width: min(360px, 100%);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 0.78rem 0.85rem;
  text-transform: uppercase;
}

.discount-code-entry small {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.secure-payment-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  margin-bottom: 1rem;
  border: 1px solid rgba(75, 52, 44, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.72);
  padding: 0.95rem 1rem;
}

.secure-payment-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(75, 52, 44, 0.15);
}

.secure-payment-icon::before {
  content: "";
  position: absolute;
  left: 0.63rem;
  top: 0.45rem;
  width: 0.58rem;
  height: 0.52rem;
  border: 2px solid var(--white);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.secure-payment-icon::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.93rem;
  width: 0.9rem;
  height: 0.64rem;
  border-radius: 2px;
  background: var(--white);
}

.secure-payment-note strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-label);
  font-weight: 800;
}

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

.payment-total-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0.95rem 1rem;
}

.payment-total-box span {
  color: var(--muted);
}

.payment-total-box strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.secure-card-shell {
  border: 1px solid rgba(75, 52, 44, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.62);
  padding: 0.85rem;
}

.secure-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.secure-card-heading small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: none;
}

.card-container {
  min-height: 90px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem;
}

.booking-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.booking-status {
  margin: 0;
  color: var(--muted);
}

.booking-status.is-error {
  color: #8a3f35;
  font-weight: 700;
}

.booking-status.is-success {
  color: var(--ink);
  font-weight: 800;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(75, 52, 44, 0.45);
  padding: 1rem;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal-panel {
  position: relative;
  width: min(500px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(75, 52, 44, 0.26);
  padding: clamp(1.4rem, 4vw, 2rem);
}

.booking-modal-panel h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2rem;
}

.booking-modal-panel p:not(.eyebrow) {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.booking-modal-actions {
  margin-top: 1.25rem;
}

.booking-summary {
  position: sticky;
  top: 1rem;
  padding: 1.25rem;
}

.booking-summary h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.booking-summary dl {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.booking-summary dl div {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.booking-summary dt {
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-summary dd {
  margin: 0.15rem 0 0;
  color: var(--ink);
  font-weight: 700;
}

.booking-fine-print {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.setup-note {
  margin-top: 1rem;
}

.gallery-placeholder {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  box-shadow: 0 16px 40px rgba(75, 52, 44, 0.1);
}

.gallery-placeholder h2 {
  margin: 0 0 0.8rem;
  color: var(--cocoa);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.gallery-placeholder p:not(.eyebrow) {
  max-width: 540px;
  margin: 0 auto 1.4rem;
}

.tool-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  padding: 1.2rem;
  box-shadow: 0 12px 34px rgba(75, 52, 44, 0.09);
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  color: var(--sage);
  font-family: var(--font-label);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 0.78rem 0.85rem;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.calendar-header h2 {
  margin: 0;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.calendar-nav {
  display: flex;
  gap: 0.45rem;
}

.icon-button {
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 40px;
  height: 40px;
  background: var(--card);
  color: var(--sage);
  font-weight: 800;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.42rem;
}

.weekday {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.date-button {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.date-button:hover,
.date-button:focus-visible,
.date-button.is-selected {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
}

.date-button.is-muted {
  opacity: 0.45;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.time-button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--card);
  color: var(--sage);
  min-height: 42px;
  cursor: pointer;
}

.time-button:hover,
.time-button:focus-visible,
.time-button.is-selected {
  border-color: var(--rose);
  background: var(--rose-soft);
}

.summary-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.65rem;
}

.summary-row span:first-child {
  color: var(--muted);
}

.summary-row span:last-child {
  color: var(--sage);
  font-weight: 800;
  text-align: right;
}

.notice {
  border-left: 4px solid var(--rose);
  border-radius: 6px;
  background: rgba(216, 182, 159, 0.38);
  color: var(--muted);
  padding: 0.85rem 1rem;
}

.notice strong {
  color: var(--sage);
}

.payment-options {
  display: grid;
  gap: 0.75rem;
}

.payment-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  padding: 1rem;
}

.payment-option h3 {
  margin: 0;
  color: var(--sage);
  font-size: 1rem;
}

.payment-option p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-stack {
  display: grid;
  gap: 1rem;
}

.policy-section {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.policy-section h2 {
  margin: 0 0 0.5rem;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
}

.contact-methods {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.contact-method {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.contact-method strong {
  display: block;
  color: var(--sage);
}

.contact-method span {
  display: block;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  padding: 1rem;
}

summary {
  color: var(--sage);
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--soft);
  padding: 2.8rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 0.7rem;
  color: var(--sage);
  font-family: var(--font-display);
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.draft-note {
  border: 1px dashed var(--clay);
  border-radius: 8px;
  background: rgba(216, 182, 159, 0.42);
  color: var(--muted);
  padding: 1rem;
}

.draft-note strong {
  color: var(--clay);
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 74px;
    flex-direction: row;
    justify-content: space-between;
    gap: 1.2rem;
    flex-wrap: wrap;
    padding: 0.7rem 0;
  }

  .brand {
    justify-content: flex-start;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand > span {
    display: block;
  }

  .site-nav {
    justify-content: stretch;
    font-size: 0.94rem;
    text-transform: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
    padding-bottom: 0.4rem;
  }

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

  .site-nav a {
    border-radius: 4px;
    border: 1px solid var(--line);
    background: var(--card);
    padding: 0.55rem 0.64rem;
    text-align: center;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  body[data-page="home"] .site-nav a[href="index.html"],
  body[data-page="services"] .site-nav a[href="services.html"],
  body[data-page="booking"] .site-nav a[href="booking.html"],
  body[data-page="gallery"] .site-nav a[href="gallery.html"],
  body[data-page="about"] .site-nav a[href="about.html"],
  body[data-page="contact"] .site-nav a[href="contact.html"],
  body[data-page="products"] .site-nav a[href="products.html"],
  body[data-page="policies"] .site-nav a[href="policies.html"] {
    background: var(--soft);
    color: var(--sage);
    text-decoration: none;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 5rem 0 4.4rem;
    background:
      radial-gradient(circle at 8% 88%, rgba(216, 182, 159, 0.62), transparent 18rem),
      radial-gradient(circle at 100% 84%, rgba(195, 131, 128, 0.22), transparent 20rem),
      linear-gradient(180deg, var(--white), var(--paper));
  }

  .hero::before,
  .hero::after {
    opacity: 0.3;
  }

  h1,
  .page-title {
    font-size: 3.1rem;
  }

  .split,
  .booking-layout,
  .booking-custom,
  .grid,
  .grid.two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }

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

  .band .container,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .top-note {
    font-size: 0.82rem;
  }

  .brand-subtitle {
    display: none;
  }

  h1,
  .page-title {
    font-size: 2.42rem;
  }

  .hero-lede,
  .page-hero p {
    font-size: 1rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .section-heading h2 {
    font-size: 1.9rem;
  }

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

  .booking-steps,
  .booking-service-grid,
  .week-calendar-grid,
  .client-fields {
    grid-template-columns: 1fr;
  }

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

  .service-choice .service-meta {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.7rem;
    text-align: left;
    white-space: normal;
  }

  .booking-steps li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-steps li:last-child {
    border-bottom: 0;
  }

  .payment-option {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 4.2rem 0 3.8rem;
  }

  .hero::before {
    left: -138px;
    bottom: -72px;
    width: 310px;
  }

  .hero::after {
    right: -150px;
    bottom: -70px;
    width: 300px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-content::before {
    margin-bottom: 1.4rem;
  }
}

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

  .hero::before,
  .hero::after,
  .hero-content,
  .card,
  .feature-list li,
  .feature-list li::before,
  .media-frame,
  .media-frame img,
  .button,
  .site-nav a {
    transform: none !important;
  }
}
