* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #f5f0e7;
  line-height: 1.6;
}

.about-hero {
  min-height: 50vh;
  padding: 20px 6%;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(17,17,17,0.95)),
    url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  color: #d4a14a;
  font-size: 1.5rem;
  font-weight: bold;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, var(--parchment-1), var(--parchment-2));
  border-top: 2px solid rgba(55, 32, 19, 0.65);
  border-bottom: 2px solid rgba(55, 32, 19, 0.45);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.8;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.15), transparent 30%),
    radial-gradient(circle at bottom, rgba(90,60,35,0.12), transparent 40%);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  width: min(100% - 1rem, 1400px);
  min-height: 64px;
  margin: 0 auto;
  padding: 0.35rem 0;
}

.brand-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0.6rem;
  position: relative;
  z-index: 2;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  color: #f2e2bc;
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: linear-gradient(to bottom, var(--wood-1), var(--wood-2));
  border: 2px solid #3a2114;
  border-radius: 10px;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.map-link:hover {
  filter: brightness(1.05);
}

.top-sign-wrap {
  width: fit-content;
  margin: 0;
  min-width: unset;
}

.top-sign-wrap {
  justify-self: center;
  position: relative;
  z-index: 2;
}

.top-sign {
  position: relative;
  min-width: 230px;
  padding: 0.7rem 1.2rem;
  text-align: center;
  color: #f2e2bc;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(to bottom, #5c3922, #2c180f);
  border: 2px solid #24130b;
  border-radius: 0.35rem;
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.top-sign::before,
.top-sign::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 2px;
  background: rgba(127, 88, 49, 0.55);
}

.top-sign::before {
  left: -20px;
}

.top-sign::after {
  right: -20px;
}

.menu-toggle {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-right: 0.35rem;
  background: linear-gradient(to bottom, #67412a, #3a2215);
  border: 2px solid #3a2114;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.16);
  position: relative;
  z-index: 2;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: #f1e1bc;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  display: none;
  width: min(100% - 1rem, 1400px);
  margin: 0 auto;
  padding: 0 0 0.75rem;
  background: #70665d;
}

.site-nav.open {
  display: block;
}

.site-nav a {
  display: block;
  padding: 0.9rem 0.3rem;
  color: #ffffff;
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(70, 42, 25, 0.12);
  text-decoration: none;
}

.about-copy {
  padding: 90px 0 30px;
  max-width: 650px;
}

.about-copy h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.about-main {
  padding: 60px 6%;
}

.about-section {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
}

.about-section h2 {
  color: #d4a14a;
  margin-bottom: 16px;
  font-size: 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-box {
  background: #1a1a1a;
  border: 1px solid #2b2b2b;
  border-radius: 14px;
  padding: 26px;
  text-align: center;
}

.about-box h3 {
  color: #d4a14a;
  margin-bottom: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #090909;
  color: #999;
}

@media (max-width: 850px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-copy h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 900px) {
  .menu-links,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

.site-header {
    width: 100%;
    overflow-x: hidden;
  }

.brand-left,
.menu-toggle {
    flex-shrink: 0;
  }

.top-sign-wrap {
    min-width: 0;
    display: flex;
    justify-content: center;
  }

.top-sign-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
  }

.map-link {
    font-size: 0.85rem;
    white-space: nowrap;
  }


.header-inner {
    transform: scale(0.9);
    transform-origin: top center;
    }

.header-inner {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    align-items: center;
    gap: 22px;
    }
}