@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@400;500;600;700&display=swap");

/* Theme */
:root {
  color-scheme: light;

  --background: 30 25% 97%;
  --foreground: 20 20% 15%;

  --card: 30 20% 99%;
  --card-foreground: 20 20% 15%;

  --primary: 350 35% 45%;
  --primary-foreground: 30 25% 97%;

  --secondary: 30 20% 92%;
  --secondary-foreground: 20 20% 25%;

  --muted: 30 15% 93%;
  --muted-foreground: 20 10% 50%;

  --border: 30 15% 88%;
  --input: 30 15% 88%;

  --rose-gold: 350 30% 60%;
  --champagne: 35 40% 90%;
  --warm-cream: 35 30% 95%;
  --deep-plum: 340 25% 20%;

  --radius: 0.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Lato, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

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

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

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Main */
main {
  flex: 1;
}

.page-wrap {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/* Top bar */
.top-bar {
  background: hsl(var(--deep-plum));
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.8);
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar__addr {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .top-bar__addr {
    display: flex;
  }
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.top-bar svg {
  flex-shrink: 0;
}

/* Header & nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(8px);
}

@supports (backdrop-filter: blur(8px)) {
  .site-header {
    background: hsl(var(--background) / 0.8);
  }
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  padding: 0.25rem 0;
}

.header-inner .nav-mobile-panel {
  flex-basis: 100%;
  width: 100%;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: hsl(var(--foreground));
}

.logo span {
  color: hsl(var(--primary));
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav-toggle-label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: hsl(var(--foreground));
  padding: 0.25rem;
}

@media (min-width: 768px) {
  .nav-toggle-label {
    display: none;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a:not(.btn-primary) {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.nav-desktop a:not(.btn-primary):hover {
  color: hsl(var(--primary));
}

.nav-desktop a.active:not(.btn-primary) {
  color: hsl(var(--primary));
}

.btn-primary {
  display: inline-block;
  border-radius: 2px;
  background: hsl(var(--primary));
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground));
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary--lg {
  padding: 0.75rem 2rem;
}

.btn-primary--xl {
  padding: 0.75rem 2.5rem;
}

.nav-mobile-panel {
  display: none;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  padding: 1rem;
}

.nav-mobile-panel a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
}

.nav-mobile-panel a.active:not(.btn-primary) {
  color: hsl(var(--primary));
}

.nav-mobile-panel .btn-primary {
  margin-top: 0.5rem;
  text-align: center;
  text-transform: none;
  letter-spacing: normal;
}

.nav-toggle:checked ~ .nav-mobile-panel {
  display: block;
}

@media (min-width: 768px) {
  .nav-toggle:checked ~ .nav-mobile-panel {
    display: none;
  }
}

.icon-swap .icon-close {
  display: none;
}

.nav-toggle:checked ~ .nav-toggle-label .icon-menu {
  display: none;
}

.nav-toggle:checked ~ .nav-toggle-label .icon-close {
  display: block;
}

/* Footer */
.site-footer {
  background: hsl(var(--deep-plum));
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.75rem;
  color: hsl(var(--primary-foreground));
}

.site-footer h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.site-footer h4 {
  font-size: 1.125rem;
  font-weight: 500;
}

.site-footer p,
.site-footer li {
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--primary-foreground) / 0.7);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: hsl(var(--primary-foreground));
}

.footer-phone {
  padding-top: 0.25rem;
}

.footer-copy {
  margin-top: 2rem;
  border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.5);
}

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

/* Sections */
.section {
  padding: 5rem 0;
}

.section--muted {
  background: linear-gradient(
    135deg,
    hsl(var(--warm-cream)) 0%,
    hsl(var(--champagne)) 100%
  );
}

/* Section titles */
.section-eyebrow {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--primary));
}

.section-title {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Warm gradient section */
.bg-warm-gradient {
  background: linear-gradient(
    135deg,
    hsl(var(--warm-cream)) 0%,
    hsl(var(--champagne)) 100%
  );
}

/* Hero */
.hero {
  position: relative;
  min-height: 500px;
  height: 85vh;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsl(var(--deep-plum) / 0.7) 0%,
    hsl(var(--deep-plum) / 0.4) 50%,
    hsl(var(--deep-plum) / 0.8) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  height: 100%;
  align-items: center;
}

.hero__inner {
  max-width: 42rem;
  animation: fade-in-up 0.8s ease-out forwards;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: hsl(var(--rose-gold));
}

.hero h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: hsl(var(--primary-foreground));
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

.hero h1 .italic {
  font-style: italic;
  font-weight: 400;
}

.hero__lead {
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: hsl(var(--primary-foreground) / 0.8);
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-outline-light {
  display: inline-block;
  border-radius: 2px;
  border: 1px solid hsl(var(--primary-foreground) / 0.3);
  padding: 0.75rem 2rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground));
  transition: background 0.2s;
}

.btn-outline-light:hover {
  background: hsl(var(--primary-foreground) / 0.1);
}

/* Services alternating */
.services-stack {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .service-row {
    flex-direction: row;
  }

  .service-row--reverse {
    flex-direction: row-reverse;
  }
}

.service-row__media {
  width: 100%;
}

@media (min-width: 768px) {
  .service-row__media {
    width: 50%;
  }
}

.service-row__media .img-rounded {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-row__content {
  width: 100%;
}

@media (min-width: 768px) {
  .service-row__content {
    width: 50%;
  }
}

.service-row h2 {
  margin: 0 0 1.5rem;
  font-size: 1.875rem;
  font-weight: 600;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid hsl(var(--border));
  padding-bottom: 0.75rem;
}

.price-row span:first-child {
  color: hsl(var(--foreground));
}

.price-row span:last-child {
  font-size: 0.875rem;
  font-weight: 600;
  font-style: normal;
  color: hsl(var(--primary));
  white-space: nowrap;
  margin-left: 1rem;
}

.price-subhead {
  margin: 1.5rem 0 0.75rem;
  font-family: Lato, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.price-subhead:first-of-type {
  margin-top: 0;
}

.price-hint {
  display: block;
  margin-top: 0.2rem;
  font-family: Lato, sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  font-style: normal;
  color: hsl(var(--muted-foreground));
}

.price-bullets {
  margin: 0.25rem 0 0.75rem 1.25rem;
  padding: 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

.price-bullets li {
  margin-bottom: 0.25rem;
}

.price-callout {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: hsl(var(--foreground));
  background: hsl(var(--muted));
  border-radius: var(--radius);
  border-left: 3px solid hsl(var(--primary));
}

.services-notes {
  margin-top: 3rem;
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
}

.services-notes h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.services-notes ul {
  margin: 0;
  padding-left: 1.25rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.services-notes li {
  margin-bottom: 0.35rem;
}

/* Service cards grid */
.grid-3 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: hsl(var(--card));
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.service-card__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card__img-wrap img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.service-card__title-row svg {
  flex-shrink: 0;
  color: hsl(var(--primary));
}

.service-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.text-center {
  text-align: center;
}

.link-more {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary));
}

.link-more:hover {
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

.link-more {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary));
}

.link-more:hover {
  text-decoration: underline;
}

/* About section | Background */
.about-block {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.about-block p {
  margin: 0;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
}

.stats {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 640px) {
  .stats {
    gap: 2rem 3rem;
  }
}

.stat {
  text-align: center;
}

.stat__value {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.stat__label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  border-radius: var(--radius);
  background: hsl(var(--card));
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.stars svg {
  width: 1rem;
  height: 1rem;
  fill: hsl(var(--primary));
  color: hsl(var(--primary));
}

.testimonial p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  font-style: italic;
  color: hsl(var(--muted-foreground));
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-style: normal;
  color: hsl(var(--foreground));
}

/* CTA band */
.cta-band {
  background: hsl(var(--deep-plum));
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
}

@media (min-width: 768px) {
  .cta-band h2 {
    font-size: 2.25rem;
  }
}

.cta-band p {
  margin: 0.75rem 0 0;
  color: hsl(var(--primary-foreground) / 0.7);
}

.cta-band .btn-primary {
  margin-top: 1.5rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.page-hero .lead {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: hsl(var(--muted-foreground));
}

.page-hero .lead a {
  color: hsl(var(--primary));
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-hero .lead a:hover {
  opacity: 0.88;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info > * + * {
  margin-top: 2.5rem;
}

.contact-block h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-block h2 svg {
  flex-shrink: 0;
  color: hsl(var(--primary));
}

.contact-block .indent {
  padding-left: 1.75rem;
}

.contact-block p,
.contact-block address {
  margin: 0;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.contact-block a:not(.btn-primary) {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.contact-block a:not(.btn-primary):hover {
  color: hsl(var(--primary));
}

.contact-phone a {
  font-size: 1.125rem;
}

.link-dir {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary));
}

.link-dir:hover {
  text-decoration: underline;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 20rem;
  gap: 1rem;
}

.hours-row span:first-child {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.hours-row span:last-child {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.hours-row.is-closed span:last-child {
  color: hsl(var(--primary));
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: hsl(var(--secondary));
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--secondary-foreground));
}

.amenity svg {
  flex-shrink: 0;
  color: hsl(var(--primary));
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  height: 500px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Booking */
.booking-panel {
  border-radius: var(--radius);
  background: hsl(var(--card));
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  padding: 2rem;
}

@media (min-width: 768px) {
  .booking-panel {
    padding: 2.5rem;
  }
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-2 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.form-optional {
  font-weight: 400;
  color: hsl(var(--muted-foreground));
}

.form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border-radius: 2px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.12);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b5b55' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 6.5rem;
}

.form-hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
}

.form-hint code {
  font-size: 0.92em;
  padding: 0.1em 0.35em;
  border-radius: 2px;
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.booking-success-meta {
  margin-top: 0.75rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding-top: 0.25rem;
}

.form-actions .btn-primary {
  padding: 0.625rem 1.5rem;
}

.btn-outline {
  display: inline-block;
  border-radius: 2px;
  border: 2px solid hsl(var(--border));
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}

.btn-outline:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.alert {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.alert:last-child {
  margin-bottom: 0;
}

.alert h2 {
  margin: 0 0 0.5rem;
  font-size: 1.375rem;
  font-weight: 600;
}

.alert p {
  margin: 0;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
}

.alert ul {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
}

.alert--success {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
}

.alert--error {
  border: 1px solid hsl(var(--primary) / 0.35);
  background: linear-gradient(
    135deg,
    hsl(var(--warm-cream)) 0%,
    hsl(var(--champagne)) 100%
  );
}

.booking-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
