/* Shared styles for the public site (home, staff login). */

:root {
  --bg:     #0e1620;
  --bg-alt: #141e2c;
  --bg-hover: #1c2738;
  --ink:    #ece4d4;
  --muted:  #8c8478;
  --rule:   rgba(255, 255, 255, 0.08);
  --accent: #d4a056;
  --danger: #d97a7a;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Iowan Old Style", Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }

/* --- Top bar --- */
.topbar-wrap {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  color: #fff;
}
nav .brand {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  text-transform: uppercase;
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
nav a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.15s, color 0.15s;
}
nav a:hover { color: var(--accent); opacity: 1; }

/* --- Hero --- */
header.hero {
  position: relative;
  min-height: 86vh;
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
header.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 22, 32, 0.55) 0%,
    rgba(14, 22, 32, 0)    20%,
    rgba(14, 22, 32, 0)    50%,
    rgba(14, 22, 32, 0.95) 100%
  );
  pointer-events: none;
}
header.hero .hero-text {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
header.hero .tagline {
  font-style: italic;
  font-size: 1.7rem;
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
header.hero .subline {
  font-size: 1.05rem;
  margin: 0;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
header.hero .location {
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-top: 1.5rem;
  color: var(--accent);
}

/* --- Banner --- */
.banner {
  text-align: center;
  padding: 3.5rem 1.5rem;
  font-style: italic;
  font-size: 1.4rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}
.banner.alt { background: var(--bg-alt); max-width: none; padding-left: 1.5rem; padding-right: 1.5rem; }

/* --- Sections --- */
section { padding: 5rem 0; border-top: 1px solid var(--rule); }
section.alt { background: var(--bg-alt); }
section h2 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.8rem;
  text-align: center;
  color: var(--accent);
  margin: 0 0 3rem;
}
section h3 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
  margin: 3rem 0 1.5rem;
}

/* --- Process --- */
.process-list {
  max-width: 480px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  text-align: center;
}
.process-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 1.1rem;
}
.process-list li:last-child { border-bottom: 0; }
.process-quote {
  text-align: center;
  font-style: italic;
  color: var(--muted);
  font-size: 1.1rem;
  margin: 2.5rem 0 0;
}

/* --- Menu --- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3.5rem;
}
.menu-grid.tight { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}
.menu-item .name {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}
.menu-item .desc {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  display: block;
  font-weight: 400;
  margin-top: 0.15rem;
}
.menu-item .price {
  font-family: "Helvetica Neue", Arial, sans-serif;
  flex-shrink: 0;
  color: var(--accent);
}
.dotted { border-bottom: 1px dotted rgba(255, 255, 255, 0.18); flex: 1; transform: translateY(-4px); }

/* --- About --- */
.about p { max-width: 560px; margin: 0 auto 1rem; text-align: center; font-size: 1.1rem; }
.about p.last { color: var(--muted); font-style: italic; margin-top: 1.5rem; }

/* --- Find Us --- */
.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 720px;
  margin: 0 auto;
}
.find-block { text-align: center; }
.find-block h3 {
  margin-top: 0;
  text-align: center;
}
.find-block p { margin: 0.2rem 0; }
.find-quote {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  margin: 3rem 0 0;
  font-size: 1.05rem;
}

/* --- Footer --- */
footer {
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.05em;
}
footer a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 0.6rem;
  transition: color 0.15s;
}
footer a:hover { color: var(--accent); }

@media (max-width: 640px) {
  .menu-grid, .find-grid { grid-template-columns: 1fr; }
  nav ul { gap: 1rem; font-size: 0.7rem; letter-spacing: 0.15em; }
  header.hero { min-height: 70vh; }
  header.hero .tagline { font-size: 1.3rem; }
  header.hero .subline { font-size: 0.95rem; }
  .banner { font-size: 1.15rem; padding: 2.5rem 1rem; }
}
