:root {
  --color-ink: #342d2a;
  --color-muted: #746961;
  --color-paper: #fffaf3;
  --color-cream: #f6ecdf;
  --color-white: #ffffff;
  --color-brown: #8c5f3d;
  --color-brown-dark: #5b3924;
  --color-sage: #6f8d6b;
  --color-sage-soft: #eaf1e6;
  --color-orange: #d7894a;
  --color-line: #e7d8c7;
  --shadow-soft: 0 18px 42px rgba(52, 45, 42, 0.12);
  --radius: 8px;
  --content-width: 1120px;
  --font-main: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-main);
  line-height: 1.8;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

iframe {
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--color-brown-dark);
  color: var(--color-white);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(231, 216, 199, 0.9);
  background: rgba(255, 250, 243, 0.96);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 32px, var(--content-width));
  min-height: 72px;
  margin: 0 auto;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--color-brown-dark);
  text-decoration: none;
  font-weight: 800;
}

.site-brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-sage-soft);
  color: var(--color-sage);
  font-weight: 900;
}

.site-brand__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-brand__logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-ink);
  font: inherit;
  font-weight: 700;
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.nav-toggle__line {
  position: relative;
}

.nav-toggle__line::before,
.nav-toggle__line::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__line::before {
  top: -6px;
}

.nav-toggle__line::after {
  top: 6px;
}

.site-nav {
  position: absolute;
  top: 72px;
  right: 16px;
  left: 16px;
  display: none;
  padding: 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.site-nav.is-open {
  display: block;
}

.menu {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 700;
}

.menu a:hover,
.menu a:focus {
  background: var(--color-sage-soft);
}

.hero {
  position: relative;
  min-height: min(740px, calc(94svh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--color-brown-dark);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(52, 45, 42, 0.76), rgba(52, 45, 42, 0.18)),
    linear-gradient(180deg, rgba(52, 45, 42, 0.08), rgba(52, 45, 42, 0.48));
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--content-width));
  margin: 0 auto;
  padding: 120px 0 54px;
  color: var(--color-white);
}

.hero__tag,
.section-kicker {
  margin: 0 0 10px;
  color: var(--color-orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__tag {
  color: #ffe1bd;
}

.hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 11vw, 5.1rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin-top: 0;
  font-size: 1rem;
}

.hero__info {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 24px 0 0;
}

.hero__info div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero__info dt {
  font-weight: 800;
}

.hero__info dd {
  margin: 0;
}

.button-row,
.contact-actions,
.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(140, 95, 61, 0.22);
}

.button--secondary {
  border-color: var(--color-line);
  background: var(--color-white);
  color: var(--color-brown-dark);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-brown-dark);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--color-white);
}

.notice-band {
  background: var(--color-sage-soft);
}

.notice-band__inner {
  display: grid;
  gap: 6px;
  width: min(100% - 32px, var(--content-width));
  margin: 0 auto;
  padding: 18px 0;
}

.notice-band span {
  color: var(--color-sage);
  font-weight: 900;
}

.notice-band p {
  margin: 0;
  color: var(--color-ink);
}

.section {
  width: min(100% - 32px, var(--content-width));
  margin: 0 auto;
  padding: 72px 0;
}

.section--soft {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - var(--content-width)) / 2));
  background: linear-gradient(135deg, var(--color-cream), var(--color-paper));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading h2,
.page-header h1,
.menu-category__heading h2 {
  margin: 0 0 10px;
  color: var(--color-brown-dark);
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.section-heading p,
.page-header p,
.split-section__body,
.menu-card__description,
.safe-note {
  color: var(--color-muted);
}

.split-section {
  display: grid;
  gap: 20px;
}

.split-section__body {
  display: grid;
  gap: 14px;
}

.split-section__body p {
  margin: 0;
}

.entry-content {
  max-width: 820px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content img {
  border-radius: var(--radius);
}

.menu-grid {
  display: grid;
  gap: 16px;
}

.menu-category-list {
  display: grid;
  gap: 42px;
  margin-top: 36px;
}

.menu-category__heading {
  margin-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}

.menu-card,
.news-card,
.contact-box,
.map-box {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(52, 45, 42, 0.08);
}

.menu-card {
  overflow: hidden;
}

.menu-card__image {
  aspect-ratio: 4 / 3;
  background: var(--color-cream);
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card__body {
  padding: 16px;
}

.menu-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 9px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #fff0df;
  color: #9b5523;
  font-size: 0.78rem;
  font-weight: 900;
}

.menu-card__title-row {
  display: grid;
  gap: 5px;
}

.menu-card__title-row h3 {
  margin: 0;
  color: var(--color-brown-dark);
  font-size: 1.12rem;
}

.menu-card__title-row p {
  margin: 0;
  color: var(--color-orange);
  font-weight: 900;
}

.menu-card__description {
  margin: 10px 0 0;
  font-size: 0.94rem;
}

.section-action {
  margin-top: 26px;
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-card {
  padding: 20px;
}

.news-card__date,
.post-date {
  margin: 0 0 8px;
  color: var(--color-sage);
  font-size: 0.88rem;
  font-weight: 800;
}

.news-card h2,
.news-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.4;
}

.news-card p:last-child {
  margin-bottom: 0;
}

.access-grid {
  display: grid;
  gap: 18px;
}

.shop-info {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--color-line);
}

.shop-info div {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-line);
}

.shop-info dt {
  color: var(--color-muted);
  font-weight: 900;
}

.shop-info dd {
  margin: 0;
  font-weight: 700;
}

.map-box {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.map-box iframe {
  width: 100%;
  min-height: 300px;
  border-radius: var(--radius);
  background: var(--color-cream);
}

.page-main {
  min-height: 58vh;
}

.page-article {
  padding-top: 54px;
}

.page-header {
  max-width: 850px;
  margin-bottom: 28px;
}

.featured-image {
  max-width: 920px;
  margin-bottom: 28px;
}

.featured-image img {
  border-radius: var(--radius);
}

.contact-box {
  display: grid;
  gap: 18px;
  padding: 18px;
}

.form-frame iframe {
  width: 100%;
  min-height: 680px;
  border-radius: var(--radius);
  background: var(--color-cream);
}

.safe-note {
  margin: 0;
  font-size: 0.92rem;
}

.pagination {
  margin-top: 26px;
}

.footer-cta {
  display: grid;
  gap: 18px;
  width: min(100% - 32px, var(--content-width));
  margin: 0 auto;
  padding: 42px 0;
}

.footer-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  line-height: 1.3;
}

.footer-cta p {
  margin: 0;
}

.site-footer {
  margin-top: 40px;
  background: var(--color-brown-dark);
  color: var(--color-white);
}

.site-footer__inner {
  display: grid;
  gap: 20px;
  width: min(100% - 32px, var(--content-width));
  margin: 0 auto;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__name {
  margin: 0 0 8px;
  font-weight: 900;
}

.footer-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .hero__info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notice-band__inner {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
  }

  .split-section,
  .access-grid,
  .footer-cta,
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .section {
    padding-block: 92px;
  }

  .hero__content {
    padding-bottom: 78px;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    width: min(100% - 24px, var(--content-width));
  }

  .site-brand__name {
    max-width: 48vw;
  }

  .hero__content,
  .section,
  .notice-band__inner,
  .footer-cta,
  .site-footer__inner {
    width: min(100% - 28px, var(--content-width));
  }

  .button {
    width: 100%;
  }

  .hero__info div {
    display: grid;
    gap: 4px;
  }

  .form-frame iframe {
    min-height: 760px;
  }
}
