:root {
  --ink: #151515;
  --muted: #6f6a64;
  --line: #dfd9d0;
  --paper: #f8f7f4;
  --white: #fffdf9;
  --wood: #a77b52;
  --wood-dark: #765438;
  --soft-gray: #ecebea;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0));
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a {
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: currentColor;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78);
  opacity: 0;
  animation: heroCrossfade 12s ease-in-out infinite;
}

.hero-image:nth-child(2) {
  animation-delay: -6s;
}

@keyframes heroCrossfade {
  0%,
  42% {
    opacity: 1;
  }

  50%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.18) 52%,
    rgba(0, 0, 0, 0.05)
  );
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 50px;
}

.eyebrow,
.section-label,
.item-kana {
  margin: 0;
  color: var(--wood-dark);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 253, 249, 0.88);
}

.hero h1 {
  margin: 12px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 12vw, 138px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p:last-child {
  max-width: 520px;
  margin: 0;
  font-size: clamp(16px, 2vw, 22px);
}

.hero-actions,
.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid currentColor;
  font-size: 13px;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary,
.button-dark {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-secondary,
.button-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 253, 249, 0.7);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button-light {
  color: var(--ink);
  border-color: var(--line);
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--wood-dark);
  border-color: var(--wood-dark);
}

.scroll-link {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 56px);
  bottom: 30px;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.quick-info {
  width: min(var(--max), calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -48px auto 0;
  position: relative;
  z-index: 3;
  background: var(--line);
  border: 1px solid var(--line);
}

.quick-info div {
  padding: 22px clamp(18px, 3vw, 28px);
  background: var(--white);
}

.quick-info span {
  display: block;
  color: var(--wood-dark);
  font-size: 11px;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 500;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0;
}

.concept-section {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(28px, 7vw, 96px);
}

.concept-text h2,
.section-heading h2,
.shop-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

.concept-text p,
.shop-copy p {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.menu-section,
.shop-section {
  width: 100%;
  max-width: none;
  background: var(--paper);
}

.menu-section > *,
.shop-section > * {
  width: min(var(--max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.section-heading > div {
  max-width: 760px;
}

.section-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.menu-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.menu-intro span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--wood-dark);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.menu-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.menu-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
}

.menu-body {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 14px;
  padding: clamp(24px, 3vw, 38px);
}

.menu-item h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.menu-body > p:last-of-type {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.price-list {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.price-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.price-list dt {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.price-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.menu-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.menu-cta p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  flex: 0 0 auto;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
}

.today-section {
  background: var(--white);
}

.bake-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.bake-grid article {
  min-height: 230px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--white);
}

.bake-grid time {
  color: var(--wood-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.bake-grid h3 {
  margin: 28px 0 10px;
  font-size: 18px;
  font-weight: 500;
}

.bake-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.news-item time {
  color: var(--wood-dark);
  font-size: 13px;
}

.news-item p {
  margin: 0;
  color: var(--muted);
}

.shop-section {
  display: grid;
  grid-template-columns: minmax(280px, 500px) minmax(360px, 560px);
  justify-content: center;
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(56px, 7vw, 88px) clamp(20px, 4vw, 56px);
}

.shop-section > .shop-copy,
.shop-section > .shop-info {
  width: auto;
  margin: 0;
}

.shop-copy .button-light {
  background: var(--white);
}

.shop-copy p {
  max-width: 560px;
  margin-top: 22px;
}

.shop-actions {
  margin-top: 24px;
}

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

.shop-info div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.shop-info dt {
  color: var(--wood-dark);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.shop-info dd a {
  display: inline-block;
  margin-right: 18px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.social-section {
  padding-top: 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.social-grid a {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.social-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 180ms ease, opacity 180ms ease;
}

.social-grid span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--white);
  font-size: 13px;
}

.social-grid a:hover img,
.social-grid a:focus-visible img {
  transform: scale(1.04);
  opacity: 1;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: var(--ink);
}

.footer p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.footer small {
  color: rgba(255, 253, 249, 0.7);
}

@media (max-width: 960px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-info,
  .bake-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    padding: 18px 20px;
    transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  }

  .site-header.is-menu-open {
    color: var(--ink);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 14px 34px rgba(20, 18, 16, 0.08);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 5px;
    padding: 12px;
    color: currentColor;
    background: transparent;
    border: 1px solid rgba(255, 253, 249, 0.48);
    border-radius: 0;
    cursor: pointer;
  }

  .site-header.is-menu-open .menu-toggle {
    border-color: var(--line);
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-width: none;
    padding: 8px 20px 18px;
    color: var(--ink);
    background: rgba(255, 253, 249, 0.96);
    border-top: 1px solid rgba(223, 217, 208, 0.8);
    box-shadow: 0 18px 34px rgba(20, 18, 16, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-copy {
    align-self: end;
    padding-bottom: 96px;
  }

  .hero-actions,
  .shop-actions,
  .menu-cta {
    display: grid;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.28),
      rgba(0, 0, 0, 0.18) 35%,
      rgba(0, 0, 0, 0.62)
    );
  }

  .concept-section,
  .shop-section,
  .news-item {
    grid-template-columns: 1fr;
  }

  .shop-section {
    padding: 56px 20px;
  }

  .quick-info {
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 12px;
  }

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

  .menu-body {
    min-height: 230px;
  }

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

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

  .footer {
    display: block;
  }

  .footer small {
    display: block;
    margin-top: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
  }

  .hero-image:first-child {
    opacity: 1;
  }
}
