
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --parchment: #f7f1df;
  --parchment-deep: #efe6cc;
  --forest: #355a3a;
  --forest-dark: #2a4730;
  --gold: #e8c35e;
  --bronze: #ad7a2b;
  --text: #2c2c2c;
  --ink-fade: rgba(0,0,0,0.12);
}
body {
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(180deg, var(--parchment), var(--parchment-deep));
  color: var(--text);
}
header {
  background: var(--forest);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border-bottom: 4px solid var(--gold);
}
header img { height: 60px; }
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-left: auto;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s;
}
nav a:hover {
  background: var(--gold);
  color: var(--forest-dark);
}
article, aside {
  background: var(--parchment);
  border: 2px solid var(--bronze);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 0 12px var(--ink-fade);
}
article h2, aside h2 {
  margin-bottom: 12px;
  color: var(--forest-dark);
}
.accent-title {
  display: inline-block;
  padding: 6px 10px;
  background: linear-gradient(90deg, rgba(232,195,94,0.25), rgba(232,195,94,0.05));
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}
.enchanted-divider {
  height: 10px;
  margin: 12px 0 16px;
  background:
    radial-gradient(circle at 10% 50%, rgba(232,195,94,0.6), transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(232,195,94,0.6), transparent 40%),
    linear-gradient(90deg, rgba(173,122,43,0.4), rgba(232,195,94,0.5), rgba(173,122,43,0.4));
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(232,195,94,0.5);
}
.aside-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.parchment-card {
  background: #fffdf5;
  border: 2px solid var(--bronze);
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 0 8px rgba(0,0,0,0.12);
}
.pull-quote {
  font-style: italic;
  padding: 10px 12px;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(232,195,94,0.15), transparent);
  border-radius: 8px;
  margin-bottom: 6px;
}
.review-author {
  text-align: right;
  font-size: 0.9rem;
  color: var(--forest-dark);
}
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.badge {
  background: rgba(232,195,94,0.2);
  border: 1px solid var(--bronze);
  color: var(--forest-dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

footer {
  background: var(--forest);
  color: #fff;
  text-align: center;
  padding: 16px;
  border-top: 4px solid var(--bronze);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 32px;   
  padding: 0 16px;
}
.menu-section {
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 0 16px;
}
.menu-section h2 {
  text-align: center;
  margin-bottom: 16px;
  color: var(--forest-dark);
}
.menu-card {
  background: #fffdf5;
  border: 2px solid var(--bronze);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(232,195,94,0.6);
}
.two-column main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 16px;
}
.card-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--forest-dark);
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.modal:target { display: block; }
.modal-content {
  background: #fffdf5;
  margin: 5% auto;
  padding: 20px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  width: min(800px, 90%);
  box-shadow: 0 0 24px rgba(232,195,94,0.55);
}
.spellbook {
  background: var(--parchment);
  border: 4px double var(--bronze);
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(232,195,94,0.55), inset 0 0 12px rgba(232,195,94,0.3);
}
.modal-body {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.modal-body img {
  width: 46%;
  max-height: 60vh;
  object-fit: contain;
  background: #fffdf5;
  border-radius: 10px;
  border: 1px solid #d8caa0;
  box-shadow: 0 0 12px rgba(232,195,94,0.4);
}
.modal-body .details { flex: 1; }
.close {
  float: right;
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--forest-dark);
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
form label {
  font-weight: bold;
  color: var(--forest-dark);
}
form input[type="email"],
form textarea {
  padding: 10px;
  border: 2px solid var(--bronze);
  border-radius: 6px;
  background: #fffdf5;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
form input[type="email"]:focus,
form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(232,195,94,0.6);
  outline: none;
}
form button {
  padding: 10px 16px;
  background: var(--forest);
  color: #fff;
  font-weight: bold;
  border: 2px solid var(--gold);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
form button:hover {
  background: var(--gold);
  color: var(--forest-dark);
  box-shadow: 0 0 12px rgba(232,195,94,0.8);
}

@media (max-width: 768px) {
  .modal-body { flex-direction: column; }
  .modal-body img { width: 100%; }
  .menu-grid {grid-template-columns: 1fr;}
  .scene-grid { grid-template-columns: repeat(3, 1fr); }
  .two-column main {grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);}
}
.hero-img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 12px auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(232,195,94,0.4);
  border: 1px solid rgba(173,122,43,0.4);
}
.two-column article p {
  line-height: 1.55;
  margin-bottom: 10px;
}
.two-column article,
.two-column aside {
  margin-bottom: 16px;
}
@media (min-width: 769px) {
  .two-column main {grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);}
}
header img {
  max-height: 60px;
  height: auto;
  width: auto;
  margin-right: 12px;
}