/* ========================================
   Google Fonts
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500&family=Noto+Serif+JP:wght@300;400&display=swap');

/* ========================================
   CSS Custom Properties (Design Tokens)
   ======================================== */
:root {
  /* Colors */
  --color-bg: #222222;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-grey-dark: #333333;
  --color-header-bg: rgba(0, 0, 0, 0.36);
  --color-overlay-footer: rgba(31, 33, 34, 0.4);

  /* Fonts */
  --font-montserrat: 'Montserrat', sans-serif;
  --font-noto-serif: 'Noto Serif JP', serif;

  /* Font Weights */
  --fw-thin: 100;
  --fw-extralight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;

  /* Font Sizes */
  --fs-title: 100px;
  --fs-subtitle: 64px;
  --fs-heading: 32px;
  --fs-body-lg: 20px;
  --fs-nav: 16px;
  --fs-body: 14px;
  --fs-small: 12px;

  /* Line Heights */
  --lh-title: 1.4;
  --lh-subtitle: 1.4;
  --lh-body: 1.7;
  --lh-nav: 1.2;

  /* Spacing */
  --section-py: 120px;
  --content-padding: 60px;

  /* Layout */
  --max-width: 1440px;
  --header-height: 100px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.sp-only {
  display: none;
}

body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-noto-serif);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: 1.4px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

/* ========================================
   Section Title Pattern
   (white line + title)
   ======================================== */
.section-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-label__line {
  width: 15px;
  height: 1px;
  background-color: var(--color-white);
  margin-bottom: 30px;
}

.section-label__title {
  font-family: var(--font-montserrat);
  font-weight: var(--fw-thin);
  font-size: var(--fs-title);
  line-height: var(--lh-title);
  letter-spacing: 0;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color var(--transition-normal);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 0 80px;
  background-color: var(--color-header-bg);
}

.header__logo img {
  height: 77px;
  width: 175px;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19.5px 20px;
  font-family: var(--font-montserrat);
  font-weight: var(--fw-medium);
  font-size: var(--fs-nav);
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}

.header__separator {
  width: 1px;
  height: 30px;
  background-color: var(--color-white);
  margin: 0 16px;
}

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

.header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.header__social-link img {
  width: 17px;
  height: 17px;
}

/* Hamburger Menu */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.header__hamburger-bar {
  width: 28px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-fast);
}

.header__hamburger--active .header__hamburger-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__hamburger--active .header__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.header__hamburger--active .header__hamburger-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Header scrolled state */

/* ========================================
   Floating Phone Button
   ======================================== */
.phone-button {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 999;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.phone-button__bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-white);
  border-radius: 50%;
}

.phone-button__icon {
  position: relative;
  font-size: 36px;
  color: var(--color-grey-dark);
  z-index: 1;
}

.phone-button__text {
  position: relative;
  font-family: var(--font-noto-serif);
  font-weight: var(--fw-regular);
  font-size: var(--fs-small);
  color: var(--color-bg);
  text-align: center;
  line-height: 1;
  z-index: 1;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__background img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: -10%;
  left: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero__emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 2s ease 1s forwards;
}

.hero__emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero__scroll {
  position: absolute;
  bottom: 0;
  left: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  z-index: 4;
}

.hero__scroll-text {
  font-family: var(--font-montserrat);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  letter-spacing: 1.4px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-bottom: 10px;
}

.hero__scroll-line {
  width: 1px;
  height: 160px;
  background-color: var(--color-white);
}

/* ========================================
   Story Section (#top_story)
   ======================================== */
.story {
  padding: 0 60px var(--section-py) 160px;
}

.story__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.story__label {
  padding: 60px 0;
}

.story__content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story__text {
  display: flex;
  flex-direction: column;
}

.story__title {
  font-family: var(--font-montserrat);
  font-weight: var(--fw-thin);
  font-size: var(--fs-title);
  line-height: var(--lh-title);
  letter-spacing: 0;
  margin-bottom: 60px;
}

.story__subtitle-ja {
  font-family: var(--font-noto-serif);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  letter-spacing: 1.4px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.story__subtitle-fr {
  font-family: var(--font-montserrat);
  font-weight: var(--fw-light);
  font-size: var(--fs-body);
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 30px;
}

.story__paragraphs {
  display: flex;
  flex-direction: column;
  gap: 23.4px;
}

.story__paragraph {
  font-family: var(--font-noto-serif);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.7;
  letter-spacing: 1.4px;
}

.story__image {
  width: 480px;
  min-width: 480px;
  height: 680px;
  padding-left: 80px;
}

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

/* ========================================
   Full-width Image Section
   ======================================== */
.fullwidth {
  padding: var(--section-py) 0;
}

.fullwidth__frame {
  height: 630px;
  padding: 10px;
  overflow: hidden;
}

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

/* ========================================
   About Section (#about)
   ======================================== */
.about {
  max-width: var(--max-width);
  padding: var(--section-py) 120px var(--section-py) 160px;
}

.about__label {
  padding: 60px 0;
}

.about__item {
  display: flex;
  align-items: center;
  padding: var(--content-padding);
}

.about__item--reversed {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.about__item-text {
  width: 360px;
  min-width: 360px;
  display: flex;
  flex-direction: column;
}

.about__item-heading {
  font-family: var(--font-montserrat);
  font-weight: var(--fw-extralight);
  font-size: var(--fs-subtitle);
  line-height: var(--lh-subtitle);
  letter-spacing: 0;
}

.about__item-subheading {
  font-family: var(--font-noto-serif);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  letter-spacing: 1.4px;
  line-height: 1.4;
  margin-top: 0.59px;
  margin-bottom: 20px;
}

.about__item-body {
  font-family: var(--font-noto-serif);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 2;
  letter-spacing: 1.4px;
  width: 360px;
}

.about__item-image {
  flex: 1;
  height: 700px;
  padding-left: var(--content-padding);
}

.about__item--reversed .about__item-image {
  padding-left: 0;
  padding-right: var(--content-padding);
}

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

/* ========================================
   Cuisine Gallery (#top_gallery)
   ======================================== */
.cuisine {
  padding: var(--section-py) 0;
}

.cuisine__header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 60px 60px;
  max-width: var(--max-width);
}

.cuisine__header .section-label {
  align-items: flex-end;
}

.cuisine__subtitle {
  font-family: var(--font-montserrat);
  font-weight: var(--fw-light);
  font-size: var(--fs-small);
  text-align: right;
  mix-blend-mode: difference;
}

.cuisine__label-sub {
  font-family: var(--font-noto-serif);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  letter-spacing: 1.4px;
}

.cuisine__gallery {
  display: flex;
  overflow-x: auto;
  cursor: grab;
  border: 1px solid var(--color-white);
  margin-left: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cuisine__gallery::-webkit-scrollbar {
  display: none;
}

.cuisine__gallery:active {
  cursor: grabbing;
}

.cuisine__card {
  width: 460px;
  min-width: 460px;
  height: 600px;
  overflow: hidden;
}

.cuisine__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.cuisine__card:hover img {
  transform: scale(1.05);
}

/* ========================================
   Menu Section (#top_menu)
   ======================================== */
.menu {
  background-color: var(--color-bg);
  padding: var(--section-py) 0;
}

.menu__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 0 0 160px;
}

.menu .section-label__line--white {
  background-color: #fff;
}

.menu .section-label__title {
  color: #fff;
}

.menu__label-sub {
  font-family: var(--font-jp);
  font-size: 14px;
  color: #fff;
  margin-top: 5px;
}

.menu__filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0 40px;
  padding-right: 60px;
  flex-wrap: wrap;
  gap: 10px;
}

.menu__filters-left {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.menu__filter {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 14px;
  padding: 6px 24px;
  border-radius: 64px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.menu__filter--active,
.menu__filter:hover {
  background-color: #fff;
  color: #1F2122;
}

.menu__filter--link {
  text-decoration: none;
  display: inline-block;
}

/* Horizontal scroll cards */
.menu__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 20px;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.menu__scroll::-webkit-scrollbar {
  display: none;
}

.menu__cards {
  display: flex;
  gap: 0;
  padding-left: 140px;
}

.menu__card {
  flex: 0 0 250px;
  padding: 20px;
}

.menu__card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #2a2b2c;
}

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

.menu__card-info {
  color: #fff;
}

.menu__card-title {
  font-family: var(--font-en);
  font-weight: 200;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 2px;
}

.menu__card-subtitle {
  font-family: var(--font-jp);
  font-size: 14px;
  letter-spacing: 1.4px;
  display: block;
  margin-bottom: 12px;
  line-height: 1.4;
}

.menu__card-desc {
  font-family: var(--font-jp);
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 12px;
}

.menu__card-price {
  display: flex;
  align-items: baseline;
}

.menu__card-price-num {
  font-family: var(--font-en);
  font-weight: 200;
  font-size: 28px;
  color: #fff;
}

.menu__card-price small {
  font-family: var(--font-jp);
  font-size: 14px;
  color: #fff;
  margin-left: 4px;
}

/* Scroll navigation */
.menu__scroll-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 160px 0;
  gap: 15px;
}

.menu__scroll-label {
  font-family: var(--font-en);
  font-weight: 100;
  font-size: 20px;
  color: #fff;
}

.menu__scroll-line {
  width: 150px;
  height: 1px;
  background-color: #797979;
}

.menu__scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.menu__scroll-btn:hover {
  background-color: #fff;
}

.menu__scroll-btn:hover svg path {
  stroke: #1F2122;
}

/* 2x2 Category grid */
.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0;
}

.menu__grid-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 30px;
  background-color: #2a2b2c;
}

.menu__grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.menu__grid-item:hover img {
  transform: scale(1.05);
}

.menu__grid-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(31, 33, 34, 0.4);
}

.menu__grid-title {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  line-height: 1.4;
}

.menu__grid-subtitle {
  font-family: var(--font-jp);
  font-size: 14px;
  color: #fff;
}

/* ========================================
   Restaurant Section (#restaurant)
   ======================================== */
.restaurant {
  padding: var(--section-py) 0 var(--section-py) 160px;
}

.restaurant__label {
  padding: 60px 0;
}

.restaurant__content {
  display: flex;
  align-items: center;
}

.restaurant__info {
  display: flex;
  flex-direction: column;
}

.restaurant__logo {
  width: 341px;
  margin-bottom: 20px;
}

.restaurant__logo img {
  width: 100%;
  height: auto;
}

.restaurant__name {
  font-family: var(--font-montserrat);
  font-weight: var(--fw-light);
  font-size: var(--fs-body-lg);
  letter-spacing: 2px;
  line-height: 1.7;
  margin-bottom: 9px;
}

.restaurant__details {
  display: flex;
  flex-direction: column;
}

.restaurant__detail-row {
  display: flex;
  align-items: flex-start;
  line-height: 1.7;
}

.restaurant__detail-label {
  font-family: var(--font-noto-serif);
  font-weight: var(--fw-light);
  font-size: var(--fs-body);
  letter-spacing: 1.4px;
  width: 100px;
  min-width: 100px;
}

.restaurant__detail-value {
  font-family: var(--font-noto-serif);
  font-weight: var(--fw-light);
  font-size: var(--fs-body);
  letter-spacing: 1.4px;
}

.restaurant__detail-value--mono {
  font-family: var(--font-montserrat);
  font-weight: var(--fw-light);
}

.restaurant__image {
  flex: 1;
  padding: 0 120px 0 60px;
}

.restaurant__image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* ========================================
   Map Section (#map)
   ======================================== */
.map {
  padding: 0 120px var(--section-py) 160px;
}

.map__frame {
  width: 100%;
  height: 540px;
  overflow: hidden;
}

.map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
   Reservation Section (#contact)
   ======================================== */
.reservation {
  padding: var(--section-py) 0 var(--section-py) 160px;
}

.reservation__label {
  padding-top: 60px;
}

.reservation__image {
  width: calc(100% + 160px);
  height: 600px;
  margin-top: 40px;
  margin-left: -160px;
  overflow: hidden;
}

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

.reservation__text {
  font-family: var(--font-noto-serif);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  letter-spacing: 1.4px;
  line-height: 1.4;
  margin-top: 30px;
}

.reservation__phone {
  font-family: var(--font-montserrat);
  font-weight: var(--fw-light);
  font-size: var(--fs-body);
  letter-spacing: 1.4px;
  line-height: 1.7;
  margin-top: 15px;
}

/* ========================================
   Special Thanks Section
   ======================================== */
.thanks {
  background-color: var(--color-bg);
  padding: var(--section-py) 0;
}

.thanks__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 160px;
}

.thanks .section-label__title {
  color: #fff;
}

.thanks__photos {
  display: flex;
  gap: 30px;
  margin: 50px 0 40px;
  justify-content: center;
}

.thanks__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.thanks__message {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.thanks__message p {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 2;
  color: #fff;
  margin-bottom: 16px;
}

.thanks__divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 30px;
  max-width: 500px;
}

.thanks__divider-line {
  flex: 1;
  height: 1px;
  background-color: #c0b8ae;
}

.thanks__divider-text {
  font-family: var(--font-en);
  font-weight: 200;
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
}

.thanks__note-label {
  text-align: center;
  font-family: var(--font-jp);
  font-size: 12px;
  color: #797979;
  margin-bottom: 12px;
}

.thanks__names {
  text-align: center;
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 2;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 50px;
}

.thanks__chef-note {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 40px;
  border-left: 2px solid #797979;
  background-color: rgba(255, 255, 255, 0.05);
}

.thanks__chef-note-text {
  font-family: var(--font-jp);
  font-size: 14px;
  font-style: italic;
  line-height: 2;
  color: #fff;
  margin-bottom: 16px;
}

.thanks__chef-sign {
  font-family: var(--font-en);
  font-weight: 200;
  font-size: 18px;
  color: #fff;
  text-align: right;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 0 160px var(--section-py);
}

.footer__banner {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__banner-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 30px;
}

.footer__banner-image {
  width: 740px;
  height: 493px;
  object-fit: cover;
}

.footer__banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-overlay-footer);
}

.footer__banner-title {
  font-family: var(--font-montserrat);
  font-weight: var(--fw-medium);
  font-size: var(--fs-heading);
  line-height: 1.4;
  text-align: center;
}

.footer__banner-subtitle {
  font-family: var(--font-noto-serif);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.4;
  text-align: center;
}

.footer__social {
  display: flex;
  align-items: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.footer__social-link img {
  height: 20px;
  width: auto;
  transform: scaleY(-1);
}

.footer__copyright {
  font-family: var(--font-montserrat);
  font-weight: var(--fw-light);
  font-size: var(--fs-small);
  text-align: center;
  line-height: 1.4;
}

/* ========================================
   Responsive - Mobile (max-width: 767px)
   ======================================== */
@media (max-width: 767px) {
  .sp-only {
    display: inline;
  }

  :root {
    --fs-title: 40px;
    --fs-subtitle: 32px;
    --fs-heading: 24px;
    --header-height: 70px;
    --section-py: 60px;
    --content-padding: 20px;
  }

  /* Header */
  .header__inner {
    padding: 0 20px;
  }

  .header__logo img {
    height: 50px;
    width: auto;
  }

  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

  .header__nav--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 0;
  }

  .header__nav-link {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    justify-content: flex-start;
  }

  .header__separator {
    display: none;
  }

  .header__social-links {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .header__social-link {
    padding: 10px;
  }

  /* Phone Button */
  .phone-button {
    width: 80px;
    height: 80px;
    right: 20px;
    bottom: 20px;
  }

  .phone-button__icon {
    font-size: 24px;
  }

  .phone-button__text {
    font-size: 8px;
  }

  /* Hero */
  .hero__scroll {
    left: 15px;
    padding: 15px;
  }

  .hero__scroll-line {
    height: 80px;
  }

  .hero__emblem {
    width: 100px;
    height: 100px;
  }

  /* Story */
  .story {
    padding: 0 20px var(--section-py) 20px;
  }

  .story__content {
    flex-direction: column;
  }

  .story__image {
    width: 100%;
    min-width: 100%;
    height: 400px;
    padding-left: 0;
    margin-top: 40px;
  }

  /* Fullwidth */
  .fullwidth {
    display: none;
  }

  /* About */
  .about {
    padding: var(--section-py) 20px;
    max-width: 100%;
  }

  .about__item {
    flex-direction: column;
    padding: 30px 0;
  }

  .about__item--reversed {
    flex-direction: column;
  }

  .about__item-text {
    width: 100%;
    min-width: 100%;
  }

  .about__item-body {
    width: 100%;
  }

  .about__item-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding-left: 0;
    margin-top: 30px;
  }

  .about__item--reversed .about__item-image {
    padding-right: 0;
  }

  /* Cuisine Gallery */
  .cuisine__header {
    padding: 0 20px 30px;
  }

  .cuisine__card {
    width: 300px;
    min-width: 300px;
    height: 400px;
  }

  /* Menu */
  .menu__header {
    padding: 0 20px;
  }

  .menu__filters {
    margin: 30px 0 20px;
    flex-wrap: nowrap;
    padding-right: 0;
  }

  .menu__filter {
    font-size: 12px;
    padding: 5px 14px;
  }

  .menu__cards {
    padding-left: 20px;
  }

  .menu__card {
    flex: 0 0 200px;
    padding: 10px;
  }

  .menu__card-title {
    font-size: 20px;
  }

  .menu__card-price-num {
    font-size: 24px;
  }

  .menu__scroll-nav {
    display: none;
  }

  .menu__grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    margin-top: 20px;
  }

  .menu__grid-item {
    margin: 10px 0;
  }

  .menu__grid-title {
    font-size: 24px;
  }

  /* Restaurant */
  .restaurant {
    padding: var(--section-py) 20px;
  }

  .restaurant__content {
    flex-direction: column;
  }

  .restaurant__info {
    align-items: center;
  }

  .restaurant__logo {
    width: 200px;
  }

  .restaurant__image {
    width: 100%;
    padding: 30px 0 0 0;
  }

  .restaurant__image img {
    height: 300px;
  }

  /* Map */
  .map {
    padding: 0 20px var(--section-py) 20px;
  }

  .map__frame {
    height: 300px;
  }

  /* Reservation */
  .reservation {
    padding: var(--section-py) 20px;
  }

  .reservation__image {
    width: calc(100% + 40px);
    margin-left: -20px;
    height: 300px;
  }

  /* Special Thanks */
  .thanks__inner {
    padding: 0 20px;
  }

  .thanks__photos {
    flex-direction: column;
    align-items: center;
    margin: 30px 0 30px;
  }

  .thanks__message p {
    font-size: 14px;
    text-align: left;
  }

  .thanks__chef-note {
    padding: 20px 24px;
  }

  /* Footer */
  .footer {
    padding: 0 20px var(--section-py);
    gap: 40px;
  }

  .footer__banner {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .footer__banner-link {
    padding: 0;
    width: 100%;
    height: 100%;
  }

  .footer__banner-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
  }
}

/* ========================================
   Responsive - Tablet (768px+)
   ======================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --fs-title: 64px;
    --fs-subtitle: 48px;
    --section-py: 80px;
  }

  .header__inner {
    padding: 0 40px;
  }

  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

  .header__nav--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
  }

  .header__nav-link {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header__separator {
    display: none;
  }

  /* Story */
  .story {
    padding: 0 40px var(--section-py) 0;
  }

  .story__content {
    flex-direction: column;
  }

  .story__image {
    width: 100%;
    min-width: 100%;
    height: 500px;
    padding-left: 0;
    margin-top: 40px;
  }

  /* About */
  .about {
    padding: var(--section-py) 40px;
    max-width: 100%;
  }

  .about__item-text {
    width: 300px;
    min-width: 300px;
  }

  .about__item-body {
    width: 300px;
  }

  .about__item-image {
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  /* Cuisine */
  .cuisine__card {
    width: 380px;
    min-width: 380px;
    height: 500px;
  }

  /* Restaurant */
  .restaurant {
    padding: var(--section-py) 40px;
  }

  .restaurant__image {
    padding: 0 40px 0 40px;
  }

  .restaurant__image img {
    height: 450px;
  }

  /* Map */
  .map {
    padding: 0 40px var(--section-py) 40px;
  }

  .map__frame {
    height: 400px;
  }

  /* Reservation */
  .reservation {
    padding: var(--section-py) 40px;
  }

  /* Footer */
  .footer {
    padding: 0 40px var(--section-py);
  }
}

/* ========================================
   Responsive - Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) and (max-width: 1439px) {
  :root {
    --fs-title: 80px;
    --fs-subtitle: 54px;
  }

  .story {
    padding: 0 40px var(--section-py) 0;
  }

  .story__image {
    width: 380px;
    min-width: 380px;
    height: 550px;
  }

  .about {
    padding: var(--section-py) 80px var(--section-py) 0;
  }

  .about__item-image {
    height: 550px;
  }

  .restaurant {
    padding: var(--section-py) 0 var(--section-py) 100px;
  }

  .restaurant__image {
    padding: 0 80px 0 40px;
  }

  .restaurant__image img {
    height: 500px;
  }

  .map {
    padding: 0 80px var(--section-py) 100px;
  }

  .reservation {
    padding: var(--section-py) 0 var(--section-py) 100px;
  }

  .footer {
    padding: 0 100px var(--section-py);
  }

  .cuisine__card {
    width: 420px;
    min-width: 420px;
    height: 560px;
  }
}
