:root {
  --ink: #24342b;
  --muted: #65756a;
  --paper: #fffaf0;
  --cream: #f7efe2;
  --leaf: #4f7658;
  --leaf-dark: #2f5940;
  --leaf-soft: #e4eedf;
  --gold: #b58b4a;
  --brown: #7a543a;
  --line: rgba(36, 52, 43, 0.14);
  --white: #ffffff;
  --shadow: 0 14px 36px rgba(36, 52, 43, 0.1);
  --shadow-soft: 0 8px 22px rgba(36, 52, 43, 0.06);
  --radius: 1.1rem;
  --radius-lg: 1.4rem;
  --font-heading: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 0%, rgba(79, 118, 88, 0.2), transparent 28rem),
    linear-gradient(180deg, #fffaf0 0%, #f7efe2 100%);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.85;
}

.hero > *,
.page-hero > *,
.image-text > *,
.section-heading > * {
  min-width: 0;
}

h1,
h2 {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
.brand {
  font-family: var(--font-heading);
  font-weight: 700;
}

a:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
  border-radius: 4px;
}

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

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

p,
h1,
h2,
h3,
dl {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 3;
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  width: min(1160px, calc(100% - 32px));
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  letter-spacing: 0.04em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 500;
}

.nav-links a {
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

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

.nav-links a[aria-current="page"] {
  color: var(--leaf-dark);
  font-weight: 700;
  border-bottom-color: var(--leaf);
}

.hero,
.page-hero,
.section,
.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: 76dvh;
  padding: clamp(2.2rem, 6vw, 5rem) 0;
}

.hero-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--leaf);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.15rem;
  color: var(--white);
  background: var(--leaf-dark);
  border: 1px solid var(--leaf-dark);
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--leaf);
  border-color: var(--leaf);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.button.secondary {
  color: var(--leaf-dark);
  background: var(--leaf-soft);
  border-color: transparent;
}

.button.secondary:hover {
  color: var(--white);
  background: var(--leaf);
}

.button:active {
  transform: scale(0.98);
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 1rem;
  align-items: end;
}

.hero-gallery img {
  object-fit: cover;
  border: 4px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-gallery img:first-child {
  height: 32rem;
}

.hero-gallery img:last-child {
  height: 22rem;
  margin-bottom: 2rem;
}

.notice-bar {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 3rem;
  padding: 1rem 1.2rem;
  color: var(--leaf-dark);
  background: var(--leaf-soft);
  border: 1px solid rgba(79, 118, 88, 0.22);
  border-radius: var(--radius);
  font-weight: 600;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: 2rem;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.35;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card,
.info-card,
.menu-card,
.event-card,
.sns-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--leaf-dark);
  font-size: 1.1rem;
}

.image-text {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.image-text img,
.wide-image {
  height: 31rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.wide-image {
  height: 26rem;
}

.page-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2.3rem, 6vw, 5rem) 0;
}

.page-hero img {
  height: 30rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.food-hero-photo {
  margin: 0;
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.food-hero-photo img {
  width: 100%;
  height: auto;
  max-height: 22rem;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: none;
}

.food-hero-photo figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.info-card h3,
.menu-card h3,
.event-card h3,
.sns-card h3 {
  margin-bottom: 0.6rem;
  color: var(--leaf-dark);
}

.feature-icon {
  display: inline-grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  margin-bottom: 0.9rem;
  color: var(--leaf-dark);
  background: var(--leaf-soft);
  border: 1px solid rgba(79, 118, 88, 0.18);
  border-radius: 1rem;
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.menu-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-list li:last-child {
  border-bottom: 0;
}

.menu-list b {
  white-space: nowrap;
}

.menu-board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.menu-board-grid figure {
  margin: 0;
  padding: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.menu-board-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0.9rem;
}

.menu-board-grid figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

.photo-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.photo-row img {
  height: 18rem;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.event-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ticket {
  padding: 1.5rem;
  background:
    linear-gradient(90deg, transparent 0 16px, rgba(181, 139, 74, 0.22) 16px 18px, transparent 18px),
    #fff7e8;
  border: 2px dashed var(--gold);
  border-radius: 1.2rem;
}

.ticket h3 {
  margin-bottom: 0.4rem;
  color: var(--brown);
}

.ticket-terms {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.access-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.details {
  display: grid;
  gap: 0.6rem;
  margin: 0;
}

.details div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.details dt {
  color: var(--muted);
}

.details dd {
  margin: 0;
  font-weight: 600;
}

.map-embed {
  overflow: hidden;
  min-height: 24rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border: 0;
}

.sns-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: 1rem;
}

.sns-card {
  min-height: 8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sns-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.instagram-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 9rem;
  grid-row: span 2;
  gap: 1.5rem;
  align-items: center;
}

.instagram-card .button,
.x-card .button,
.youtube-card .button {
  margin-top: 0.8rem;
}

.social-qr img {
  width: 9rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.x-card,
.youtube-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.x-card {
  border-top: 4px solid #39423d;
}

.youtube-card {
  border-top: 4px solid #b5443e;
}

.x-card .eyebrow {
  color: #39423d;
}

.youtube-card .eyebrow {
  color: #9b302b;
}

.qr-card {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1rem;
  align-items: center;
}

.qr-card img {
  border-radius: 1rem;
}

.site-footer {
  margin-top: 4rem;
  color: #fff;
  background: #26362c;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-logo {
  width: 5.2rem;
  height: 5.2rem;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.footer-details {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.footer-details div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 0.8rem;
  align-items: start;
}

.footer-details dt {
  color: rgba(255, 255, 255, 0.6);
}

.footer-details dd {
  margin: 0;
  font-weight: 700;
}

.note {
  color: var(--muted);
  font-size: 0.94rem;
}

.sticky-note {
  position: relative;
  margin-top: 1.6rem;
  padding: 1.15rem 1.3rem;
  background: linear-gradient(180deg, #fdf6cf 0%, #f9edb2 100%);
  border-radius: 3px;
  box-shadow: 0 10px 22px rgba(36, 52, 43, 0.14);
  transform: rotate(-1.2deg);
  font-size: 0.94rem;
  line-height: 1.8;
}

.sticky-note::before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  width: 6.5rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(36, 52, 43, 0.08);
  transform: translateX(-50%) rotate(1.8deg);
}

.sticky-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brown);
  font-family: var(--font-heading);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-order, 0) * 75ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (max-width: 880px) {
  .nav {
    align-items: stretch;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.7rem 0;
  }

  .nav-links {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0.3rem;
  }

  .nav-links a {
    white-space: normal;
  }

  .hero,
  .page-hero,
  .section-heading,
  .image-text,
  .info-grid,
  .menu-grid,
  .event-layout,
  .access-layout,
  .sns-grid,
  .footer-inner,
  .qr-card {
    grid-template-columns: 1fr;
  }

  .instagram-card {
    grid-row: auto;
  }

  .cards,
  .sns-grid,
  .menu-board-grid,
  .photo-row {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .hero-gallery img:first-child,
  .hero-gallery img:last-child,
  .page-hero img,
  .image-text img,
  .wide-image,
  .photo-row img {
    height: 20rem;
    margin: 0;
  }

  .food-hero-photo img {
    height: auto;
    max-height: none;
  }

  .details div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .footer-details div {
    grid-template-columns: 1fr;
    gap: 0.05rem;
  }
}

@media (max-width: 520px) {
  .hero,
  .page-hero {
    width: min(100% - 24px, 1160px);
  }

  .hero-copy {
    padding: 1.45rem;
    border-radius: var(--radius-lg);
  }

  h1 {
    font-size: clamp(1.7rem, 7.5vw, 2.3rem);
  }

  .nav-links {
    gap: 0.8rem;
    font-size: 0.9rem;
  }

  .button {
    width: 100%;
  }

  .instagram-card {
    grid-template-columns: 1fr;
  }

  .social-qr {
    justify-self: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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