/* Krystal Med Spa & Beauty Salon — Osmo-style skincare: bright mint, cream, dusty rose, navy text */
:root {
  /* Reference mint #CDEBD6 — page green is slightly brighter / fresher */
  --color-mint: #b8e8d4;
  --color-mint-soft: #d4f0e6;
  --color-bg: #e8f4ee;
  --color-surface: #fffcfb;
  --color-text: #1a2833;
  --color-muted: #5a6670;
  /* Interactive teal (readable on mint) */
  --color-green: #4a8f7a;
  --color-green-mid: #5fb39a;
  --color-green-dark: #3d7a65;
  --color-green-deep: #1a2833;
  --color-accent: #4a8f7a;
  --color-accent-mid: #d4a5a9;
  --color-accent-dark: #1a2833;
  --color-navy-deep: #141e26;
  --color-navy: #1a2833;
  --color-navy-mid: #243a42;
  --color-pink: #e5b8bc;
  --color-pink-soft: #f5e6e8;
  --color-gold: #d4a5a9;
  --color-gold-soft: #f0d9dc;
  --color-tint: #eef8f3;
  --color-cream: #fdfbfa;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --shadow: 0 16px 40px rgba(26, 40, 51, 0.07);
  --shadow-strong: 0 20px 48px rgba(26, 40, 51, 0.1);
  --radius: 16px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-mint-soft) 38%, var(--color-bg) 100%);
  padding-bottom: 5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-green-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Top promo bar — deep navy (skincare editorial contrast) */
.site-topbar {
  background: linear-gradient(90deg, var(--color-navy) 0%, #243a42 50%, var(--color-navy) 100%);
  color: rgba(253, 251, 250, 0.95);
  font-size: 0.82rem;
  text-align: center;
  padding: 0.45rem 1rem;
  letter-spacing: 0.02em;
}

.site-topbar a {
  color: var(--color-pink-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-topbar a:hover {
  color: #fff;
}

/* Header — cream card on mint page */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-cream) 100%);
  border-bottom: 1px solid rgba(229, 184, 188, 0.4);
  box-shadow: 0 4px 24px rgba(26, 40, 51, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--color-green);
  opacity: 1;
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-brand:hover {
  color: var(--color-green);
}

.site-header .logo-text {
  color: var(--color-text);
  text-shadow: none;
}

/* Logo frame — official circular mark (navy + rose gold); file: images/logo.jpg */
.logo-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: 0 3px 18px rgba(26, 40, 51, 0.09);
  overflow: hidden;
  position: relative;
}

.logo-img {
  width: 100%;
  height: 100%;
  padding: 2px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

.logo-img-wrap .logo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: #c58e7f;
  background: #0a0e1a;
  border: 2px solid #c58e7f;
  border-radius: 50%;
  pointer-events: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
  max-width: 19rem;
  letter-spacing: 0.01em;
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.35rem;
  }

  .logo-text {
    font-size: 1rem;
    max-width: 13rem;
  }

  .logo-img-wrap {
    width: 58px;
    height: 58px;
  }
}

.nav-toggle {
  display: none;
  background: rgba(184, 232, 212, 0.35);
  border: 1px solid rgba(26, 40, 51, 0.12);
  color: var(--color-text);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list a {
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.35rem 0;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 2px solid var(--color-pink);
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 100%;
    order: 3;
  }

  .nav.is-open {
    display: block;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0 0;
    gap: 0.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #2f4550 0%, var(--color-navy) 55%, #141e26 100%);
  color: #fdfbfa;
  box-shadow: var(--shadow-strong);
  font-weight: 600;
}

.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(26, 40, 51, 0.22);
  filter: brightness(1.05);
}

.btn-outline {
  background: var(--color-surface);
  color: var(--color-text);
  border: 2px solid rgba(229, 184, 188, 0.85);
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--color-pink-soft);
  border-color: var(--color-pink);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero — cream + bright mint wash (Osmo-style) */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background:
    linear-gradient(120deg, rgba(253, 251, 250, 0.98) 0%, rgba(212, 240, 230, 0.55) 45%, rgba(184, 232, 212, 0.35) 100%),
    radial-gradient(ellipse 75% 85% at 90% 25%, rgba(184, 232, 212, 0.5), transparent 55%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a8f7a' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  border-bottom: 1px solid rgba(229, 184, 188, 0.25);
}

.hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero h1 {
  font-size: clamp(2.15rem, 4.5vw, 3rem);
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

.hero .tagline {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  color: var(--color-text);
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.hero .lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin: 0 0 1.5rem;
  max-width: 36ch;
}

.hero-card {
  background: linear-gradient(160deg, #ffffff 0%, var(--color-cream) 100%);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(74, 143, 122, 0.2);
}

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 3px solid #fff;
  aspect-ratio: 4 / 3;
  max-height: 340px;
  margin: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero--home {
  padding-top: clamp(2.25rem, 6vw, 3.75rem);
}

.hero-copy {
  min-width: 0;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-green);
  margin: 0 0 0.85rem;
}

.hero-trust {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 1.35rem 0 0;
  line-height: 1.5;
}

.hero-trust a {
  color: var(--color-green-dark);
  font-weight: 600;
  text-decoration: none;
}

.hero-trust a:hover {
  text-decoration: underline;
}

.hero-visual--framed {
  border: 2px solid rgba(229, 184, 188, 0.55);
  box-shadow:
    0 28px 56px rgba(26, 40, 51, 0.06),
    0 0 0 1px rgba(253, 251, 250, 0.7) inset;
  max-height: 400px;
}

/* Homepage hero — local portrait (skincare / spa; not salon chairs) */
.hero--home .hero-visual.hero-visual--portrait {
  aspect-ratio: 3 / 4;
  max-height: min(520px, 72vh);
  max-width: min(400px, 100%);
  margin-inline: auto;
}

.hero--home .hero-visual.hero-visual--portrait img {
  object-position: center 22%;
}

.section--why {
  background: linear-gradient(180deg, rgba(184, 232, 212, 0.35) 0%, rgba(253, 251, 250, 0.98) 100%);
  border-top: 1px solid rgba(229, 184, 188, 0.35);
  border-bottom: 1px solid rgba(229, 184, 188, 0.18);
}

.hero-card p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

/* Sections */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  text-align: center;
  margin: 0 0 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--color-muted);
  max-width: 50ch;
  margin: 0 auto 2rem;
}

/* Grid cards */
.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, var(--color-cream) 100%);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(74, 143, 122, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.card-media {
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Why list */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 520px;
  margin-inline: auto;
}

.why-list li {
  padding-left: 1.75rem;
  position: relative;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* Gallery preview */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #f5f0ee, var(--color-cream));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  border: 2px solid rgba(74, 143, 122, 0.2);
  box-shadow: 0 8px 24px rgba(47, 47, 47, 0.08);
}

.gallery-item:has(img) {
  padding: 0;
  border: 3px solid #fff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Testimonials */
.quote-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

blockquote {
  margin: 0;
  padding: 1.5rem;
  background: linear-gradient(90deg, var(--color-pink-soft) 0%, #ffffff 18%);
  border-radius: var(--radius);
  border-left: 5px solid var(--color-pink);
  box-shadow: var(--shadow);
  font-style: italic;
  color: var(--color-muted);
}

blockquote footer {
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--color-text);
}

/* CTA band — soft mint panel + navy button (skincare editorial) */
.cta-band {
  background: linear-gradient(135deg, var(--color-mint-soft) 0%, var(--color-mint) 50%, #a8dfc8 100%);
  color: var(--color-text);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  margin: 2rem 0;
  box-shadow: var(--shadow-strong);
  border: 2px solid rgba(229, 184, 188, 0.45);
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  color: var(--color-text);
  text-shadow: none;
}

.cta-band p {
  margin: 0 0 1.25rem;
  opacity: 0.95;
}

.cta-band .btn-primary {
  background: linear-gradient(135deg, #2f4550 0%, var(--color-navy) 55%, #141e26 100%);
  color: #fdfbfa;
  box-shadow: 0 6px 20px rgba(26, 40, 51, 0.2);
  font-weight: 700;
}

.cta-band .btn-primary:hover {
  background: linear-gradient(135deg, #3a5562 0%, #243a42 100%);
  color: #fff;
  filter: none;
}

/* Contact strip */
.contact-strip {
  background: linear-gradient(165deg, #ffffff 0%, var(--color-tint) 100%);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid rgba(74, 143, 122, 0.18);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.contact-strip a {
  color: var(--color-accent-dark);
  font-weight: 500;
}

/* Page header */
.page-hero {
  padding: 2.5rem 0 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(74, 143, 122, 0.15);
}

.page-hero h1 {
  margin: 0 0 0.5rem;
}

.page-hero p {
  margin: 0;
  color: var(--color-muted);
  max-width: 56ch;
  margin-inline: auto;
}

/* Service category */
.service-category {
  margin-bottom: 3rem;
}

.service-category h2 {
  font-size: 1.75rem;
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(74, 143, 122, 0.4);
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0.75rem 0 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.service-meta strong {
  color: var(--color-accent-dark);
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Featured photos under service category (e.g. facial / hydro) */
.service-feature-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.service-feature-photos figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(74, 143, 122, 0.2);
  background: var(--color-surface);
}

.service-feature-photos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-feature-photos figcaption {
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.35;
}

/* Pricing table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-table th,
.price-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(74, 143, 122, 0.15);
}

.price-table th {
  background: rgba(74, 143, 122, 0.12);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.price-table tr:last-child td {
  border-bottom: none;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(74, 143, 122, 0.35);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* FAQ */
.faq-item {
  background: var(--color-surface);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(74, 143, 122, 0.1);
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Policies */
.policy-block {
  margin-bottom: 2rem;
}

.policy-block h2 {
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.policy-block p,
.policy-block ul {
  color: var(--color-muted);
}

.policy-block ul {
  padding-left: 1.25rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(165deg, #243a42 0%, var(--color-navy) 50%, var(--color-navy-deep) 100%);
  color: rgba(253, 251, 250, 0.92);
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
  border-top: 3px solid rgba(229, 184, 188, 0.45);
}

.site-footer a {
  color: var(--color-pink-soft);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin-bottom: 2rem;
}

.site-footer h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.note {
  font-size: 0.9rem;
  color: var(--color-muted);
}

code {
  font-size: 0.88em;
  background: var(--color-tint);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Sticky Book CTA */
.sticky-book-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fdfbfa;
  text-decoration: none;
  background: linear-gradient(135deg, #2f4550, var(--color-navy));
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(26, 40, 51, 0.28);
  border: 1px solid rgba(229, 184, 188, 0.4);
}

.sticky-book-fab:hover {
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
}

@media (min-width: 900px) {
  .sticky-book-fab {
    right: 1.5rem;
    bottom: 1.5rem;
    padding: 0.85rem 1.5rem;
  }
}

/* Booking wizard */
.container--booking {
  max-width: 640px;
}

.container--narrow {
  max-width: 560px;
}

.page-hero-lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.booking-staff-note {
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  border: 1px solid rgba(74, 143, 122, 0.2);
}

.booking-staff-note summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--color-text);
}

.booking-staff-note p {
  margin: 0.75rem 0 0;
  line-height: 1.45;
}

.form-error {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: rgba(196, 90, 90, 0.12);
  border: 1px solid rgba(196, 90, 90, 0.35);
  color: #6b2a2a;
  font-size: 0.95rem;
}

.booking-subheading {
  font-size: 1.05rem;
  font-family: var(--font-display);
  margin: 1.5rem 0 0.75rem;
  font-weight: 600;
}

.booking-recap {
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  background: var(--color-tint);
  border-radius: var(--radius);
  border: 1px solid rgba(74, 143, 122, 0.25);
}

.booking-recap-service {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.booking-recap-meta {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.label-optional {
  font-weight: 400;
  color: var(--color-muted);
  font-size: 0.9em;
}

.booking-finish-note {
  margin-top: 1rem;
}

.btn-book-main {
  min-height: 48px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1rem;
}

.container--wide {
  max-width: 800px;
}

.h-inline {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
}

.embed-note h2 {
  margin-top: 0;
}

.banner-info {
  padding: 1rem 1.25rem;
  background: var(--color-tint);
  border-radius: var(--radius);
  border: 1px solid rgba(74, 143, 122, 0.35);
  margin-bottom: 1rem;
}

.step-indicator {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.step-indicator .step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  min-width: 56px;
  text-align: center;
}

.step-indicator .step-dot span:first-child {
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  background: var(--color-tint);
  color: var(--color-muted);
  font-weight: 600;
}

.step-indicator .step-dot.is-active span:first-child,
.step-indicator .step-dot.is-done span:first-child {
  background: var(--color-accent-dark);
  color: #fff;
}

.booking-step-title {
  font-size: 1.35rem;
  margin: 0 0 1rem;
  font-family: var(--font-display);
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.calendar-month-label {
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.cal-wd {
  text-align: center;
  font-size: 0.7rem;
  color: var(--color-muted);
  text-transform: uppercase;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  min-height: 40px;
  border: 1px solid rgba(74, 143, 122, 0.25);
  border-radius: 8px;
  background: var(--color-surface);
  font: inherit;
  cursor: pointer;
  color: var(--color-text);
}

.cal-day.cal-empty {
  border: none;
  background: transparent;
  cursor: default;
}

.cal-day.cal-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cal-day.cal-selected:not(.cal-disabled) {
  background: var(--color-accent-dark);
  color: #fff;
  border-color: var(--color-accent-dark);
}

.cal-day:hover:not(.cal-disabled):not(.cal-empty) {
  border-color: var(--color-accent);
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.time-slot {
  min-width: 5.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(74, 143, 122, 0.4);
  background: var(--color-surface);
  font: inherit;
  cursor: pointer;
}

.time-slot:hover:not(:disabled) {
  border-color: var(--color-accent-dark);
  background: var(--color-tint);
}

.time-slot.is-selected {
  background: var(--color-accent-dark);
  color: #fff;
  border-color: var(--color-accent-dark);
}

.time-slot.is-taken {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.form-grid--wide {
  max-width: none;
}

.booking-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(74, 143, 122, 0.2);
}

.confirm-dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1.25rem;
  font-size: 0.95rem;
}

.confirm-dl dt {
  color: var(--color-muted);
  font-weight: 500;
}

.confirm-dl dd {
  margin: 0;
}

.success-panel {
  padding: 1.75rem;
}

.success-panel h2 {
  margin-top: 0;
}

/* Star rating display */
.stars {
  color: var(--color-pink);
  letter-spacing: 0.05em;
  font-size: 1.1rem;
}

.review-card {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(74, 143, 122, 0.12);
}

.review-card .stars {
  margin-bottom: 0.5rem;
}

.review-meta {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
}

/* Map */
.map-embed {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  margin-top: 1rem;
  box-shadow: var(--shadow-strong);
  border: 3px solid rgba(74, 143, 122, 0.28);
}

.gallery-section-title {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  font-family: var(--font-display);
  padding-bottom: 0.35rem;
  border-bottom: 3px solid rgba(74, 143, 122, 0.45);
  color: var(--color-accent-dark);
}

.gallery-section-title:first-child {
  margin-top: 0;
}

/* Admin table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(74, 143, 122, 0.15);
  vertical-align: top;
}

.admin-table th {
  background: var(--color-tint);
  font-family: var(--font-display);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pin-form {
  max-width: 320px;
  margin-bottom: 2rem;
}
