  html { scroll-behavior: smooth; }
  body { font-family: 'Montserrat', sans-serif; }
  h1, h2, h3, h4, .font-display { font-family: 'Teko', sans-serif; }

  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .accent-underline {
    position: relative;
    display: inline-block;
  }
  .accent-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #39ff14, #8cff6b);
    border-radius: 2px;
  }
  .accent-underline.mx-auto::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .card-hover {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }
  .card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.5);
  }

  .about-story {
    position: relative;
    padding: 1.25rem 1.35rem;
    border-left: 3px solid #39ff14;
    border-radius: 0 0.75rem 0.75rem 0;
    color: #cbd5e1;
    background: rgba(57,255,20,0.045);
  }

  .about-story p {
    margin: 0;
    line-height: 1.7;
  }

  .about-story footer {
    margin-top: 0.8rem;
    color: #8cff6b;
    font: 600 0.85rem 'Montserrat', sans-serif;
  }

  .hero-bg {
    background-image:
      radial-gradient(circle at 20% 20%, rgba(57,255,20,0.12), transparent 45%),
      radial-gradient(circle at 80% 60%, rgba(57,255,20,0.09), transparent 50%),
      linear-gradient(160deg, #0a0e14 0%, #12161f 50%, #1a1f2b 100%);
  }

  .grain::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  ::selection { background: #39ff14; color: #0a0e14; }

  .scrollbar-thin::-webkit-scrollbar { height: 6px; }
  .scrollbar-thin::-webkit-scrollbar-thumb { background: #39ff14; border-radius: 10px; }
  .scrollbar-thin::-webkit-scrollbar-track { background: #1a1f2b; }

  .star { color: #39ff14; }

  .public-calendar-shell {
    padding: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    background: rgba(15,23,42,0.6);
  }

  .public-calendar-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .public-calendar-month {
    margin: 0;
    color: #fff;
    font: 700 1.35rem 'Teko', sans-serif;
    text-align: center;
  }

  .public-calendar-nav {
    width: 2.5rem;
    height: 2.5rem;
    color: #f1f5f9;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 0.6rem;
    background: rgba(255,255,255,0.06);
    cursor: pointer;
    transition: 160ms ease;
  }

  .public-calendar-nav:hover:not(:disabled) {
    color: #0a0e14;
    border-color: #39ff14;
    background: #39ff14;
  }

  .public-calendar-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .public-calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    color: #94a3b8;
    font-size: 0.75rem;
    flex-wrap: wrap;
  }

  .public-calendar-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }

  .status-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
  }

  .status-dot.status-available { background: #39ff14; }
  .status-dot.status-booked { background: #ff4757; }
  .status-dot.status-unavailable { background: #94a3b8; }

  .public-calendar-weekdays,
  .public-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .public-calendar-weekdays {
    margin-bottom: 0.45rem;
    color: #64748b;
    font: 600 0.7rem 'Montserrat', sans-serif;
    text-align: center;
  }

  .public-calendar-day {
    min-height: 3.5rem;
    color: #f8fafc;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 0.55rem;
    background: rgba(255,255,255,0.035);
    font: 700 0.9rem 'Teko', sans-serif;
    cursor: pointer;
    transition: transform 150ms ease, filter 150ms ease;
  }

  .public-calendar-day:hover {
    filter: brightness(1.25);
    transform: scale(1.035);
  }

  .public-calendar-day.empty {
    border: 0;
    background: transparent;
    pointer-events: none;
  }

  .public-calendar-day.status-available {
    color: #8cff6b;
    border-color: rgba(57,255,20,0.45);
    background: rgba(57,255,20,0.15);
  }

  .public-calendar-day.status-booked {
    color: #ff8b95;
    border-color: rgba(255,71,87,0.55);
    background: rgba(255,71,87,0.15);
  }

  .public-calendar-day.status-unavailable {
    color: #cbd5e1;
    border-color: rgba(148,163,184,0.4);
    background: rgba(148,163,184,0.15);
  }

  .public-calendar-day.has-time-segments,
  .public-calendar-day.has-time-segments:hover {
    background: var(--public-calendar-day-fill);
  }

  .public-calendar-day.today {
    box-shadow: inset 0 0 0 2px #fff;
  }

  .public-calendar-details {
    margin-top: 1.25rem;
    padding: 1rem;
    color: #94a3b8;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.75rem;
    background: rgba(2,6,23,0.48);
    font-size: 0.85rem;
  }

  .public-calendar-details h4 {
    margin: 0 0 0.7rem;
    color: #fff;
    font: 700 1rem 'Teko', sans-serif;
  }

  .public-calendar-event + .public-calendar-event {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .public-calendar-event p,
  .public-calendar-details > p {
    margin: 0.25rem 0;
  }

  .public-detail-status { font-weight: 700; }
  .public-detail-status.status-available { color: #8cff6b; }
  .public-detail-status.status-booked { color: #ff8b95; }
  .public-detail-status.status-unavailable { color: #cbd5e1; }

  .public-calendar-message {
    margin: 1rem 0 0;
    color: #ff8b95;
    text-align: center;
    font-size: 0.85rem;
  }

  @media (max-width: 540px) {
    .public-calendar-shell { padding: 0.85rem; }
    .public-calendar-weekdays,
    .public-calendar-days { gap: 0.25rem; }
    .public-calendar-day { min-height: 2.7rem; border-radius: 0.42rem; }
  }

  #mobile-menu { transition: max-height 0.35s ease, opacity 0.3s ease; }
