/* Base Reset & Font */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Libre Baskerville', serif;
  background: #fff;
  color: #1f2a26;
}

/* Header */
.mobile-header {
  height: 80px;
  background-color: #f0ede8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.logo {
  height: 68px;
  width: auto;
}
.site-title {
  font-size: 11px;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #1f2a26;
  white-space: nowrap;
}
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #1f2a26;
  border-radius: 1px;
}

/* Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 42, 38, 0.3);
  z-index: 998;
}

/* Mobile Slide-In Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -70%;
  height: 100%;
  width: 70%;
  background-color: #f0ede8;
  box-shadow: -2px 0 6px rgba(0,0,0,0.1);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  transition: right 0.3s ease;
  z-index: 999;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu-overlay.active {
  display: block;
}
.close-menu {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 16px;
  color: #1f2a26;
  cursor: pointer;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}
.mobile-nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: #1f2a26;
}
.current-page-indicator {
  margin-top: 40px;
  font-size: 13px;
  color: #1f2a26;
  border-top: 1px solid #ccc;
  padding-top: 16px;
  line-height: 1.4;
}

/* Responsive Orientation Fix */
@media screen and (orientation: landscape) {
  .mobile-header {
    height: 92px;
    padding: 0 20px;
  }
  .site-title {
    font-size: 14px;
  }
}