/* Wells - Redesigned Stylesheet */
/* Premium restaurant SaaS — Forest Moss, Soft Gold, Linen, Heirloom Pink */

/* ========== FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
  --color-forest: #2D4635;
  --color-forest-deep: #1B2E22;
  --color-forest-light: #3A5A47;
  --color-gold: #D4AF37;
  --color-gold-light: #E8CC6E;
  --color-gold-glow: rgba(212, 175, 55, 0.15);
  --color-linen: #FAF9F6;
  --color-linen-warm: #F5F2EC;
  --color-pink: #E59A9A;
  --color-pink-soft: rgba(229, 154, 154, 0.15);

  --color-text: #FAF9F6;
  --color-text-muted: #B8C4BD;
  --color-text-dark: #1B2E22;
  --color-border: rgba(212, 175, 55, 0.2);
  --color-border-strong: rgba(212, 175, 55, 0.4);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
  --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-forest);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
}

p.subheading {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-gold);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.5;
}

/* Also target the about page subheadline */
p.subheadline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-gold);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-gold-light);
}

/* ========== LAYOUT ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 1.5rem;
  position: relative;
}

/* ========== NAVIGATION ========== */
nav {
  background: rgba(27, 46, 34, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 1.5rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  height: 64px;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

nav .logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

nav .logo:hover {
  color: var(--color-gold-light);
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.01em;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transition: var(--transition);
  border-radius: 1px;
}

nav a:hover {
  color: var(--color-gold);
  text-decoration: none;
}

nav a:hover::after {
  width: 100%;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
  min-height: 48px;
  touch-action: manipulation;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), #C19B2C);
  color: var(--color-forest-deep);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.35);
  text-decoration: none;
  color: var(--color-forest-deep);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-secondary {
  background: transparent;
  color: var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-forest-deep);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: scale(0.97);
}

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

/* ========== HERO SECTION ========== */
section.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  margin-top: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, rgba(58, 90, 71, 0.6) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
              var(--color-forest);
}

section.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.hero h1 {
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--color-linen) 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subheading {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-gold);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-text {
  font-size: 1.05rem;
  max-width: 680px;
  margin: 1.5rem auto;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.hero-image {
  margin: 2.5rem auto;
  max-width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.hero-image:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.25);
  transform: translateY(-4px);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image:hover img {
  transform: scale(1.02);
}

/* ========== CARD GRID ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: linear-gradient(145deg, var(--color-forest-deep) 0%, rgba(27, 46, 34, 0.95) 100%);
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-left: 3px solid var(--color-gold);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
  pointer-events: none;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-md), 0 0 30px rgba(212, 175, 55, 0.08);
}

.card:hover::after {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
}

.card h3 {
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card-stat {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.card-subtext {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* ========== TWO COLUMN LAYOUT ========== */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.two-column img {
  width: 100%;
  border-radius: var(--radius-md);
}

/* ========== STATS ========== */
.stat {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 800 !important;
  line-height: 1;
}

/* ========== GRID UTILITY ========== */
.grid {
  display: grid;
}

/* ========== DIVIDERS ========== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 2rem 0;
}

.section-divider {
  height: 1px;
  max-width: 200px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* ========== TABLE ========== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

th, td {
  padding: 1.1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

th {
  background: var(--color-forest-deep);
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

td {
  color: var(--color-text);
  font-size: 0.95rem;
}

tr:hover {
  background: rgba(212, 175, 55, 0.04);
}

.table-scroll {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

/* ========== FORM ELEMENTS ========== */
input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--color-forest-deep);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-glow);
}

/* ========== ACCORDION ========== */
.accordion {
  border-top: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.accordion-header {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: var(--color-forest-deep);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
  touch-action: manipulation;
  min-height: 48px;
}

.accordion-header:hover {
  background: var(--color-forest-light);
  color: var(--color-gold);
}

.accordion-header::after {
  content: '+';
  font-size: 1.25rem;
  transition: var(--transition);
  color: var(--color-gold);
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-item.active .accordion-header {
  background: var(--color-forest-light);
  color: var(--color-gold);
}

.accordion-item.active .accordion-header::after {
  content: '-';
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--color-forest);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding: 1.25rem 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== TIMELINE ========== */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gold), var(--color-gold-glow), var(--color-gold));
}

.timeline-item {
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  text-align: right;
  padding-right: 3rem;
  margin-left: 0;
}

.timeline-item:nth-child(even) {
  text-align: left;
  padding-left: 3rem;
  margin-left: 50%;
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--color-gold);
  border: 3px solid var(--color-forest);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.timeline-content {
  background: var(--color-forest-deep);
  padding: 2rem;
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.timeline-item:nth-child(even) .timeline-content {
  border-left: 1px solid var(--color-border);
  border-right: 3px solid var(--color-gold);
}

/* ========== FOOTER ========== */
footer {
  background: var(--color-forest-deep);
  border-top: 1px solid var(--color-border);
  padding: 4rem 1.5rem 2rem;
  margin-top: 0;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

footer h4 {
  font-family: var(--font-heading);
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

footer p, footer li {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

footer ul {
  list-style: none;
}

footer a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

footer a:hover {
  color: var(--color-gold);
  text-decoration: none;
}

footer::after {
  content: '';
  display: block;
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

/* ========== STICKY CTA (Mobile) ========== */
.sticky-cta-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(27, 46, 34, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  display: none;
  gap: 0.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.sticky-cta-mobile .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

/* ========== SCROLL ANIMATIONS ========== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.scroll-reveal.revealed .card:nth-child(1) { transition-delay: 0ms; }
.scroll-reveal.revealed .card:nth-child(2) { transition-delay: 100ms; }
.scroll-reveal.revealed .card:nth-child(3) { transition-delay: 200ms; }
.scroll-reveal.revealed .card:nth-child(4) { transition-delay: 300ms; }

/* ========== UTILITY ========== */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-pink { color: var(--color-pink); }
.text-muted { color: var(--color-text-muted); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }

/* ========== RESPONSIVE ========== */

/* Mobile: up to 768px */
@media (max-width: 768px) {
  section {
    padding: 3.5rem 1.25rem;
  }

  section.hero {
    padding: 5rem 1.25rem 3rem;
    min-height: auto;
    min-height: 85vh;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  nav ul {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(27, 46, 34, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--color-border);
  }

  nav ul.active {
    transform: translateY(0);
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  nav ul li a::after {
    display: none;
  }

  /* Cards */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  /* Two column becomes stacked */
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column.reverse {
    direction: ltr;
  }

  /* Buttons full-width */
  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  /* Timeline to single column */
  .timeline::before {
    left: 12px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 2.5rem !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
  }

  .timeline-item::before {
    left: 12px;
    transform: translateX(-50%);
  }

  .timeline-content {
    border-left: 3px solid var(--color-gold) !important;
    border-right: 1px solid var(--color-border) !important;
  }

  /* Table */
  table { font-size: 0.85rem; }
  th, td { padding: 0.75rem 0.6rem; }

  /* Footer */
  footer .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Sticky CTA visible */
  .sticky-cta-mobile {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  /* Product page grids */
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Stats grid */
  [style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr 1fr !important;
  }

  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 3rem;
  }
}

/* Desktop refinements */
@media (min-width: 1025px) {
  section {
    padding: 6rem 2rem;
  }

  .container {
    padding: 0 2rem;
  }

  nav {
    padding: 0 2rem;
  }
}

/* ========== BOOKING MODAL ========== */
#booking {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

#booking > div {
  border-radius: var(--radius-lg) !important;
  max-width: 500px;
  width: 100%;
}

/* ========== SPECIAL SECTIONS ========== */
/* Accent sections get a subtle pattern */
section[style*="background-color: var(--color-secondary)"] {
  background: var(--color-forest-deep) !important;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border) !important;
}

/* ========== ICON GRID ========== */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.icon {
  width: 72px;
  height: 72px;
  background: var(--color-forest-deep);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin: 0 auto;
  font-size: 1.75rem;
}

/* ========== PRINT ========== */
@media print {
  nav, .sticky-cta-mobile, #booking { display: none !important; }
  body { background: white; color: black; }
}
