@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

:root {
  --bone: #F5F2EB;
  --charcoal: #1E1E1C;
  --warm-gray: #8E8A84;
  --olive: #5E6650;
  --burgundy: #5A2328;
}

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

html, body {
  height: 100%;
  background: var(--bone);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
}

/* subtle grain overlay across every page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.page {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8vw;
}

/* ---------- LANDING ---------- */

.page--landing {
  cursor: pointer;
  background: var(--olive);
  transition: opacity 0.7s ease;
}

.page--landing.fading {
  opacity: 0;
}

.wordmark {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(3.5rem, 12vw, 9rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1;
  user-select: none;
}

.enter-cue {
  position: absolute;
  bottom: 8vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fade-in 1s ease-out 1.2s forwards;
}

@keyframes fade-in {
  to { opacity: 1; }
}

.enter-cue span {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  font-weight: 400;
}

.chevron {
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
  transform: rotate(-45deg);
  animation: nudge 2.2s ease-in-out infinite;
}

@keyframes nudge {
  0%, 100% { transform: rotate(-45deg) translate(0, 0); }
  50% { transform: rotate(-45deg) translate(4px, -4px); }
}

@media (prefers-reduced-motion: reduce) {
  .enter-cue, .chevron { animation: none !important; opacity: 1 !important; }
}

/* ---------- SHARED SECTION CONTENT (reservations / about) ---------- */

.page--content {
  background: var(--bone);
}

.section-inner {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 1.6rem;
  display: block;
}

.section-heading {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.12;
  margin-bottom: 2.4rem;
}

.heading-primary {
  display: block;
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--charcoal);
}

.heading-secondary {
  display: block;
  font-weight: 300;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm-gray);
  margin-top: 0.55rem;
}

.section-copy {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 3.2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

input[type="email"] {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  text-align: center;
  padding: 0.5rem 0;
}

input[type="email"]::placeholder {
  color: var(--warm-gray);
}

.submit-btn {
  background: none;
  border: none;
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.6rem 0 0.4rem;
  width: 100%;
  cursor: pointer;
  transition: color 0.35s ease;
}

.submit-btn:hover {
  color: var(--olive);
}

.submit-btn:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

/* ---------- ABOUT ---------- */

.about-copy {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal);
  text-align: left;
}

.about-copy p {
  margin-bottom: 1.4rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.handle {
  margin-top: 2.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-align: left;
}

@media (max-width: 600px) {
  .page { padding: 10vw 8vw; }
  .about-copy { text-align: left; }
}
