body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: #f6f1e9;
  color: #3e3e3e;
}

/* Hamburger button */
.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  z-index: 2100;
}

/* Menu panel */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100%;
  background: #f7f3ef;
  display: flex;
  flex-direction: column;
  padding: 80px 25px;
  transition: right 0.35s ease;
  z-index: 2000;
  box-shadow: -8px 0 25px rgba(0,0,0,0.08);
}

/* Menu links */
.menu a {
  text-decoration: none;
  color: #3e3e3e;
  font-size: 18px;
  margin: 16px 0;
  cursor: pointer;
}

.menu a:hover {
  opacity: 0.7;
}

/* Menu open */
.menu.open {
  right: 0;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1500;
  backdrop-filter: blur(3px);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* CTA button */
.cta a {
  background: #c8a97e;
  color: white;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

.cta a:hover {
  background: #b89668;
  transform: translateY(-2px);
}