@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Comic+Neue:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --paper: #f5ecd7;
  --ink: #1d1d1b;
  --muted: #6b5f4e;
  --green: #2f6f5e;
  --green-dark: #24574a;
  --line: #ddd0b4;
  --quest-brown: #8a6a3f;
}

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

[hidden] { display: none !important; }

body {
  background: var(--paper) url("map-bg.svg") repeat;
  background-size: 480px 480px;
  color: var(--ink);
  font-family: "Comic Neue", "Comic Sans MS", "Trebuchet MS", sans-serif;
  line-height: 1.65;
  font-size: 17.5px;
}

h1, h2, h3 {
  font-family: "Luckiest Guy", "Comic Sans MS", cursive;
  font-weight: 400; line-height: 1.15; letter-spacing: 0.5px;
  text-shadow: 2px 2px 0 rgba(138, 106, 63, 0.18);
}
h1 { font-size: 2.6rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.15rem; }
h1 em, h2 em { color: var(--green); font-style: normal; }
p { margin: 0.75rem 0; }
a { color: var(--green); }

.wrap { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 640px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  max-width: 960px; margin: 0 auto; padding: 20px;
}
.brand {
  font-family: "Luckiest Guy", "Comic Sans MS", cursive; font-weight: 400; font-size: 1.2rem;
  color: var(--ink); text-decoration: none; letter-spacing: 1px;
  display: flex; align-items: center; gap: 10px;
}
.brand img { height: 46px; width: auto; }
.site-header nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.site-header nav a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.site-header nav a:hover, .site-header nav a.active { color: var(--ink); }
.nav-cta {
  background: var(--green); color: #fff !important; padding: 8px 16px;
  border-radius: 22px; font-size: 0.9rem;
}
.nav-cta:hover { background: var(--green-dark); }

/* Hero */
.hero { padding: 64px 20px 48px; max-width: 960px; margin: 0 auto; position: relative; }
.hero p.lead { color: var(--muted); max-width: 560px; font-size: 1.05rem; }
.hero::after {
  content: ""; position: absolute; right: 28px; bottom: 16px;
  width: 150px; height: 132px;
  background: url("pixel-lifter.svg") no-repeat center / contain;
  image-rendering: pixelated;
}

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; font-size: 1rem; font-weight: 400;
  font-family: "Luckiest Guy", "Comic Sans MS", cursive; letter-spacing: 1px;
  padding: 13px 24px 9px; border-radius: 26px; margin: 8px 12px 0 0;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-ghost { color: var(--green); border: 1.5px solid var(--green); }

/* Sections & cards */
.section { padding: 48px 20px; max-width: 960px; margin: 0 auto; border-top: 2px dashed rgba(138, 106, 63, 0.35); }
.eyebrow {
  text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem;
  color: var(--muted); margin-bottom: 8px;
}
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.card {
  background: rgba(255, 255, 255, 0.72); border: 1.5px solid var(--line); border-radius: 10px; padding: 24px;
}
.card h3 { color: var(--green); margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .price { color: var(--ink); font-weight: 700; margin-top: 10px; }

/* Quotes / placeholders */
.quote {
  border-left: 3px solid var(--green); padding: 4px 0 4px 20px; margin: 20px 0;
  font-family: Georgia, serif; font-style: italic; font-size: 1.05rem;
}
.quote cite { display: block; font-style: normal; font-family: inherit; color: var(--muted); font-size: 0.9rem; margin-top: 6px; }
.placeholder-note {
  background: #fdf3d7; border: 1px dashed #d8b74a; border-radius: 8px;
  padding: 12px 16px; font-size: 0.9rem; color: #7a5f14; margin: 20px 0;
}

/* Forms (quiz) */
.field { margin: 14px 0; }
.field label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.field input[type="text"], .field input[type="email"] {
  width: 100%; padding: 12px; font-size: 1rem; border: 1px solid var(--line);
  border-radius: 8px; background: rgba(255, 255, 255, 0.85); font-family: inherit;
}
.question { background: rgba(255, 255, 255, 0.72); border: 1.5px solid var(--line); border-radius: 10px; padding: 20px; margin: 16px 0; }
.question p.qtext { font-weight: 600; margin: 0 0 10px; }
.question label { display: block; padding: 8px 10px; border-radius: 6px; cursor: pointer; font-size: 0.98rem; }
.question label:hover { background: var(--paper); }
.question input { margin-right: 10px; }
.error-msg { color: #a33; font-size: 0.95rem; }
.fine-print { color: var(--muted); font-size: 0.85rem; }

/* Booking embed */
.embed-frame { width: 100%; height: 900px; border: 1.5px solid var(--line); border-radius: 10px; background: rgba(255, 255, 255, 0.9); }

/* Footer */
.site-footer {
  border-top: 2px dashed rgba(138, 106, 63, 0.35); margin-top: 48px; padding: 32px 20px 48px;
  text-align: center; color: var(--muted); font-size: 0.9rem;
}
.site-footer a { color: var(--muted); }

@media (max-width: 900px) {
  .hero::after { display: none; }
}

@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  .cards3 { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
}
