:root {
  --ink: #171313;
  --ink-soft: #3d3534;
  --cream: #f8f3ee;
  --paper: #fffdf9;
  --blush: #eeb6b1;
  --blush-deep: #c96f78;
  --rose: #a94457;
  --line: #dfd2cb;
  --muted: #746b67;
  --cash: #00d64f;
  --gallery-bg: #FFE7CD;
  --gallery-bg-soft: #fff2e2;
  --gallery-line: #e6c4a1;
  --shadow: 0 24px 60px rgba(35, 20, 18, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body { margin: 0; min-width: 320px; background: var(--paper); color: var(--ink); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, video { display: block; width: 100%; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(201, 111, 120, 0.5);
  outline-offset: 3px;
}

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 108px 0; }
.section-soft { background: var(--cream); }
.section-dark { background: linear-gradient(180deg, var(--gallery-bg) 0%, var(--gallery-bg-soft) 100%); color: var(--ink); }

.announcement {
  min-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 7px 20px;
  background: var(--ink);
  color: #f9e9e5;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.announcement span + span::before { content: "·"; margin-right: 32px; color: var(--blush); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 10px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid rgba(72, 50, 44, 0.12);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 12px; border: 0; background: none; padding: 0; cursor: pointer; text-align: left; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand span { display: grid; gap: 2px; }
.brand strong { font: 700 18px/1.1 Georgia, serif; }
.brand small { color: var(--muted); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav button, .mobile-menu button, .site-footer button {
  border: 0;
  background: none;
  cursor: pointer;
}
.desktop-nav button { padding: 10px 12px; color: #4f4541; font-size: 14px; }
.desktop-nav button:hover { color: var(--rose); }
.header-book { justify-self: end; }
.menu-button { display: none; justify-self: end; border: 0; background: none; padding: 8px; cursor: pointer; }
.mobile-menu { display: none; }

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--rose); color: white; border-color: var(--rose); }
.button-primary:hover { background: #8f374a; border-color: #8f374a; }
.button-outline { background: transparent; border-color: #a8978e; color: var(--ink); }
.button-outline:hover { border-color: var(--rose); }
.button-light { background: white; color: var(--ink); border-color: white; }
.button-small { min-height: 42px; padding-inline: 18px; }
.button-cash { background: var(--cash); color: #05240e; border-color: var(--cash); }

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; }
h1 { max-width: 800px; margin-bottom: 22px; font-size: clamp(46px, 6vw, 86px); line-height: 0.98; letter-spacing: -0.04em; }
h2 { margin-bottom: 18px; font-size: clamp(36px, 4vw, 58px); line-height: 1.03; letter-spacing: -0.035em; }
p { color: var(--muted); line-height: 1.75; }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: 76px;
  align-items: center;
  padding-block: 88px 110px;
}
.hero-copy > p { max-width: 620px; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-details { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; color: var(--ink-soft); font-size: 14px; }
.hero-details span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--line); }
.trust-row div { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; }
.trust-row svg { color: var(--rose); }
.hero-media { position: relative; min-height: 590px; }
.hero-photo { position: absolute; margin: 0; overflow: hidden; background: #ddd; box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { inset: 22px 94px 10px 0; }
.hero-photo-main figcaption { position: absolute; left: 20px; bottom: 18px; padding: 10px 14px; background: rgba(23, 19, 19, 0.88); color: white; font-size: 13px; font-weight: 700; }
.hero-photo-small { width: 190px; height: 245px; right: 0; border: 8px solid var(--paper); }
.hero-photo-top { top: 0; }
.hero-photo-bottom { bottom: 18px; }
.hero-logo { position: absolute; z-index: 2; width: 150px; height: 150px; object-fit: contain; left: -58px; bottom: -22px; filter: drop-shadow(0 16px 26px rgba(46, 23, 19, 0.18)); }

.section-heading { display: grid; grid-template-columns: 1fr minmax(300px, 460px); gap: 80px; align-items: end; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p { margin-bottom: 4px; }
.section-heading-light p { color: #6f6159; }
.section-heading-light .eyebrow { color: var(--rose); }

.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter-button { border: 1px solid #d7b79a; background: rgba(255, 255, 255, 0.55); color: #5f4d46; padding: 10px 15px; cursor: pointer; font-size: 13px; box-shadow: 0 8px 18px rgba(103, 70, 44, 0.06); }
.filter-button.active, .filter-button:hover { background: #fff7ef; border-color: #b98774; color: var(--ink); }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.video-card { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff9f2 0%, #fff1e2 100%); border: 1px solid var(--gallery-line); border-radius: 14px; box-shadow: 0 18px 42px rgba(103, 70, 44, 0.10); }
.video-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: linear-gradient(90deg, #c96f78 0%, #f0b37f 100%); }
.video-frame { aspect-ratio: 4 / 5; background: linear-gradient(180deg, #fffaf5 0%, #f4dcc0 100%); padding: 12px; }
.video-frame video { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; background: #fff; box-shadow: 0 12px 30px rgba(54, 35, 27, 0.10); }
.video-card-body { padding: 22px; }
.video-card-heading { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; }
.card-category { display: inline-flex; align-items: center; padding: 6px 9px; border: 1px solid #efcfb6; background: #fff7ef; color: var(--rose); font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.video-card h3 { margin: 7px 0 0; font-size: 22px; }
.video-card-heading strong { font-size: 21px; color: #8f374a; }
.video-card p { min-height: 50px; margin: 16px 0 20px; color: #6c5d56; font-size: 13px; line-height: 1.6; }
.card-footer { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding-top: 16px; border-top: 1px solid #edd0b7; }
.included { display: inline-flex; align-items: center; gap: 6px; color: #6c5d56; font-size: 12px; padding: 8px 10px; border: 1px solid #efcfb6; background: #fff7ef; }
.book-link { display: inline-flex; align-items: center; gap: 6px; border: 0; background: none; color: var(--blush); padding: 0; cursor: pointer; font-weight: 800; font-size: 12px; }
.center-action { display: flex; justify-content: center; margin-top: 38px; }
.rotate { transform: rotate(180deg); }

.services-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 52px minmax(0, 1fr) 220px 48px; gap: 24px; align-items: center; min-height: 116px; border-bottom: 1px solid var(--line); }
.service-number { color: #a9968f; font: italic 18px Georgia, serif; }
.service-copy h3 { margin-bottom: 7px; font-size: 24px; }
.service-copy p { margin: 0; font-size: 13px; line-height: 1.5; }
.service-meta { display: grid; justify-items: end; gap: 6px; }
.service-meta span { color: var(--rose); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.service-meta strong { font-size: 18px; }
.service-book { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.service-book:hover { background: var(--rose); border-color: var(--rose); color: white; }
.price-note { margin: 20px 0 0; font-size: 12px; }

.product-layout, .oil-layout { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 90px; align-items: center; }
.bundle-gallery { position: relative; min-height: 610px; }
.bundle-gallery figure { position: absolute; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.bundle-gallery img { width: 100%; height: 100%; object-fit: cover; }
.bundle-main { inset: 0 130px 40px 0; }
.bundle-secondary { width: 255px; height: 350px; right: 0; bottom: 0; border: 10px solid var(--cream); }
.product-copy p, .oil-copy p { max-width: 540px; font-size: 17px; }
.product-price { margin-bottom: 14px; color: var(--rose); font: 700 30px Georgia, serif; }
.oil-image-wrap { margin: 0; max-height: 650px; overflow: hidden; }
.oil-image-wrap img { height: 650px; object-fit: cover; }
.small-note { font-size: 12px !important; }

.about-section { background: #efe6df; }
.about-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; }
.about-copy > p { font-size: 17px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
.about-points div { display: flex; align-items: center; gap: 12px; min-height: 70px; padding: 16px; border-top: 1px solid #cbb9ae; font-weight: 700; font-size: 13px; }
.about-points svg { color: var(--rose); }

.booking-section { background: var(--ink); color: white; }
.booking-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 70px; align-items: start; }
.booking-intro { position: sticky; top: 120px; }
.booking-intro .eyebrow { color: var(--blush); }
.booking-intro p { color: #cbbdb6; }
.booking-facts { display: grid; gap: 16px; margin-top: 34px; }
.booking-facts div { display: grid; grid-template-columns: 24px 1fr; gap: 13px; align-items: start; }
.booking-facts svg { color: var(--blush); }
.booking-facts span { display: grid; gap: 3px; color: #d7cbc5; font-size: 13px; }
.booking-facts strong { color: white; }
.deposit-card { margin-top: 34px; padding: 22px; border: 1px solid #524640; background: #211c1b; }
.deposit-card p { margin: 8px 0 12px; font-size: 13px; line-height: 1.55; }
.deposit-card a { display: inline-flex; align-items: center; gap: 7px; color: var(--blush); font-weight: 800; font-size: 13px; }
.booking-form, .booking-success { background: white; color: var(--ink); padding: 38px; box-shadow: 0 26px 70px rgba(0,0,0,.22); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.booking-form label { display: grid; gap: 8px; margin-bottom: 18px; font-size: 12px; font-weight: 800; letter-spacing: 0.02em; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; border: 1px solid #d7cbc5; background: #fffefa; color: var(--ink); padding: 13px 14px; border-radius: 0;
}
.booking-form textarea { resize: vertical; }
.booking-form input[type="file"] { padding: 11px; }
.checkbox-label { grid-template-columns: 20px 1fr !important; align-items: start; font-weight: 500 !important; line-height: 1.55; }
.checkbox-label input { width: 17px; height: 17px; margin-top: 2px; }
.form-submit { width: 100%; }
.form-error { padding: 12px 14px; background: #fff0f0; color: #9d2d3e; font-size: 13px; }
.hidden-field { position: absolute; left: -9999px; }
.booking-success { min-height: 480px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.success-mark { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 24px; background: #dff7e7; color: #15843d; border-radius: 50%; }
.booking-success h3 { font-size: 36px; }
.booking-success p { max-width: 620px; }
.success-links { display: flex; gap: 18px; margin-top: 22px; }
.success-links a { display: inline-flex; align-items: center; gap: 7px; color: var(--rose); font-weight: 800; font-size: 13px; }

.contact-layout { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 86px; }
.contact-card { padding: 42px; background: var(--cream); }
.contact-card h2 { font-size: 42px; }
.contact-links { display: grid; gap: 12px; margin: 30px 0; }
.contact-links > * { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-links svg { color: var(--rose); }
.contact-links span { display: grid; gap: 2px; font-size: 13px; font-weight: 700; }
.contact-links small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; }
.hours-table { margin-top: 26px; }
.hours-table div { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; font-size: 13px; }
.hours-table div:last-child { color: var(--rose); }
.faq-wrap h2 { font-size: 44px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 21px 0; cursor: pointer; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary svg { transform: rotate(180deg); }
.faq-list details p { padding: 0 40px 20px 0; }

.site-footer { padding: 64px 0 24px; background: #0f0d0c; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; }
.footer-brand { display: flex; gap: 16px; align-items: center; }
.footer-brand img { width: 92px; height: 92px; object-fit: contain; }
.footer-brand div, .footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 8px; }
.footer-brand strong { font: 700 20px Georgia, serif; }
.footer-grid h3 { margin-bottom: 6px; font: 700 14px Inter, sans-serif; letter-spacing: .1em; text-transform: uppercase; color: var(--blush); }
.footer-grid a, .footer-grid span, .footer-grid button { color: #cbbdb6; font-size: 13px; text-align: left; padding: 0; }
.footer-grid a:hover, .footer-grid button:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid #2d2725; color: #887c77; font-size: 11px; }

.modal-backdrop { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; background: rgba(16, 13, 12, 0.72); }
.call-modal { position: relative; width: min(510px, 100%); padding: 42px; background: var(--cream); box-shadow: 0 28px 90px rgba(0,0,0,.35); }
.call-modal h2 { font-size: 42px; }
.call-modal p { font-size: 15px; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.modal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.text-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; padding: 0; border: 0; background: none; color: var(--rose); cursor: pointer; font-weight: 800; font-size: 13px; }
.desktop-floating-actions { position: fixed; z-index: 50; right: 22px; bottom: 22px; display: grid; gap: 8px; }
.desktop-floating-actions > * { min-width: 132px; display: inline-flex; justify-content: center; align-items: center; gap: 8px; padding: 12px 16px; border: 0; box-shadow: 0 10px 30px rgba(23,19,19,.2); cursor: pointer; font-weight: 800; font-size: 12px; }
.desktop-floating-actions a { background: var(--ink); color: white; }
.desktop-floating-actions button { background: var(--rose); color: white; }
.mobile-action-bar { display: none; }

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

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-book { display: none; }
  .menu-button { display: block; }
  .mobile-menu { position: fixed; z-index: 39; top: 112px; left: 0; right: 0; display: grid; gap: 4px; padding: 16px 20px 24px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(0,0,0,.08); }
  .mobile-menu button { text-align: left; padding: 13px 8px; }
  .mobile-menu .button { text-align: center; margin-top: 6px; }
  .hero { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { max-width: 760px; }
  .hero-media { min-height: 650px; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-layout, .oil-layout, .about-layout, .booking-layout, .contact-layout { grid-template-columns: 1fr; }
  .booking-intro { position: static; }
  .bundle-gallery { max-width: 680px; }
  .oil-image-wrap { order: -1; max-height: 540px; }
  .oil-image-wrap img { height: 540px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 720px) {
  body { padding-bottom: 66px; }
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding: 74px 0; }
  .announcement { justify-content: flex-start; overflow-x: auto; white-space: nowrap; gap: 20px; font-size: 10px; }
  .announcement span + span::before { margin-right: 20px; }
  .site-header { min-height: 70px; padding: 8px 14px; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 9px; }
  .mobile-menu { top: 104px; }
  h1 { font-size: clamp(44px, 15vw, 64px); }
  h2 { font-size: clamp(35px, 11vw, 48px); }
  .hero { min-height: auto; padding-block: 58px 78px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-details { display: grid; gap: 10px; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-media { min-height: 510px; }
  .hero-photo-main { inset: 10px 52px 0 0; }
  .hero-photo-small { width: 135px; height: 180px; border-width: 6px; }
  .hero-logo { width: 104px; height: 104px; left: -8px; bottom: -28px; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; margin-bottom: 34px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-frame { aspect-ratio: 4 / 5; }
  .service-row { grid-template-columns: 34px minmax(0, 1fr) 40px; gap: 12px; padding: 22px 0; }
  .service-meta { grid-column: 2; grid-row: 2; justify-items: start; }
  .service-book { grid-column: 3; grid-row: 1 / span 2; }
  .service-copy h3 { font-size: 21px; }
  .bundle-gallery { min-height: 480px; }
  .bundle-main { inset: 0 70px 34px 0; }
  .bundle-secondary { width: 190px; height: 260px; border-width: 7px; }
  .about-points { grid-template-columns: 1fr; }
  .booking-form, .booking-success { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-card { padding: 28px 22px; }
  .contact-card h2, .faq-wrap h2 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .modal-actions { grid-template-columns: 1fr; }
  .call-modal { padding: 38px 22px 24px; max-height: calc(100vh - 40px); overflow-y: auto; }
  .call-modal h2 { font-size: 36px; }
  .desktop-floating-actions { display: none; }
  .mobile-action-bar { position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; height: 66px; display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -12px 30px rgba(23,19,19,.12); }
  .mobile-action-bar > * { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; border: 0; background: none; color: var(--ink); font-size: 11px; font-weight: 800; }
  .mobile-action-bar > *:last-child { background: var(--rose); color: white; }
}

@media (max-width: 420px) {
  .brand small { display: none; }
  .trust-row { grid-template-columns: 1fr; }
  .hero-media { min-height: 430px; }
  .hero-photo-small { width: 112px; height: 150px; }
  .bundle-gallery { min-height: 410px; }
  .bundle-secondary { width: 155px; height: 220px; }
  .video-card-body { padding: 18px; }
  .card-footer { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.mobile-menu[hidden], .modal-backdrop[hidden], .desktop-floating-actions[hidden], .booking-success[hidden], .form-error[hidden] { display: none !important; }
.video-extra.is-hidden { display: none; }
.video-card.is-filtered { display: none; }
.point-mark { width: 8px; height: 8px; background: var(--rose); transform: rotate(45deg); flex: 0 0 auto; }

/* Online appointment calendar */
.full-span { grid-column: 1 / -1; }
.form-label { display: block; margin-bottom: 10px; font-size: 12px; font-weight: 800; letter-spacing: 0.02em; }
.calendar-field, .slot-field { margin-bottom: 20px; }
.booking-calendar { overflow: hidden; border: 1px solid #d7cbc5; background: #fffaf5; }
.calendar-header { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; min-height: 58px; border-bottom: 1px solid #e6d8cf; background: #FFE7CD; }
.calendar-header strong { text-align: center; font: 700 20px Georgia, serif; }
.calendar-nav { height: 44px; border: 0; background: transparent; color: var(--rose); cursor: pointer; font-size: 28px; }
.calendar-nav:disabled { opacity: .3; cursor: not-allowed; }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); }
.calendar-weekdays { padding: 10px 8px 5px; color: #7a6b64; font-size: 10px; font-weight: 800; text-align: center; text-transform: uppercase; letter-spacing: .08em; }
.calendar-days { gap: 5px; padding: 8px 10px 14px; }
.calendar-day { min-height: 44px; border: 1px solid transparent; background: transparent; cursor: pointer; font-size: 13px; }
.calendar-day:hover:not(:disabled) { border-color: #d8a88e; background: #fff0e1; }
.calendar-day.is-selected { border-color: var(--rose); background: var(--rose); color: white; font-weight: 800; }
.calendar-day.is-today:not(.is-selected) { border-color: #e9b6a3; }
.calendar-day:disabled { color: #c8bbb3; cursor: not-allowed; text-decoration: line-through; }
.calendar-day.is-empty { visibility: hidden; }
.calendar-help, .slot-status { margin: 9px 0 0; font-size: 12px; line-height: 1.5; }
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.time-slot { min-height: 76px; display: grid; place-items: center; gap: 4px; border: 1px solid #d7cbc5; background: #fffaf5; cursor: pointer; color: var(--ink); font-weight: 800; }
.time-slot small { color: var(--muted); font-size: 10px; font-weight: 600; }
.time-slot:hover:not(:disabled) { border-color: #c77d77; background: #fff0e1; }
.time-slot.is-selected { border-color: var(--rose); background: var(--rose); color: white; }
.time-slot.is-selected small { color: #ffe8e4; }
.time-slot:disabled { opacity: .45; cursor: not-allowed; }

@media (max-width: 560px) {
  .time-slots { grid-template-columns: 1fr; }
  .calendar-days { gap: 3px; padding-inline: 7px; }
  .calendar-day { min-height: 40px; }
}

.sms-booking-note {
  margin-bottom: 16px;
  padding: 18px 20px;
  border: 1px solid #e4c4a7;
  background: #fff4e8;
  color: var(--ink);
}
.sms-booking-note strong { display: block; margin-bottom: 5px; font-family: Georgia, "Times New Roman", serif; font-size: 19px; }
.sms-booking-note p { margin: 0; color: #6c5d56; font-size: 13px; line-height: 1.6; }
.booking-success > .button { margin-top: 10px; }
