/*
  Mila’s Eden — Modern Luxury Lodge Template
  Palette: earthy tones, deep greens, warm neutrals
  Typography: Cormorant Garamond (display), Inter (body)
*/

/* Reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }

:root{
  --bg: #f6f2ea;
  --surface: #ffffff;
  --surface-2: #f0ece2;
  --ink: #0f1712;
  --muted: rgba(15, 23, 18, 0.72);
  --muted-2: rgba(15, 23, 18, 0.55);

  --forest: #1f2a22;
  --sage: #5d6b55;
  --moss: #3a4a3f;
  --sand: #e9e5dc;
  --clay: #b7a58f;

  --border: rgba(31, 42, 34, 0.14);
  --shadow: 0 18px 60px rgba(15, 23, 18, 0.10);
  --shadow-soft: 0 10px 30px rgba(15, 23, 18, 0.08);

  --radius: 18px;
  --radius-lg: 26px;

  --container: 1120px;
}

html{
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body{
  background: radial-gradient(1200px 600px at 20% -10%, rgba(93, 107, 85, 0.12), transparent 55%),
              radial-gradient(1000px 600px at 90% 10%, rgba(183, 165, 143, 0.14), transparent 60%),
              var(--bg);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.skip-link{
  position: absolute;
  left: -9999px;
  top: 10px;
  background: var(--forest);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 9999;
}
.skip-link:focus{ left: 12px; }

/* Header / Nav */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 234, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 18px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), transparent 55%),
    linear-gradient(145deg, var(--sage), var(--forest));
  box-shadow: 0 10px 30px rgba(31, 42, 34, 0.18);
}
.brand-text{ display: grid; line-height: 1.1; }
.brand-name{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand-sub{
  font-size: 0.78rem;
  color: var(--muted-2);
}

.nav-menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-link{
  text-decoration: none;
  color: var(--muted);
  padding: 10px 8px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover{ color: var(--ink); background: rgba(233, 229, 220, 0.8); }
.nav-link.is-active{ color: var(--ink); background: rgba(233, 229, 220, 0.95); }
.nav-cta{ margin-left: 6px; }

.nav-toggle{
  display: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
}
.nav-toggle-lines{
  width: 18px;
  height: 12px;
  display: block;
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after,
.nav-toggle-lines{
  background: transparent;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.nav-toggle-lines::before{ top: 2px; }
.nav-toggle-lines::after{ top: 8px; }
.nav.is-open .nav-toggle-lines::before{ top: 5px; transform: rotate(45deg); }
.nav.is-open .nav-toggle-lines::after{ top: 5px; transform: rotate(-45deg); }

/* Type */
.display{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  margin: 10px 0 10px;
}
.h2{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  margin: 0 0 10px;
}
.h3{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.45rem;
  margin: 0 0 6px;
}
.kicker{
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.86);
}
.lead{
  font-size: 1.18rem;
  margin: 0 0 10px;
  color: rgba(255,255,255,0.92);
}
.sublead{
  max-width: 60ch;
  color: rgba(255,255,255,0.86);
  margin: 0 auto;
}
.muted{ color: var(--muted); }

/* Buttons / Links */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  cursor: pointer;
  font-weight: 500;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(145deg, var(--sage), var(--forest));
  color: #fff;
  box-shadow: 0 14px 40px rgba(31, 42, 34, 0.18);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 18px 60px rgba(31, 42, 34, 0.22); }
.btn-ghost{
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.10);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.16); }
.btn-soft{
  background: rgba(233, 229, 220, 0.9);
  border-color: rgba(31, 42, 34, 0.10);
  color: var(--ink);
}
.btn-soft:hover{ transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.text-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--forest);
  border-bottom: 1px solid rgba(31, 42, 34, 0.22);
  padding-bottom: 2px;
}
.text-link:hover{ border-bottom-color: rgba(31, 42, 34, 0.5); }

/* Layout */
.section{ padding: 74px 0; }
.section-bleed{
  background: linear-gradient(180deg, rgba(233, 229, 220, 0.55), rgba(233, 229, 220, 0.18));
  border-top: 1px solid rgba(31, 42, 34, 0.06);
  border-bottom: 1px solid rgba(31, 42, 34, 0.06);
}
.section-head{ margin-bottom: 26px; max-width: 70ch; }
.grid{ display: grid; gap: 28px; }
.grid-2{ grid-template-columns: 1.05fr 0.95fr; }
.grid-vcenter{ align-items: center; }
.spacer-16{ height: 16px; }

.cards{ display: grid; gap: 18px; }
.cards-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(31, 42, 34, 0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform: translateY(-3px); box-shadow: var(--shadow); }
.card-media{ height: 210px; overflow: hidden; background: var(--sand); }
.card-body{ padding: 18px 18px 20px; }
.meta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}
.meta{
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(233, 229, 220, 0.85);
  border: 1px solid rgba(31, 42, 34, 0.10);
  padding: 6px 10px;
  border-radius: 999px;
}

.pill-row{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.pill{
  font-size: 0.86rem;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(31, 42, 34, 0.10);
  color: var(--muted);
}

/* Hero */
.hero{
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-media{
  position: absolute;
  inset: 0;
}
.hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.hero-scrim{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 18, 0.55), rgba(15, 23, 18, 0.45)),
    radial-gradient(900px 500px at 50% 30%, rgba(15, 23, 18, 0.28), transparent 65%);
}
.hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 84px 0;
}
.hero-home .display{
  color: #fff;
}
.hero-actions{ display: flex; justify-content: center; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

/* Media cards */
.image-card, .map-card{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(31, 42, 34, 0.10);
  box-shadow: var(--shadow-soft);
  background: var(--sand);
}
.img-cover{ width: 100%; height: 100%; object-fit: cover; }

.image-grid{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.image-grid .span-2{ grid-column: span 2; }

/* Map marker */
.map-card{ position: relative; aspect-ratio: 12 / 7; }
.map-marker{
  position: absolute;
  left: 52%;
  top: 52%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(31, 42, 34, 0.95);
  box-shadow: 0 0 0 8px rgba(31, 42, 34, 0.18);
  transform: translate(-50%, -100%);
}
.map-marker::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 80%;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 12px solid rgba(31, 42, 34, 0.95);
  transform: translateX(-50%);
}

/* Footer */
.footer{
  padding: 54px 0 26px;
  background: linear-gradient(180deg, rgba(31, 42, 34, 0.92), rgba(31, 42, 34, 0.98));
  color: rgba(255,255,255,0.92);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid{
  display: grid;
  gap: 24px;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
}
.brand-footer .brand-sub{ color: rgba(255,255,255,0.70); }
.footer-title{
  margin: 10px 0 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
}
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer-links a{
  text-decoration: none;
  color: rgba(255,255,255,0.82);
}
.footer-links a:hover{ color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}
.footer .muted{ color: rgba(255,255,255,0.72); }

/* Reveal animations */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .grid-2{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px){
  .nav-toggle{ display: inline-flex; }
  .nav-menu{
    position: fixed;
    inset: 74px 12px auto 12px;
    background: rgba(246, 242, 234, 0.96);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 6px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.is-open .nav-menu{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-cta{ margin: 8px 0 0; }
  .nav-link{ padding: 12px 12px; }
}

@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
  .hero-content{ padding: 72px 0; }
}

/* Page header (internal pages) */
.page-hero{
  padding: 54px 0 10px;
}
.page-hero .hero-shell{
  border-radius: calc(var(--radius-lg) + 6px);
  overflow: hidden;
  border: 1px solid rgba(31, 42, 34, 0.10);
  box-shadow: var(--shadow);
  background: var(--sand);
  position: relative;
  min-height: 320px;
}
.page-hero .hero-shell .hero-scrim{
  background:
    linear-gradient(180deg, rgba(15, 23, 18, 0.52), rgba(15, 23, 18, 0.38)),
    radial-gradient(800px 440px at 40% 35%, rgba(15, 23, 18, 0.20), transparent 68%);
}
.page-hero .hero-shell .hero-content{
  text-align: left;
  padding: 58px 24px;
}
.breadcrumbs{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
}
.breadcrumbs a{ color: rgba(255,255,255,0.90); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.35); }
.breadcrumbs a:hover{ border-bottom-color: rgba(255,255,255,0.7); }

/* Content utilities */
.prose{ max-width: 72ch; }
.list{
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.list li{
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}
.list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(93, 107, 85, 0.7);
  transform: translateY(-50%);
}

.divider{
  height: 1px;
  background: rgba(31, 42, 34, 0.10);
  margin: 22px 0;
}

/* Rooms sections */
.room-section{
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(31, 42, 34, 0.10);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.room-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}
.price-tag{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(233, 229, 220, 0.9);
  border: 1px solid rgba(31, 42, 34, 0.10);
  color: var(--ink);
  font-size: 0.92rem;
}
.amenities{
  display: grid;
  gap: 10px;
  margin-top: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.amenity{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31, 42, 34, 0.10);
  background: rgba(255,255,255,0.68);
  color: var(--muted);
  font-size: 0.92rem;
}

.thumbs{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.thumb{
  border: 1px solid rgba(31, 42, 34, 0.10);
  background: var(--sand);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}
.thumb img{ width: 100%; height: 110px; object-fit: cover; }
.thumb:focus-visible{ outline: 2px solid rgba(93, 107, 85, 0.8); outline-offset: 2px; }

@media (max-width: 980px){
  .room-grid{ grid-template-columns: 1fr; }
  .amenities{ grid-template-columns: 1fr; }
}

/* Forms */
.form-card{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(31, 42, 34, 0.10);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.form{
  display: grid;
  gap: 14px;
}
.field-row{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.field{
  display: grid;
  gap: 8px;
}
.label{
  font-size: 0.92rem;
  color: var(--muted);
}
.input, .select, .textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(31, 42, 34, 0.14);
  background: rgba(255,255,255,0.85);
  padding: 12px 12px;
  color: var(--ink);
  transition: box-shadow .18s ease, border-color .18s ease;
}
.textarea{ min-height: 120px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus{
  outline: none;
  border-color: rgba(93, 107, 85, 0.55);
  box-shadow: 0 0 0 4px rgba(93, 107, 85, 0.18);
}
.form-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hint{ font-size: 0.9rem; color: var(--muted-2); }

@media (max-width: 780px){
  .field-row{ grid-template-columns: 1fr; }
}

/* Gallery */
.filter-bar{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 18px;
}
.chip{
  border: 1px solid rgba(31, 42, 34, 0.14);
  background: rgba(255,255,255,0.62);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.chip:hover{ background: rgba(233, 229, 220, 0.95); color: var(--ink); transform: translateY(-1px); }
.chip.is-active{ background: rgba(233, 229, 220, 0.95); color: var(--ink); }

.gallery-grid{
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.gallery-item{
  grid-column: span 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 34, 0.10);
  background: var(--sand);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  padding: 0;
  text-align: left;
  display: grid;
}
.gallery-item img{ width: 100%; height: 220px; object-fit: cover; }
.gallery-item .cap{
  padding: 12px 12px 14px;
  color: var(--muted);
  font-size: 0.95rem;
}
.gallery-item:focus-visible{ outline: 2px solid rgba(93, 107, 85, 0.8); outline-offset: 2px; }

@media (max-width: 980px){
  .gallery-item{ grid-column: span 6; }
}
@media (max-width: 620px){
  .gallery-item{ grid-column: span 12; }
  .gallery-item img{ height: 210px; }
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(15, 23, 18, 0.92);
  z-index: 9999;
  padding: 18px;
}
.lightbox-inner{
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 12px;
}
.lightbox-figure{
  margin: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  overflow: hidden;
}
.lightbox-img{ width: 100%; height: min(70vh, 680px); object-fit: contain; background: rgba(0,0,0,0.35); }
.lightbox-cap{
  padding: 12px 12px 14px;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}
.lightbox-close{
  position: fixed;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.10);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
}
.lightbox-prev, .lightbox-next{
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  font-size: 26px;
}
.lightbox-prev:hover, .lightbox-next:hover, .lightbox-close:hover{ background: rgba(255,255,255,0.14); }
@media (max-width: 740px){
  .lightbox-inner{ grid-template-columns: 1fr; }
  .lightbox-prev, .lightbox-next{ display: none; }
}

/* Modal (forms) */
.modal{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 18, 0.62);
  z-index: 9999;
  padding: 18px;
}
.modal-card{
  width: min(680px, 100%);
  border-radius: 18px;
  background: rgba(246, 242, 234, 0.96);
  border: 1px solid rgba(31, 42, 34, 0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.modal-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(31, 42, 34, 0.10);
}
.modal-title{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
}
.modal-x{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(31, 42, 34, 0.14);
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 20px;
}
.modal-body{ padding: 14px 16px; color: var(--ink); }
.modal-actions{
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(31, 42, 34, 0.10);
  display: flex;
  justify-content: flex-end;
}
.modal-summary{
  margin-top: 12px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(31, 42, 34, 0.10);
  border-radius: 14px;
  padding: 12px;
}

/* Availability calendar */
.cal-head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.cal-title{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.6rem;
}
.cal-legend{
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--muted-2);
  font-size: 0.9rem;
}
.cal-dot{ width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.cal-dot-available{ background: rgba(93, 107, 85, 0.85); }
.cal-dot-busy{ background: rgba(183, 165, 143, 0.95); }
.cal-dot-selected{ background: rgba(31, 42, 34, 0.98); }
.cal-grid{
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}
.cal-dow{
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  padding: 6px 2px;
}
.cal-cell{
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(31, 42, 34, 0.12);
  background: rgba(255,255,255,0.78);
  color: var(--ink);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.cal-cell:hover{ transform: translateY(-1px); box-shadow: 0 10px 26px rgba(15,23,18,0.10); background: rgba(233, 229, 220, 0.95); }
.cal-cell.is-empty{ border: none; background: transparent; cursor: default; }
.cal-cell.is-busy{ background: rgba(183, 165, 143, 0.35); cursor: not-allowed; }
.cal-cell.is-past{ opacity: 0.45; cursor: not-allowed; }
.cal-cell.is-selected{ background: rgba(31, 42, 34, 0.96); color: #fff; }
.cal-cell.is-inrange{ background: rgba(93, 107, 85, 0.20); }
.cal-note{ margin: 12px 0 0; }