:root {
  --cream: #fff7e8;
  --paper: #fffdf5;
  --wood: #8b542e;
  --brown: #3f2b1d;
  --orange: #ef7c28;
  --orange-dark: #c75516;
  --green: #2f7b52;
  --green-dark: #1f5238;
  --mint: #e3f0d7;
  --line: rgba(63, 43, 29, .15);
  --shadow: 0 18px 45px rgba(95, 56, 22, .15);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown);
  background:
    linear-gradient(90deg, rgba(139, 84, 46, .035) 1px, transparent 1px) 0 0 / 26px 26px,
    var(--cream);
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(16px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 245, .93);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

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

.global-nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  font-size: 14px;
  font-weight: 800;
}

.global-nav a {
  padding: 6px 0;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}

.global-nav a[aria-current="page"] {
  color: var(--orange-dark);
  border-color: var(--orange);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 70px) clamp(16px, 5vw, 72px) 72px;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr .78fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 520px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: saturate(1.08) contrast(1.02);
}

.hero-media img:first-child {
  grid-row: span 2;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
}

.hero-copy > p:not(.eyebrow),
.section p {
  font-size: 16px;
}

.hero-actions,
.cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.button.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(199, 85, 22, .22);
}

.button.secondary {
  background: #fff;
  border-color: rgba(239, 124, 40, .35);
  color: var(--orange-dark);
}

.button.ghost {
  background: transparent;
  border-color: rgba(47, 123, 82, .35);
  color: var(--green-dark);
}

.section {
  padding: clamp(54px, 8vw, 100px) clamp(16px, 5vw, 72px);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 34px;
}

.section-heading.split {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.text-link {
  color: var(--green-dark);
  font-weight: 900;
  text-underline-offset: 5px;
}

.intro-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: stretch;
}

.intro-text {
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.intro-text p:first-child {
  margin-top: 0;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.info-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(47, 123, 82, .94), rgba(31, 82, 56, .98)),
    var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-note strong {
  font-size: 25px;
  line-height: 1.25;
}

.warm-band {
  background: linear-gradient(135deg, rgba(255, 247, 232, .96), rgba(227, 240, 215, .7));
}

.green-band {
  background:
    linear-gradient(135deg, rgba(47, 123, 82, .95), rgba(31, 82, 56, .96)),
    var(--green);
  color: #fff;
}

.green-band .eyebrow {
  color: #f7d77d;
}

.point-list {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.point-list article {
  padding: 28px;
  background: rgba(255, 253, 245, .86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.point-list span {
  color: var(--orange-dark);
  font-weight: 900;
}

.food-showcase {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.food-showcase article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.food-showcase img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.food-showcase h3,
.feature-food div {
  padding: 18px;
}

.feature-food {
  grid-row: span 2;
}

.feature-food img {
  height: 480px;
}

.inside {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: center;
}

.inside-copy {
  max-width: 720px;
}

.logo-large {
  width: 100%;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.instagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.instagram > div {
  max-width: 720px;
}

.menu-gallery + .instagram > div {
  max-width: 980px;
}

.menu-gallery + .instagram h2 {
  font-size: clamp(28px, 3.3vw, 42px);
  white-space: nowrap;
}

.reserve .section-heading,
.reserve .cta-grid {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, auto) minmax(180px, 1fr);
  align-items: start;
  gap: clamp(20px, 5vw, 56px);
  padding: 34px clamp(16px, 5vw, 72px) 92px;
  color: #fff;
  background: var(--brown);
}

.site-footer p {
  margin: 4px 0 0;
}

.footer-hours {
  padding: 0 0 0 22px;
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.footer-hours strong {
  display: block;
  margin-bottom: 6px;
}

.footer-hours p {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.55;
}

.footer-tel {
  justify-self: end;
  font-weight: 800;
}

.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 30;
  transform: translateX(-50%);
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(63, 43, 29, .16);
  border-radius: 999px;
  background: rgba(255, 253, 245, .96);
  box-shadow: 0 12px 36px rgba(63, 43, 29, .18);
  backdrop-filter: blur(14px);
}

.fixed-cta a {
  min-width: 96px;
  padding: 10px 18px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.fixed-cta a + a {
  border-left: 1px solid var(--line);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  padding: clamp(44px, 7vw, 88px) clamp(16px, 5vw, 72px);
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.access-hero img {
  aspect-ratio: 1;
  border-radius: 50%;
}

.menu-hero {
  width: min(1180px, calc(100% - 32px));
  display: block;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0 clamp(30px, 5vw, 54px);
}

.menu-hero > div {
  max-width: 780px;
}

.menu-hero + .menu-gallery {
  width: min(1180px, calc(100% - 32px));
  padding: 0 0 clamp(54px, 8vw, 100px);
}

.menu-gallery {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.menu-tile {
  overflow: hidden;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-tile.large {
  grid-column: span 2;
  grid-row: span 2;
}

.menu-tile img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.menu-tile.large img {
  height: 476px;
}

.menu-tile h2,
.menu-tile div {
  padding: 18px;
}

.menu-tile h2 {
  font-size: 22px;
}

.access-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 20px;
}

.access-panel {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.shop-info {
  margin: 24px 0 0;
}

.shop-info div {
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

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

.shop-info dd {
  margin: 4px 0 0;
}

.map-wrap {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e9dfc8;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.link-panel {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero,
  .page-hero,
  .intro-grid,
  .inside,
  .access-layout,
  .link-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .point-list,
  .food-showcase,
  .menu-gallery {
    grid-template-columns: 1fr;
  }

  .feature-food,
  .menu-tile.large {
    grid-row: auto;
    grid-column: auto;
  }

  .feature-food img,
  .menu-tile.large img {
    height: 300px;
  }

  .instagram,
  .section-heading.split {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-hours {
    padding-left: 0;
    border-left: 0;
  }

  .footer-tel {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .global-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-media {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .hero-media img {
    height: 230px;
  }

  .hero-media img:first-child {
    grid-row: auto;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .cta-grid,
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .fixed-cta {
    width: calc(100% - 24px);
    bottom: 10px;
  }

  .fixed-cta a {
    min-width: 0;
    flex: 1;
    padding: 10px 8px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }
}
