* {
  box-sizing: border-box;
}

:root {
  --ink: #23170f;
  --brown: #4a2b18;
  --orange: #d95f18;
  --yellow: #f4b942;
  --cream: #fff7e9;
  --paper: #fffdf8;
  --muted: #74675f;
  --border: rgba(35, 23, 15, 0.14);
  --shadow: 0 24px 60px rgba(71, 38, 17, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: 0.3s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 10px 30px rgba(35, 23, 15, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--orange);
  border-radius: 50% 50% 46% 54% / 52% 48% 52% 48%;
  transform: rotate(-6deg);
}

.logo-mark::first-letter {
  transform: rotate(6deg);
}

.logo-text {
  font-size: 1.15rem;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 700;
}

.global-nav a {
  transition: color 0.2s;
}

.global-nav a:hover {
  color: var(--orange);
}

.global-nav .nav-cta {
  padding: 12px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
}

.global-nav .nav-cta:hover {
  color: #fff;
  background: var(--orange);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: 0.2s;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(30, 14, 7, 0.88) 0%, rgba(30, 14, 7, 0.62) 48%, rgba(30, 14, 7, 0.18) 100%),
    url("https://images.unsplash.com/photo-1601050690597-df0568f70950?auto=format&fit=crop&w=1800&q=88") center/cover;
}

.hero::after {
  position: absolute;
  content: "";
  inset: auto -70px -130px auto;
  width: 360px;
  height: 360px;
  border: 42px solid rgba(244, 185, 66, 0.28);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-copy {
  margin: 28px 0 34px;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

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

.button-primary {
  color: #fff;
  background: var(--orange);
}

.button-primary:hover {
  background: #bd4d10;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.1);
}

.hero-card {
  position: absolute;
  right: 5vw;
  bottom: 58px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 210px;
  padding: 28px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.hero-card span,
.hero-card strong {
  font-family: "Oswald", sans-serif;
}

.hero-card span {
  letter-spacing: 0.18em;
}

.hero-card strong {
  font-size: 1.8rem;
}

.news-bar {
  background: var(--ink);
  color: #fff;
}

.news-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.news-label {
  color: var(--yellow);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.news-inner p {
  margin: 0;
  font-size: 0.92rem;
}

.news-inner time {
  margin-right: 18px;
  color: #cdbfb7;
}

.section {
  padding: 112px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: start;
}

.section-heading h2,
.section-title-center h2,
.seasonal h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.concept-copy > p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 42px;
}

.feature-list div {
  min-height: 150px;
  padding: 24px 18px;
  background: var(--cream);
  border-top: 4px solid var(--orange);
}

.feature-list strong {
  display: block;
  color: var(--orange);
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
}

.feature-list span {
  font-weight: 700;
}

.menu-section {
  background: var(--cream);
}

.section-title-center {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-title-center > p:last-child {
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(71, 38, 17, 0.1);
}

.menu-image {
  height: 260px;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-image {
  transform: scale(1.04);
}

.menu-image-1 {
  background-image: url("https://images.unsplash.com/photo-1565557623262-b51c2513a641?auto=format&fit=crop&w=1000&q=85");
}

.menu-image-2 {
  background-image: url("https://images.unsplash.com/photo-1603894584373-5ac82b2ae398?auto=format&fit=crop&w=1000&q=85");
}

.menu-image-3 {
  background-image: url("https://images.unsplash.com/photo-1588166524941-3bf61a9c41db?auto=format&fit=crop&w=1000&q=85");
}

.menu-card-body {
  padding: 28px;
}

.menu-tag {
  display: inline-block;
  padding: 5px 10px;
  color: var(--orange);
  background: #fff1e9;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.menu-card h3 {
  margin: 14px 0 8px;
  font-size: 1.35rem;
}

.menu-card p {
  min-height: 58px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price {
  color: var(--orange);
  font-family: "Oswald", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.price small {
  color: var(--muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.72rem;
}

.menu-note {
  margin-top: 30px;
  padding: 28px;
  text-align: center;
  background: #fff;
  border: 1px dashed rgba(217, 95, 24, 0.45);
  border-radius: 16px;
}

.menu-note h3 {
  margin-top: 0;
}

.option-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.option-list span {
  padding: 8px 14px;
  background: var(--cream);
  border-radius: 999px;
  font-weight: 700;
}

.seasonal {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(37, 18, 9, 0.91), rgba(37, 18, 9, 0.58)),
    url("https://images.unsplash.com/photo-1596797038530-2c107229654b?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.seasonal-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.seasonal-inner > div:first-child {
  max-width: 680px;
}

.seasonal .eyebrow {
  color: var(--yellow);
}

.seasonal p {
  max-width: 620px;
}

.price.large {
  margin-top: 24px;
  color: var(--yellow);
  font-size: 2.6rem;
}

.seasonal-badge {
  display: grid;
  place-items: center;
  width: 220px;
  aspect-ratio: 1;
  padding: 20px;
  text-align: center;
  background: var(--orange);
  border-radius: 50%;
  transform: rotate(7deg);
}

.seasonal-badge span,
.seasonal-badge strong {
  display: block;
  font-family: "Oswald", sans-serif;
}

.seasonal-badge span {
  letter-spacing: 0.16em;
}

.seasonal-badge strong {
  font-size: 2.1rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 18px 55px rgba(71, 38, 17, 0.1);
}

.shop-map {
  min-height: 460px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(244,185,66,.88), rgba(244,185,66,.88)),
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(255,255,255,.35) 22px 24px);
}

.map-placeholder {
  width: min(340px, 82%);
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(-2deg);
}

.map-placeholder span {
  display: block;
  color: var(--orange);
  font-family: "Oswald", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.map-placeholder a {
  display: inline-block;
  margin-top: 10px;
  color: var(--orange);
  font-weight: 900;
  text-decoration: underline;
}

.shop-info {
  padding: 50px;
  background: #fff;
}

.shop-info h3 {
  margin-top: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.65rem;
}

.shop-info dl {
  margin: 28px 0;
}

.shop-info dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.shop-info dt {
  font-weight: 900;
}

.shop-info dd {
  margin: 0;
  color: var(--muted);
}

.phone-link {
  color: var(--orange);
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.contact {
  color: #fff;
  background: var(--orange);
}

.contact .eyebrow {
  color: var(--yellow);
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.button-light {
  color: var(--orange);
  background: #fff;
}

.button-outline-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.75);
}

.site-footer {
  padding: 58px 0;
  color: #fff;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer small {
  grid-column: 1 / -1;
  color: #a99c94;
}

.modal {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.active {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 5, 0.72);
  backdrop-filter: blur(5px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 38px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 2rem;
}

.modal-dialog h2 {
  margin-top: 0;
}

.modal-dialog label {
  display: block;
  margin-top: 18px;
  font-weight: 700;
}

.modal-dialog input,
.modal-dialog textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fffdf9;
}

.modal-dialog input:focus,
.modal-dialog textarea:focus {
  outline: 3px solid rgba(217, 95, 24, 0.18);
  border-color: var(--orange);
}

.form-submit {
  width: 100%;
  margin-top: 24px;
}

.form-message {
  margin-bottom: 0;
  color: var(--orange);
  font-weight: 700;
  text-align: center;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .global-nav {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
  }

  .global-nav.open {
    display: flex;
  }

  .global-nav a {
    padding: 13px 8px;
  }

  .global-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 700px;
  }

  .hero-card {
    right: 28px;
    bottom: 30px;
    width: 180px;
    padding: 20px;
  }

  .grid-2,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    gap: 40px;
  }

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

  .menu-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .menu-image {
    height: auto;
    min-height: 280px;
  }

  .shop-map {
    min-height: 360px;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 68px;
  }

  .global-nav {
    top: 68px;
  }

  .hero {
    min-height: 720px;
    background-position: 62% center;
  }

  .hero-content {
    padding-top: 64px;
    padding-bottom: 150px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-copy br {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-card {
    left: 20px;
    right: auto;
    bottom: 30px;
    width: 175px;
  }

  .news-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 18px 0;
  }

  .news-inner time {
    display: block;
    margin-right: 0;
  }

  .section {
    padding: 80px 0;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list div {
    min-height: auto;
  }

  .menu-card {
    display: block;
  }

  .menu-image {
    height: 230px;
  }

  .seasonal-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .seasonal-badge {
    width: 160px;
  }

  .shop-info {
    padding: 30px 22px;
  }

  .shop-info dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer small {
    grid-column: 1;
  }

  .modal-dialog {
    padding: 32px 22px;
  }
}


.menu-image-4{background-image:url('https://images.unsplash.com/photo-1512058564366-18510be2db19?auto=format&fit=crop&w=1000&q=85');}
.menu-image-5{background-image:url('https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1000&q=85');}
.menu-image-6{background-image:url('https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=1000&q=85');}
