*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink: #1a1714;
    --cream: #f5f0e8;
    --warm: #c8b89a;
    --muted: #7a6e63;
    --accent: #2c2420;
    --gold: #b89a6a;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Serif JP', serif;
    background: var(--cream);
    color: var(--ink);
    font-weight: 200;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.5rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(245,240,232,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 0.5px solid rgba(184,154,106,0.25);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 200;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--ink); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 45%;
    background: linear-gradient(135deg, #e8dfc8 0%, #d4c5a9 100%);
    z-index: 0;
  }
  .hero-content { position: relative; z-index: 1; max-width: 620px; }
  .hero-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem; font-weight: 200;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 0.4rem;
  }
  .hero-title em { font-style: italic; color: var(--muted); }
  .hero-sub {
    font-size: 0.85rem; font-weight: 200;
    color: var(--muted);
    line-height: 1.9;
    margin: 2rem 0 3rem;
    max-width: 420px;
    letter-spacing: 0.04em;
  }
  .hero-cta {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem; font-weight: 200;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 0.5px solid var(--gold);
    padding-bottom: 0.3rem;
    transition: color 0.3s, border-color 0.3s;
  }
  .hero-cta:hover { color: var(--gold); }
  .hero-deco {
    position: absolute; right: 6%; bottom: 12%;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(6rem, 12vw, 11rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(184,154,106,0.12);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
  }

  /* SECTIONS COMMON */
  section { padding: 6rem 3rem; }
  .section-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.58rem; font-weight: 200;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }
  .divider {
    width: 40px; height: 0.5px;
    background: var(--gold);
    margin: 2rem 0;
  }

  /* CONCEPT */
  .concept {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px; margin: 0 auto;
  }
  .concept-text p {
    font-size: 0.9rem; line-height: 2;
    color: var(--muted);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
  }
  .concept-visual {
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, #d4c5a9, #bfaa8a);
    position: relative;
    overflow: hidden;
  }
  .concept-visual::after {
    content: '♪';
    position: absolute; bottom: 2rem; right: 2rem;
    font-size: 5rem;
    color: rgba(245,240,232,0.25);
    font-style: italic;
  }
  .concept-tag {
    position: absolute; top: 2rem; left: -1px;
    background: var(--ink);
    color: var(--cream);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.55rem; font-weight: 200;
    letter-spacing: 0.3em; text-transform: uppercase;
    padding: 0.6rem 1.2rem;
  }

  /* MENU */
  .menu-section { background: var(--ink); color: var(--cream); }
  .menu-section .section-label { color: var(--gold); }
  .menu-section .section-title { color: var(--cream); }
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
    border-top: 0.5px solid rgba(184,154,106,0.25);
  }
  .menu-category {
    padding: 2.5rem;
    border-right: 0.5px solid rgba(184,154,106,0.2);
    border-bottom: 0.5px solid rgba(184,154,106,0.2);
  }
  .menu-category:nth-child(3n) { border-right: none; }
  .menu-cat-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem; font-weight: 200;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }
  .menu-item {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 1rem;
    border-bottom: 0.5px solid rgba(184,154,106,0.1);
    padding-bottom: 0.75rem;
  }
  .menu-item:last-child { border-bottom: none; }
  .item-name { font-size: 0.85rem; font-weight: 200; color: var(--cream); letter-spacing: 0.04em; }
  .item-desc { font-size: 0.7rem; color: rgba(200,184,154,0.6); margin-top: 0.2rem; letter-spacing: 0.03em; }
  .item-price { font-family: 'Josefin Sans', sans-serif; font-size: 0.75rem; color: var(--gold); letter-spacing: 0.05em; white-space: nowrap; margin-left: 1rem; }

  /* GALLERY */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 220px 220px;
    gap: 8px;
    margin-top: 3rem;
  }
  .gallery-item {
    overflow: hidden;
    position: relative;
  }
  .gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; background: linear-gradient(145deg,#bfaa8a,#a08060); }
  .gallery-item:nth-child(2) { grid-column: span 4; background: linear-gradient(145deg,#c8b89a,#b09070); }
  .gallery-item:nth-child(3) { grid-column: span 3; background: linear-gradient(145deg,#d4c5a9,#c0a880); }
  .gallery-item:nth-child(4) { grid-column: span 3; background: linear-gradient(145deg,#a89070,#907858); }
  .gallery-item:nth-child(5) { grid-column: span 4; background: linear-gradient(145deg,#b8a880,#9a8060); }
  .gallery-item::after {
    content: attr(data-label);
    position: absolute; bottom: 1rem; left: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(245,240,232,0.7);
  }

  /* INFO */
  .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1000px;
  }
  .info-block { margin-bottom: 2.5rem; }
  .info-block h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.58rem; font-weight: 200;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .info-block p {
    font-size: 0.88rem; line-height: 2;
    color: var(--muted);
    letter-spacing: 0.04em;
  }
  .map-placeholder {
    width: 100%; height: 240px;
    background: linear-gradient(145deg, #e0d5c0, #cfc0a0);
    display: flex; align-items: center; justify-content: center;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
  }
  .map-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(184,154,106,0.08) 30px, rgba(184,154,106,0.08) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(184,154,106,0.08) 30px, rgba(184,154,106,0.08) 31px);
  }
  .map-pin {
    width: 16px; height: 16px;
    border: 2px solid var(--ink);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative; z-index: 1;
  }

  /* CONTACT */
  .contact-section { background: #f0e8d8; }
  .contact-inner { max-width: 560px; }
  .contact-form { margin-top: 2.5rem; }
  .form-group { margin-bottom: 1.5rem; }
  .form-group label {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.58rem; font-weight: 200;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 0.5px solid var(--warm);
    padding: 0.5rem 0;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.88rem;
    font-weight: 200;
    color: var(--ink);
    outline: none;
    transition: border-color 0.3s;
    letter-spacing: 0.04em;
  }
  .form-group input:focus,
  .form-group textarea:focus { border-bottom-color: var(--gold); }
  .form-group textarea { resize: none; height: 80px; }
  .submit-btn {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem; font-weight: 200;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--cream);
    background: var(--ink);
    border: none;
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
  }
  .submit-btn:hover { background: var(--accent); }

  /* FOOTER */
  footer {
    background: var(--ink);
    padding: 3rem;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--cream);
    font-style: italic;
  }
  .footer-copy {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.55rem; font-weight: 200;
    letter-spacing: 0.2em;
    color: var(--muted);
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: fadeUp 0.8s ease 0.1s both; }
  .hero-title { animation: fadeUp 0.8s ease 0.25s both; }
  .hero-sub { animation: fadeUp 0.8s ease 0.4s both; }
  .hero-cta { animation: fadeUp 0.8s ease 0.55s both; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { gap: 1.5rem; }
    section { padding: 4rem 1.5rem; }
    .hero { padding: 7rem 1.5rem 3rem; }
    .hero::before { width: 100%; opacity: 0.4; }
    .concept { grid-template-columns: 1fr; gap: 2.5rem; }
    .concept-visual { aspect-ratio: 4/3; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-category { border-right: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 160px; }
    .info-grid { grid-template-columns: 1fr; gap: 0; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
  }

/* =========================================================
   IMAGE CONTROLS
   Change only the values in this section to adjust images.
   ========================================================= */

/* Concept image */
.concept-visual {
  background: none;
  overflow: hidden;
}

.concept-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  /* vertical position: top / center / bottom or 0%–100% */
  object-position: center top;

  /* enlargement: 1 = normal, 1.05 = 5% zoom */
  transform: scale(1);
  transform-origin: center top;
}

/* Gallery images */
.gallery-item {
  background: none !important;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transition: transform 0.6s ease;
}

/* Optional slight zoom when hovered with a mouse */
@media (hover: hover) {
  .gallery-item:hover img {
    transform: scale(1.04);
  }
}

/* Per-image focal point helper classes */
.gallery-item.image-focus-top img {
  object-position: center top;
}

.gallery-item.image-focus-center img {
  object-position: center center;
}

.gallery-item.image-focus-bottom img {
  object-position: center bottom;
}

/*
Examples:
- Move an image upward:
    object-position: center 20%;

- Enlarge an image:
    transform: scale(1.12);

- Show the entire image without cropping:
    object-fit: contain;
    background: #1a1714;
*/


/* =========================================================
   GOOGLE MAP
   ========================================================= */

.map-column {
  width: 100%;
}

.google-map {
  width: 100%;
  height: 320px;
  margin-top: 2rem;
  overflow: hidden;
  background: #e0d5c0;
}

.google-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.map-link {
  display: inline-block;
  margin-top: 0.9rem;
  padding-bottom: 0.25rem;
  border-bottom: 0.5px solid var(--gold);
  color: var(--muted);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.map-link:hover,
.email-link:hover {
  color: var(--gold);
}

.email-link {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 0.5px solid var(--warm);
}

@media (max-width: 768px) {
  .google-map {
    height: 280px;
    margin-top: 0;
  }

  /* Shorter gallery cards on smartphones */
  .gallery-item {
    height: 180px;
  }
}


/* =========================================================
   MENU BOARD IMAGES
   ========================================================= */
.menu-note {
  margin: 0.8rem 0 2rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.menu-board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.menu-board-card {
  margin: 0;
  padding: 1rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(160, 140, 110, 0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.menu-board-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.menu-board-card figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .menu-board-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .menu-board-card {
    padding: 0.75rem;
  }

  .menu-note {
    margin-bottom: 1.2rem;
  }
}


/* =========================================================
   MENU IMAGE LIGHTBOX
   ========================================================= */

.menu-image-button {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.menu-image-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.menu-image-button img {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (hover: hover) {
  .menu-image-button:hover img {
    transform: scale(1.015);
    opacity: 0.96;
  }
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(3px);
  cursor: zoom-out;
}

.image-lightbox__content {
  position: relative;
  z-index: 1;
  width: min(96vw, 1100px);
  max-height: 94vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  background: #fff;
}

.image-lightbox__close {
  position: absolute;
  top: -0.75rem;
  right: -0.25rem;
  z-index: 2;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1714;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.image-lightbox__close:hover {
  background: #fff;
}

.image-lightbox__close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .image-lightbox {
    padding: 0.5rem;
  }

  .image-lightbox__content {
    width: 100%;
    max-height: 96vh;
  }

  .image-lightbox__image {
    max-height: 94vh;
  }

  .image-lightbox__close {
    top: 0.4rem;
    right: 0.4rem;
  }
}


/* =========================================================
   GALLERY — 4 IMAGE LAYOUT
   ========================================================= */
.gallery-grid.gallery-grid--four {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 360px 360px;
  gap: 10px;
  margin-top: 3rem;
}

.gallery-grid--four .gallery-item {
  grid-column: auto !important;
  grid-row: auto !important;
  height: auto;
  background: none !important;
  overflow: hidden;
  position: relative;
}

.gallery-grid--four .gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
}

.gallery-grid--four .gallery-item:nth-child(1) img {
  object-position: center center;
}

.gallery-grid--four .gallery-item:nth-child(2) img {
  object-position: center 48%;
}

.gallery-grid--four .gallery-item:nth-child(3) img {
  object-position: center 45%;
}

.gallery-grid--four .gallery-item:nth-child(4) img {
  object-position: center center;
}

@media (max-width: 768px) {
  .gallery-grid.gallery-grid--four {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
  }

  .gallery-grid--four .gallery-item {
    height: 260px;
  }

  .gallery-grid--four .gallery-item:nth-child(1) {
    height: 220px;
  }

  .gallery-grid--four .gallery-item:nth-child(3) {
    height: 320px;
  }
}


/* =========================================================
   MOBILE CONCEPT IMAGE — SHOW FULL PORTRAIT IMAGE
   ========================================================= */
@media (max-width: 768px) {
  .concept-visual {
    width: 100%;
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    background: transparent;
  }

  .concept-visual img {
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
    object-fit: contain;
    object-position: center center;
    transform: none;
  }

  .concept-tag {
    position: absolute;
    top: 1rem;
    left: 0;
  }
}
