:root {
  --bg: #ffffff;
  --surface: #f7f1e8;
  --ink: #1b1814;
  --ink-soft: #5f564d;
  --accent: #1f3426;
  --line: #d6c5b3;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1000px, 92vw);
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: none;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0.85rem 1.4rem;
}

.btn-solid {
  background: var(--accent);
  color: #fff;
}

.hours {
  margin: 0;
  font-family: "Manrope", sans-serif;
  white-space: pre-wrap;
}

.splash {
  padding: 2rem 0 1.1rem;
}

.splash-inner {
  width: min(1240px, 96vw);
  margin: 0 auto;
}

.splash-logo {
  display: block;
  width: min(360px, 70vw);
  margin: 0 auto 1.35rem;
}

.splash-image {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(31, 22, 16, 0.18);
}

.announcement {
  padding-top: 1.6rem;
  text-align: center;
}

.announcement p,
.reservation-note,
.info-wrap p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.reservation-section {
  padding: 1rem 0 2rem;
}

.reservation-wrap {
  text-align: center;
}

.reservation-frame {
  margin-top: 1rem;
}

.reservation-frame iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
  display: block;
  background: #fff;
}

.info-section {
  padding: 1.75rem 0 3rem;
}

.info-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.info-right {
  text-align: right;
}

@media (max-width: 860px) {
  .splash {
    padding-top: 1.25rem;
  }

  .splash-image {
    height: 50vh;
  }

  .info-wrap {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .info-right {
    text-align: left;
  }
}
