:root {
  --cream: #faf6ee;
  --cream-soft: #f3ecdd;
  --ink: #1b241f;
  --forest: #17352a;
  --forest-deep: #0f2620;
  --sage: #6f8f7c;
  --sage-light: #cbd9cc;
  --gold: #b8935a;
  --gold-light: #ddc189;
  --ff-display: "Fraunces", serif;
  --ff-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--ff-display);
  margin: 0;
}

.container {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

/* ============ ANIMATIONS ============ */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.22s;
}
.delay-3 {
  animation-delay: 0.34s;
}
.delay-4 {
  animation-delay: 0.46s;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(250, 246, 238, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 0 rgba(23, 53, 42, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-badge {
  display: flex;
  height: 36px;
  width: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
}

.logo-badge svg {
  height: 18px;
  width: 18px;
}

.logo-name {
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--forest);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(27, 36, 31, 0.7);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--forest);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
  transition: opacity 0.2s ease;
}

.phone-link:hover {
  opacity: 0.7;
}

.phone-link svg {
  height: 16px;
  width: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
  padding: 10px 20px;
  font-size: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  background: var(--forest-deep);
  box-shadow: 0 4px 14px rgba(23, 53, 42, 0.2);
}

.btn-primary.large {
  padding: 16px 28px;
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(23, 53, 42, 0.2);
}

.btn-primary.large:hover {
  box-shadow: 0 14px 34px rgba(23, 53, 42, 0.25);
}

.btn-outline {
  border: 1px solid rgba(23, 53, 42, 0.2);
  background: rgba(255, 255, 255, 0.7);
  color: var(--forest);
  gap: 8px;
  min-height: 53px;
  padding: 14px 22px;
  font-size: 15px;
}

.btn-outline svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-outline:hover {
  border-color: rgba(23, 53, 42, 0.4);
  background: #fff;
}

.menu-toggle {
  display: flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--forest);
}

.menu-toggle svg {
  height: 24px;
  width: 24px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(23, 53, 42, 0.1);
  background: var(--cream);
  padding: 24px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu nav a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(27, 36, 31, 0.8);
}

.mobile-menu-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-actions .phone-link {
  justify-content: center;
  border: 1px solid rgba(23, 53, 42, 0.2);
  border-radius: 999px;
  padding: 12px 20px;
}

.mobile-menu-actions .btn-primary {
  padding: 12px 20px;
  text-align: center;
}

@media (min-width: 1024px) {
  .main-nav,
  .header-actions {
    display: flex;
  }
  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  display: flex;
  min-height: calc(100dvh - 72px);
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 64px 0;
}

.hero-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(70px);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-blob-a {
  top: -160px;
  right: -160px;
  height: 512px;
  width: 512px;
  background: rgba(203, 217, 204, 0.4);
  animation: driftA 16s ease-in-out infinite;
}

.hero-blob-b {
  top: 33%;
  left: -128px;
  height: 384px;
  width: 384px;
  background: rgba(221, 193, 137, 0.3);
  animation: driftB 19s ease-in-out infinite;
}

@keyframes driftA {
  0%, 100% { margin: 0; }
  50% { margin: -18px 24px 18px -24px; }
}

@keyframes driftB {
  0%, 100% { margin: 0; }
  50% { margin: 22px -18px -22px 18px; }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 64px;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.hero-copy {
  max-width: 560px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(23, 53, 42, 0.15);
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
}

.dot-gold {
  height: 6px;
  width: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.hero h1 {
  margin-top: 24px;
  text-wrap: balance;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--forest);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 60px;
  }
}

.hero-copy > p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(27, 36, 31, 0.7);
}

.hero-ctas {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 639px) {
  .hero-ctas .btn {
    width: 100%;
  }

  .hero-ctas .btn-outline {
    min-height: 50px;
    padding: 13px 20px;
    font-size: 14px;
  }
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
  }
}

.hero-social-proof {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  height: 40px;
  width: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--cream);
  margin-left: -12px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.star-row {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.star-row svg {
  height: 16px;
  width: 16px;
}

.rating-caption {
  margin: 2px 0 0;
  font-size: 14px;
  color: rgba(27, 36, 31, 0.6);
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 30px 60px -20px rgba(23, 53, 42, 0.35);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-image-frame img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .hero-image-frame {
    max-width: none;
  }
}

.floating-card {
  position: absolute;
  display: none;
  max-width: 208px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
  animation: float-card 4.5s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-card p:first-child {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--forest);
}

.floating-card p:last-child {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(27, 36, 31, 0.6);
}

.floating-card-left {
  left: -16px;
  top: 32px;
}

.floating-card-right {
  right: -8px;
  bottom: -24px;
  background: var(--forest);
  color: var(--cream);
  animation-delay: 0.6s;
}

.floating-card-right p:last-child {
  color: rgba(250, 246, 238, 0.8);
  font-size: 12px;
}

@media (min-width: 640px) {
  .floating-card {
    display: block;
  }
}

@media (min-width: 1024px) {
  .floating-card-left {
    left: -32px;
  }
  .floating-card-right {
    right: -32px;
  }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  border-top: 1px solid rgba(23, 53, 42, 0.1);
  border-bottom: 1px solid rgba(23, 53, 42, 0.1);
  background: var(--forest);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 40px 0;
}

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

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

@media (min-width: 640px) {
  .trust-item {
    text-align: left;
  }
}

.trust-item .value {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--cream);
}

@media (min-width: 640px) {
  .trust-item .value {
    font-size: 30px;
  }
}

.trust-item .label {
  margin-top: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(250, 246, 238, 0.6);
}

@media (min-width: 640px) {
  .trust-item .label {
    font-size: 14px;
    letter-spacing: normal;
    text-transform: none;
  }
}

/* ============ SECTION HEADINGS (shared) ============ */
.section {
  padding: 96px 0;
}

.section-eyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--sage);
}

.section-heading {
  margin-top: 12px;
  font-size: 36px;
  letter-spacing: -0.01em;
  color: var(--forest);
}

@media (min-width: 640px) {
  .section-heading {
    font-size: 48px;
  }
}

.section-lede {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(27, 36, 31, 0.7);
}

/* ============ SERVICES ============ */
.services-head {
  max-width: 640px;
}

.services-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.service-card {
  border-radius: 24px;
  border: 1px solid rgba(23, 53, 42, 0.1);
  background: rgba(255, 255, 255, 0.6);
  padding: 32px;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 53, 42, 0.2);
  background: #fff;
  box-shadow: 0 20px 40px rgba(23, 53, 42, 0.05);
}

.service-icon {
  display: flex;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(203, 217, 204, 0.5);
  color: var(--forest);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.service-icon svg {
  height: 22px;
  width: 22px;
}

.service-card:hover .service-icon {
  background: var(--forest);
  color: var(--cream);
}

.service-card h3 {
  margin-top: 20px;
  font-size: 20px;
  color: var(--forest);
}

.service-card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(27, 36, 31, 0.65);
}

/* ============ ABOUT ============ */
.about-section {
  background: var(--cream-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 64px;
}

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

.about-media {
  position: relative;
}

.about-media-main {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(23, 53, 42, 0.1);
}

.about-media-main img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-media-secondary {
  position: absolute;
  bottom: -40px;
  right: -24px;
  display: none;
  aspect-ratio: 4 / 3;
  width: 224px;
  overflow: hidden;
  border-radius: 16px;
  border: 4px solid var(--cream-soft);
  box-shadow: 0 20px 50px rgba(23, 53, 42, 0.1);
}

.about-media-secondary img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .about-media-secondary {
    display: block;
  }
}

.differentiators {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.differentiators li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-badge {
  display: flex;
  flex-shrink: 0;
  height: 20px;
  width: 20px;
  margin-top: 2px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
}

.check-badge svg {
  height: 10px;
  width: 10px;
}

.differentiators span {
  font-size: 15px;
  color: rgba(27, 36, 31, 0.75);
}

.about-cta {
  margin-top: 36px;
}

.team-intro {
  margin-top: 112px;
  max-width: 560px;
}

.team-intro h3 {
  margin-top: 12px;
  font-size: 30px;
  color: var(--forest);
}

@media (min-width: 640px) {
  .team-intro h3 {
    font-size: 36px;
  }
}

.team-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

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

.team-photo {
  position: relative;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  width: 160px;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(23, 53, 42, 0.1);
}

.team-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.team-member .name {
  margin-top: 16px;
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--forest);
}

.team-member .role {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(27, 36, 31, 0.6);
}

/* ============ TESTIMONIALS ============ */
.testimonials-head {
  margin: 0 auto;
  display: flex;
  max-width: 640px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonials-columns {
  margin-top: 56px;
  display: flex;
  max-height: 740px;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.testimonial-col {
  display: none;
  flex-direction: column;
  gap: 24px;
  animation: scroll-col linear infinite;
}

.testimonial-col.col-1 {
  display: flex;
  animation-duration: 32s;
}

@media (min-width: 768px) {
  .testimonial-col.col-2 {
    display: flex;
    animation-duration: 40s;
  }
}

@media (min-width: 1024px) {
  .testimonial-col.col-3 {
    display: flex;
    animation-duration: 36s;
  }
}

@keyframes scroll-col {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.testimonial-card {
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  border: 1px solid rgba(23, 53, 42, 0.1);
  background: #fff;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(23, 53, 42, 0.05);
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(27, 36, 31, 0.75);
}

.testimonial-person {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-photo,
.testimonial-avatar {
  height: 40px;
  width: 40px;
  border-radius: 999px;
}

.testimonial-photo {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
}

.testimonial-photo img {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(184, 147, 90, 0.28);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.78), transparent 42%),
    linear-gradient(135deg, rgba(203, 217, 204, 0.72), rgba(250, 246, 238, 0.92));
  color: var(--forest);
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.testimonial-avatar[hidden] {
  display: none;
}

.testimonial-person .name {
  font-family: var(--ff-display);
  font-size: 15px;
  color: var(--forest);
}

.testimonial-person .role {
  font-size: 13px;
  color: rgba(27, 36, 31, 0.55);
}

/* ============ BOOKING ============ */
.booking-section {
  background: var(--forest);
  color: var(--cream);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 1024px) {
  .booking-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.booking-eyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold-light);
}

.booking-info h2 {
  margin-top: 12px;
  font-size: 36px;
  color: var(--cream);
}

@media (min-width: 640px) {
  .booking-info h2 {
    font-size: 48px;
  }
}

.booking-info > p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(250, 246, 238, 0.7);
}

.booking-image {
  position: relative;
  margin-top: 36px;
  display: none;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.booking-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .booking-image {
    display: block;
  }
}

.booking-call-card {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  background: rgba(250, 246, 238, 0.1);
  padding: 20px;
}

.booking-call-card .icon-badge {
  display: flex;
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(250, 246, 238, 0.15);
}

.booking-call-card .icon-badge svg {
  height: 18px;
  width: 18px;
}

.booking-call-card p:first-child {
  font-size: 14px;
  font-weight: 600;
}

.booking-call-card a {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.7);
}

.booking-call-card a:hover {
  color: var(--cream);
}

.booking-form-card {
  border-radius: 24px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  padding: 28px;
}

@media (min-width: 640px) {
  .booking-form-card {
    padding: 40px;
  }
}

#bookingForm {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  #bookingForm {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
}

.field.col-span-2 {
  grid-column: 1 / -1;
}

@media (max-width: 639px) {
  .field.col-span-2 {
    grid-column: auto;
  }
}

.field label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(27, 36, 31, 0.7);
}

.field input,
.field select,
.field textarea {
  margin-top: 6px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(23, 53, 42, 0.15);
  background: #fff;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(27, 36, 31, 0.35);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(23, 53, 42, 0.4);
}

.field textarea {
  resize: none;
}

.time-slot-group {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.time-slot-group label {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(23, 53, 42, 0.15);
  background: #fff;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(27, 36, 31, 0.7);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

.time-slot-group input:checked + span,
.time-slot-group label:has(input:checked) {
  border-color: var(--forest);
  background: rgba(203, 217, 204, 0.4);
  color: var(--forest);
}

.slot-grid {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

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

.slot-grid .slot-message {
  grid-column: 1 / -1;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  color: rgba(27, 36, 31, 0.5);
}

.slot-loading-text {
  padding-bottom: 2px;
  color: rgba(27, 36, 31, 0.62);
  font-weight: 600;
}

.slot-skeleton {
  min-height: 42px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent),
    rgba(23, 53, 42, 0.08);
  background-size: 220% 100%, 100% 100%;
  animation: slotSkeletonShimmer 1.25s ease-in-out infinite;
}

@keyframes slotSkeletonShimmer {
  from { background-position: 120% 0, 0 0; }
  to { background-position: -120% 0, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .slot-skeleton {
    animation: none;
  }
}

.slot {
  position: relative;
  border: 1px solid rgba(23, 53, 42, 0.15);
  border-radius: 10px;
  background: #fff;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.slot.active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--cream);
}

.slot.taken {
  border-color: transparent;
  background: rgba(23, 53, 42, 0.06);
  color: rgba(27, 36, 31, 0.35);
  cursor: not-allowed;
}

.slot.taken::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 50%;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(27, 36, 31, 0.38);
  transform: translateY(-50%);
}

.submit-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(23, 53, 42, 0.2);
  transition: background-color 0.2s ease;
}

.submit-btn:hover {
  background: var(--forest-deep);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-note {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: rgba(27, 36, 31, 0.45);
}

.form-error {
  margin-bottom: 12px;
  border-radius: 12px;
  background: #fef2f2;
  padding: 12px 16px;
  font-size: 14px;
  color: #b91c1c;
}

.form-error[hidden] {
  display: none;
}

.booking-success {
  display: none;
  min-height: 352px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.booking-success.show {
  display: flex;
}

.success-icon {
  display: flex;
  height: 56px;
  width: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(203, 217, 204, 0.6);
  color: var(--forest);
}

.success-icon svg {
  height: 28px;
  width: 28px;
}

.booking-success h3 {
  margin-top: 20px;
  font-size: 24px;
  color: var(--forest);
}

.booking-success p {
  margin-top: 8px;
  max-width: 340px;
  font-size: 15px;
  color: rgba(27, 36, 31, 0.65);
}

.booking-success a {
  font-weight: 600;
  color: var(--forest);
}

.reset-booking {
  margin-top: 28px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--forest-deep);
  color: rgba(250, 246, 238, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 64px 0;
}

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

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

.footer-brand p {
  margin-top: 16px;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-brand .logo-name {
  color: var(--cream);
}

.social-links {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.social-links a {
  display: flex;
  height: 36px;
  width: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(250, 246, 238, 0.15);
  font-size: 12px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  border-color: rgba(250, 246, 238, 0.4);
  color: var(--cream);
}

.footer-col p.col-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
}

.footer-col ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-col ul a {
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--cream);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hours-row .time {
  color: rgba(250, 246, 238, 0.5);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  padding: 32px 0;
  font-size: 12px;
  color: rgba(250, 246, 238, 0.45);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: rgba(250, 246, 238, 0.7);
}
