* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #F2EDE4;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
}

nav {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  background: #687A5B;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-brand { display: none; }
.nav-links { display: flex; align-items: center; gap: 48px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  position: absolute; right: 20px;
}
.nav-toggle span {
  display: block; height: 1px;
  background: rgba(255,255,255,0.85);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.page-content {
  margin-top: 56px;
}

.page-content img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column; align-items: flex-start;
    height: auto; padding: 0 20px; gap: 0;
  }
  .nav-brand {
    display: flex; align-items: center; height: 52px;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.9); font-family: 'Cormorant Garamond', serif;
  }
  .nav-links {
    display: none; flex-direction: column;
    width: 100%; padding: 8px 0 20px; gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 11px 0; font-size: 13px; letter-spacing: 0.14em;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
}
