:root {
  --page: #f7efe7;
  --paper: #fffaf4;
  --brown: #47342c;
  --muted: #80685c;
  --rose: #a9786b;
  --rose-dark: #8f6056;
  --line: rgba(137, 104, 91, 0.24);
  --shadow: 0 18px 48px rgba(77, 56, 45, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.9), transparent 32rem),
    linear-gradient(180deg, #f4e6dc 0%, var(--page) 34%, #f8eee8 100%);
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 16px;
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 12px 30px rgba(71, 52, 44, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.brand span,
.footer-brand span {
  color: var(--rose);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  color: var(--rose-dark);
}

.nav-reserve {
  padding: 8px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(143, 96, 86, 0.25);
}

.nav-reserve:hover {
  color: #fff;
  transform: translateY(-1px);
}

main {
  width: min(1080px, 100%);
  margin: -1px auto 0;
}

.panel {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.panel + .panel {
  margin-top: clamp(14px, 2.6vw, 28px);
  box-shadow: var(--shadow);
}

.hero {
  box-shadow: var(--shadow);
}

.image-link {
  position: absolute;
  display: block;
  border-radius: 999px;
  outline-offset: 4px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.image-link:hover,
.image-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.36);
}

.image-link:active {
  transform: scale(0.99);
}

.hero-link {
  left: 19.6%;
  bottom: 6.7%;
  width: 57.7%;
  height: 6.8%;
}

.link-kodawari {
  left: 27.1%;
  bottom: 5.4%;
  width: 45.4%;
  height: 5.7%;
}

.link-weekly {
  left: 20.3%;
  bottom: 4.6%;
  width: 56.5%;
  height: 5.6%;
}

.link-menu {
  left: 32.2%;
  bottom: 3.35%;
  width: 42.9%;
  height: 4.6%;
}

.link-about {
  left: 18.4%;
  bottom: 4.75%;
  width: 63.2%;
  height: 6.2%;
}

.link-atmosphere {
  left: 22.7%;
  bottom: 3.55%;
  width: 58.2%;
  height: 5.3%;
}

.link-access {
  left: 20.7%;
  bottom: 7.6%;
  width: 56.5%;
  height: 6.3%;
}

.reserve-line {
  left: 11.2%;
  top: 46.9%;
  width: 78.7%;
  height: 11.4%;
}

.reserve-web {
  left: 11.2%;
  top: 60.1%;
  width: 78.7%;
  height: 10.4%;
}

.reserve-phone {
  left: 11.2%;
  top: 72.4%;
  width: 78.7%;
  height: 10.4%;
}

.floating-reserve {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 48px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, #06c755, #05a849);
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(6, 199, 85, 0.34);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.floating-reserve:hover {
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.footer {
  width: min(1080px, 100%);
  margin: 28px auto 0;
  padding: 48px 24px 36px;
  color: #e9d9c9;
  text-align: center;
  background: #3f2d26;
}

.footer-brand {
  margin: 0 0 8px;
  color: #fff;
}

.footer p {
  margin: 0 0 18px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 0 0 20px;
  color: #f6eee6;
  font-size: 14px;
}

.footer small {
  color: #bda998;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.14em;
}

@media (max-width: 760px) {
  .site-header {
    width: 100%;
    border-radius: 0;
    padding: 10px 14px;
  }

  .brand {
    font-size: 20px;
  }

  .nav {
    gap: 10px;
  }

  .nav a:not(.nav-reserve) {
    display: none;
  }

  .nav-reserve {
    padding: 8px 14px;
    font-size: 12px;
  }

  .panel + .panel,
  .footer {
    margin-top: 12px;
  }

  .floating-reserve {
    right: 12px;
    bottom: 12px;
    min-width: 104px;
    height: 44px;
    font-size: 13px;
  }
}

@media (min-width: 1081px) {
  main,
  .footer {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .hero,
  .panel + .panel {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav a,
  .image-link,
  .floating-reserve {
    transition: none;
  }
}
