/* ============================================================
   Mountain Morning Theme — warm, earthy, serif-forward
   ============================================================ */
:root {
  --mm-bg:      #FAF3E8;
  --mm-bg-alt:  #F2E8D5;
  --mm-cream:   #FFF8EE;
  --mm-bark:    #3B2612;
  --mm-border:  rgba(120, 70, 20, 0.18);
  --mm-shadow:  0 4px 18px rgba(80, 40, 0, 0.13);
  --mm-r:       6px;
  --mm-rs:      4px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

body.theme-mountain-morning {
  margin: 0;
  background: var(--mm-bg);
  color: var(--mm-bark);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--c1); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute; left: -999px; top: 10px;
  padding: 8px 14px; background: var(--mm-bg);
  border: 1px solid var(--mm-border);
}
.skip-link:focus { left: 14px; z-index: 9999; }

.wrap { width: min(1100px, calc(100% - 36px)); margin: 0 auto; }

/* ---- Header ---- */
.mm-header {
  background: var(--c2);
  border-bottom: 4px solid var(--c1);
  position: sticky; top: 0; z-index: 50;
}

.mm-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 0;
}

.mm-brand {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
}
.mm-brand-logo {
  width: 46px; height: 46px; border-radius: var(--mm-r); object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
}
.mm-brand-mark {
  width: 46px; height: 46px; border-radius: var(--mm-r); background: var(--c1);
  border: 2px solid rgba(255,255,255,0.3);
}
.mm-brand-name {
  font-size: 1.25rem; font-weight: bold; letter-spacing: 0.02em;
  color: rgba(255,248,235,0.95);
}

.mm-nav { display: flex; gap: 4px; }
.mm-nav-link {
  font-family: Georgia, serif; font-size: 14px; color: rgba(255,248,235,0.82);
  padding: 7px 13px; border-radius: 3px; text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.mm-nav-link:hover { background: rgba(255,255,255,0.12); color: #fff; }

.mm-btn { display: inline-block; padding: 10px 20px; border-radius: var(--mm-rs); font-family: Georgia, serif; font-weight: bold; text-decoration: none; transition: opacity 0.2s; }
.mm-btn-order { background: var(--c1); color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.mm-btn-order:hover { opacity: 0.88; }

/* ---- Hero ---- */
.mm-hero {
  background: var(--c2);
  background-image: linear-gradient(180deg, var(--c2) 0%, color-mix(in srgb, var(--c2) 70%, #1a0a00) 100%);
  text-align: center; padding: 50px 0 0;
  position: relative;
}
.mm-hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 60px; background: var(--mm-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.mm-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: rgba(255,248,235,0.97);
  letter-spacing: -0.01em; margin: 0 auto 24px;
  font-weight: normal; line-height: 1.15;
  max-width: 700px; padding: 0 20px;
}

/* Contact strip */
.mm-contact-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; padding-bottom: 32px;
}
.mm-contact-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,240,200,0.25);
  padding: 9px 16px; border-radius: 3px; font-size: 14px;
  color: rgba(255,248,235,0.9);
}
.mm-contact-chip i { width: 16px; height: 16px; flex-shrink: 0; }
.mm-contact-chip a { color: inherit; }
.mm-dir-link { margin-left: 8px; text-decoration: underline; color: var(--c1); }
.mm-dir-link:hover { opacity: 0.8; }
.mm-email-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  color: inherit; font: inherit; text-decoration: underline;
}

/* Carousel */
.mm-carousel-wrap { padding: 0 0 70px; }
.mm-swiper {
  width: 100%; height: 420px; border-radius: var(--mm-r);
  overflow: hidden; box-shadow: var(--mm-shadow);
  border: 3px solid rgba(255,240,200,0.2);
}
.mm-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mm-swiper .swiper-button-prev,
.mm-swiper .swiper-button-next { color: rgba(255,248,235,0.9); }
.mm-swiper .swiper-pagination-bullet { background: rgba(255,248,235,0.5); opacity: 1; }
.mm-swiper .swiper-pagination-bullet-active { background: var(--c1); }

/* ---- Sections ---- */
.mm-section { padding: 52px 0; }
.mm-section-cream { background: var(--mm-cream); }

.mm-section-title {
  font-size: 1.9rem; font-weight: normal; color: var(--c2);
  margin: 0 0 28px; display: flex; align-items: center; gap: 12px;
  border-bottom: 2px solid var(--mm-border); padding-bottom: 12px;
}
.mm-title-leaf { color: var(--c1); font-size: 1rem; }

/* About */
.mm-prose-card {
  background: #fff; border: 1px solid var(--mm-border); border-left: 5px solid var(--c1);
  padding: 28px 32px; border-radius: var(--mm-rs);
  box-shadow: var(--mm-shadow); max-width: 760px;
}
.mm-prose-card p { color: var(--mm-bark); line-height: 1.8; margin: 0 0 1em; }
.mm-prose-card a { color: var(--c1); text-decoration: underline; }

/* Socials */
.mm-socials { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.mm-social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--mm-r);
  border: 1px solid var(--mm-border); background: var(--mm-bg-alt);
  color: var(--c2); transition: background 0.2s, color 0.2s;
}
.mm-social-icon:hover { background: var(--c2); color: #fff; }
.mm-social-icon svg { width: 18px; height: 18px; }

/* Hours — flex wrap so a partial last row stays centered (4 over 3) */
.mm-hours-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px;
}
.mm-hours-row {
  flex: 0 1 250px;
  background: #fff; padding: 14px 20px;
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-rs);
  box-shadow: var(--mm-shadow);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  transition: background 0.15s;
}
.mm-hours-row.mm-today { background: color-mix(in srgb, var(--c1) 12%, #fff); }
.mm-day { font-weight: bold; color: var(--c2); }
.mm-time { color: var(--mm-bark); opacity: 0.75; font-size: 14px; }
.mm-time em { font-style: italic; opacity: 0.6; }

/* Map */
.mm-map-wrap {
  border-radius: var(--mm-r); overflow: hidden;
  border: 2px solid var(--mm-border); box-shadow: var(--mm-shadow);
}
.mm-map { height: 380px; width: 100%; }

/* Footer */
.mm-footer {
  background: var(--c2); border-top: 4px solid var(--c1);
  padding: 22px 0;
}
.mm-footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; color: rgba(255,248,235,0.82); font-size: 14px;
}
.mm-footer-peak { font-size: 1.3rem; color: var(--c1); margin-right: 6px; }
.mm-footer-muted { opacity: 0.55; }

/* Responsive */
@media (max-width: 700px) {
  .mm-nav { display: none; }
  .mm-hero { padding: 36px 0 0; }
  .mm-swiper { height: 260px; }
  .mm-hours-row { flex-basis: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
