:root{
  --parchment-base:#e2d3b4;
  --parchment-edge:#b9a47f;
  --ink:#2f2721;
  --ink-soft:#463c33;
  --menu-bg:#cec0a1;
  --menu-bg-hover:#c1b190;
  --menu-active:#b7a98c;
}

/* Base */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family:'IM Fell English', Georgia, 'Times New Roman', serif;
  color:var(--ink);
  background-color:var(--parchment-base);
  background-image:url('https://www.transparenttextures.com/patterns/old-wall.png');
  background-repeat:repeat;
  line-height:1.5;
}

/* Header */
header{
  text-align:center;
  padding:clamp(16px,4vw,32px) 12px;
  font-weight:700;
  font-size:clamp(24px,5vw,48px);
  letter-spacing:1px;
  color:var(--ink-soft);
  text-shadow:.5px .5px 0 #f1e9d6;
}

/* Nav */
.nav-wrap{
  background-color:var(--menu-bg);
  border-top:2px solid var(--parchment-edge);
  border-bottom:2px solid var(--parchment-edge);
}
nav{
  max-width:1200px;
  margin:0 auto;
  padding:0 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  position:relative;
}
.menu-toggle{
  display:none;
  border:2px solid var(--parchment-edge);
  background:transparent;
  color:var(--ink);
  padding:8px 10px;
  border-radius:10px;
  cursor:pointer;
  line-height:0;
}
.nav-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.nav-links a{
  display:inline-block;
  padding:clamp(10px,2.8vw,14px) clamp(16px,4vw,30px);
  text-decoration:none;
  color:var(--ink);
  font-weight:700;
  font-size:clamp(14px,3.2vw,18px);
  border-right:1px solid rgba(0,0,0,.08);
}
.nav-links a:last-child{ border-right:none; }
.nav-links a:hover, .nav-links a:focus{
  background-color:var(--menu-bg-hover);
  text-decoration:underline;
}
/* Active page highlight */
.nav-links a.active{
  background-color:var(--menu-active);
  text-decoration:underline;
}

/* Responsive nav */
@media (max-width: 780px){
  nav{ justify-content:space-between; }
  .menu-toggle{ display:inline-block; }
  .nav-links{
    width:100%;
    flex-direction:column;
    align-items:stretch;
    max-height:0; /* collapsed by default */
  }
  .nav-links a{
    border-right:none;
    border-top:1px solid rgba(0,0,0,.08);
    padding:12px 16px;
  }
  .nav-links.open{ max-height:400px; }
}

/* Layout */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:clamp(16px,4vw,32px);
}

/* Hero / images */
.hero-image{
  display:grid;
  place-items:center;
  margin:clamp(16px,4vw,36px) 0;
}
.hero-image img,
.page-hero{
  width:min(100%,1200px);
  height:auto;
  max-height:70vh;
  object-fit:contain;
  border:5px solid var(--parchment-edge);
  box-shadow:0 8px 22px rgba(0,0,0,.28);
  background:#f7f1e1;
}
@media (max-width:520px){
  .hero-image img, .page-hero{ max-height:60vh; }
}

/* Generic fade-in utility (1s) */
.fade-in{
  opacity:0;
  transition:opacity 1s ease;
}
.fade-in.visible{
  opacity:1;
}




