:root {
  --color-bg: #faf9f7;
  --color-text: #2c2c2c;
  --color-muted: #6b6b6b;
  --color-accent: #7a6e5d;
  --color-accent-hover: #5e5446;
  --color-border: #e2ddd6;
  --color-surface: #ffffff;
  --font-sans: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --max-width: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}

a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1rem; }

/* Header */
.site-header {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--color-text);
  letter-spacing: 0.02em;
  width: 100%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--color-text); text-decoration: none; }
.nav-links a.active { color: var(--color-text); font-weight: 600; }
.nav-links li:last-child a {
  background: var(--color-accent);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-weight: 600;
}
.nav-links li:last-child a:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  color: #fff;
  background: #4a4239;
  padding: 3.5rem 1.5rem;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero .subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p.tagline {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.btn:hover { background: var(--color-accent-hover); text-decoration: none; }
.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

/* Content sections */
.content-section {
  padding: 2.5rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.content-section h1, .content-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.content-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.content-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-section ul, .content-section ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.content-section li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

/* Features grid */
.features {
  padding: 2.5rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.features h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-accent);
  color: #fff;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.cta-section p {
  margin-bottom: 1.5rem;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.amenities-grid li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.amenities-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

/* Gallery */
.gallery { padding: 2.5rem 1rem; max-width: var(--max-width); margin: 0 auto; }
.gallery h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; text-align: center; margin-bottom: 1.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.gallery-grid figure { margin: 0; }
.gallery-grid img { border-radius: 6px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-grid figcaption { font-size: 0.85rem; color: var(--color-muted); margin-top: 0.4rem; text-align: center; }

/* Policy box */
.policy-box {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.policy-box h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.policy-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-box li {
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.policy-box li:last-child {
  border-bottom: none;
}

/* Reviews carousel */
.reviews-carousel {
  padding: 2.5rem 1rem;
  text-align: center;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.reviews-carousel h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.review-track {
  max-width: 600px;
  margin: 0 auto;
}

.review-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: reviewFadeIn 0.4s ease;
}

.review-slide.active {
  display: flex;
}

@keyframes reviewFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
  font-style: italic;
}

.review-text::before { content: "\201C"; }
.review-text::after  { content: "\201D"; }

.review-author {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.review-dot.active {
  background: var(--color-accent);
}

/* Map */
.map-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.map-embed {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}

/* Contact form */
.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-appearance: none;
  transition: border-color 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-success {
  color: var(--color-accent);
  font-size: 1rem;
  padding: 1rem 0;
}
.contact-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

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

/* Gallery slideshow */
.gallery-slideshow { width: 100%; }

.gs-main {
  position: relative;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: #fff;
  font-size: 0.85rem;
  padding: 1.5rem 1rem 0.75rem;
  margin: 0;
}
.gs-prev, .gs-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  border-radius: 4px;
  opacity: 0.8;
  transition: opacity 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.gs-prev { left: 0.5rem; }
.gs-next { right: 0.5rem; }
.gs-prev:hover, .gs-next:hover { opacity: 1; background: rgba(0,0,0,0.6); }

.gs-thumbs {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.gs-thumbs::-webkit-scrollbar { display: none; }
.gs-thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 48px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}
.gs-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs-thumb:hover { opacity: 0.85; }
.gs-thumb.active { border-color: var(--color-accent); opacity: 1; }

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  text-align: center;
}

.social-icons { display: flex; gap: 0.75rem; }
.social-icons a { color: var(--color-muted); }
.social-icons a:hover { color: var(--color-text); }

.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--color-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--color-text); }

/* Booking page */
.booking-page.container { padding: 2rem 1rem; max-width: 1200px; }
.booking-page h1 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.booking-intro {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Calendar */
.booking-calendar-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.calendar-nav h2 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  min-width: 8rem;
  text-align: center;
}
.calendar-prev, .calendar-next, .calendar-today {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.8rem;
  touch-action: manipulation;
}
.calendar-prev:hover, .calendar-next:hover, .calendar-today:hover {
  background: var(--color-bg);
}

.cal-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-grid-wrap {
  position: relative;
}
.cal-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-muted);
  font-size: 0.85rem;
}
.cal-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: cal-spin 0.6s linear infinite;
}
@keyframes cal-spin { to { transform: rotate(360deg); } }
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.15s;
  user-select: none;
  line-height: 1.2;
  gap: 1px;
}
.cal-cell .cal-price {
  font-size: 0.7rem;
  color: var(--color-muted);
  font-weight: 500;
}
.cal-cell.check-in .cal-price,
.cal-cell.check-out .cal-price {
  color: #fff;
}
.cal-cell:hover:not(.blocked):not(.empty) {
  background: var(--color-border);
  color: var(--color-text);
}
.cal-cell.empty {
  cursor: default;
}
.cal-cell.blocked {
  background: #ede9e4;
  color: #b0a89e;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: #b0a89e;
  font-weight: 400;
}
.cal-cell.check-in,
.cal-cell.check-out {
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
}
.cal-cell.check-in {
  border-radius: 4px 0 0 4px;
}
.cal-cell.check-out {
  border-radius: 0 4px 4px 0;
}
.cal-cell.in-range {
  background: rgba(122, 110, 93, 0.15);
  border-radius: 0;
}

.calendar-status {
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-top: 0.75rem;
  min-height: 1.3rem;
}

.calendar-legend {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--color-muted);
}
.legend-item { display: flex; align-items: center; gap: 0.4rem; }
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  border: 1px solid var(--color-border);
}
.legend-dot.available { background: var(--color-surface); }
.legend-dot.blocked { background: #ede9e4; }
.legend-dot.selected { background: var(--color-accent); border-color: var(--color-accent); }

/* Booking sidebar */
.price-summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.price-summary h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.price-line {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.price-total {
  border-top: 1px solid var(--color-border);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-weight: 600;
  color: var(--color-text);
  font-size: 1rem;
}

/* Booking form */
.booking-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.25rem;
}
.booking-form h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.booking-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-appearance: none;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.payment-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

#payment-element {
  margin-bottom: 0.5rem;
}
.card-errors {
  color: #c0392b;
  font-size: 0.8rem;
  min-height: 1.2rem;
  margin-bottom: 1rem;
}
.stripe-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #6b6b6b;
  margin-bottom: 1rem;
}
.stripe-badge .stripe-logo {
  vertical-align: middle;
  position: relative;
  top: 1px;
}
.btn-back {
  width: 100%;
  margin-top: 0.5rem;
  background: transparent;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
}
.btn-back:hover {
  background: var(--color-surface);
  color: var(--color-text);
}

.booking-submit {
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  cursor: pointer;
}
.booking-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.booking-confirmation, .booking-error {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.booking-confirmation h3 { color: var(--color-accent); margin-bottom: 1rem; }
.booking-confirmation p { color: var(--color-muted); font-size: 0.9rem; margin-bottom: 0.75rem; }
.booking-error h3 { color: #c0392b; margin-bottom: 1rem; }
.booking-error p { color: var(--color-muted); margin-bottom: 1rem; }

/* ---- Tablet (min 600px) ---- */
@media (min-width: 600px) {
  .container { padding: 0 1.5rem; }

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

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

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ---- Desktop (min 860px) ---- */
@media (min-width: 860px) {
  .nav-bar {
    justify-content: space-between;
    text-align: left;
  }

  .site-title {
    width: auto;
    font-size: 1.3rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .hero {
    padding: 6rem 2rem;
  }

  .hero .subtitle { font-size: 0.9rem; }
  .hero h1 { font-size: 3rem; }
  .hero p.tagline { font-size: 1.1rem; }

  .content-section { padding: 3.5rem 1.5rem; }
  .content-section h1, .content-section h2 { font-size: 1.8rem; }

  .features { padding: 3.5rem 1.5rem; }
  .features h2 { font-size: 1.8rem; }
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }

  .cta-section { padding: 3.5rem 2rem; }
  .cta-section h2 { font-size: 1.8rem; }

  .gallery { padding: 3rem 1.5rem; }
  .gallery h2 { font-size: 1.8rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .site-footer { margin-top: 3rem; }

  .booking-page { padding: 3rem 0; }
  .booking-page h1 { font-size: 2rem; }
  .booking-intro { max-width: 600px; }

  .booking-layout {
    grid-template-columns: 1fr 340px;
    gap: 2rem;
  }

  .booking-calendar-wrap { padding: 1.5rem; }
  .calendar-nav h2 { font-size: 1.2rem; min-width: 10rem; }
  .calendar-prev, .calendar-next, .calendar-today { font-size: 0.85rem; padding: 0.3rem 0.8rem; }
  .cal-header { font-size: 0.8rem; }
  .cal-cell { font-size: 1rem; }
  .cal-cell .cal-price { font-size: 0.65rem; }
  .calendar-legend { font-size: 0.8rem; gap: 1.5rem; }
  .legend-dot { width: 12px; height: 12px; }
}

/* Cookie consent banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c2520;
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 9999;
  font-size: 0.9rem;
}

#cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: #fff;
}

#cookie-banner a {
  color: var(--color-accent);
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

#cookie-banner .btn {
  padding: 0.45rem 1.2rem;
  font-size: 0.85rem;
}

#cookie-banner .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

#cookie-banner .btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* FAQ */
.faq { margin-top: 1.5rem; }
.faq dt {
  font-weight: 600;
  margin-top: 1.25rem;
  color: var(--color-text);
}
.faq dd {
  margin: 0.35rem 0 0 0;
  color: var(--color-muted);
}

/* Why Book Direct */
.why-book-direct {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

.why-book-direct h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.why-book-direct ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.why-book-direct li {
  font-size: 0.9rem;
  color: var(--color-muted);
  padding-left: 1.2rem;
  position: relative;
}

.why-book-direct li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}
