/* =========================================
   fleur. — Nail Salon
   Quiet Luxury × Soft Feminine × Modern Japanese
   ========================================= */

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

:root {
  /* Color palette */
  --cream: #FAF6F0;
  --ivory: #F4EEE5;
  --beige: #E8DFD3;
  --beige-deep: #D9CCB8;
  --pink-smoky: #E6CFC4;
  --pink-deep: #C9A89A;
  --mauve: #8B6F7E;
  --gold: #B8985E;
  --gold-soft: #D4BC8C;
  --text-dark: #3D3631;
  --text: #5A4F47;
  --text-soft: #8A7D72;
  --text-light: #B8AEA3;
  --line: #E5DDD2;
  --line-soft: #F0E9DE;
  --white: #FFFFFF;

  /* Typography */
  --font-serif-en: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-serif-jp: 'Noto Serif JP', 'Cormorant Garamond', serif;
  --font-sans-en: 'Inter', 'Noto Sans JP', sans-serif;
  --font-sans-jp: 'Noto Sans JP', 'Inter', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-pad: 24px;
  --section-pad-y: 120px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-base: 0.4s;
  --t-slow: 0.8s;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans-jp);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.04em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}


/* ---------- Image Placeholders ---------- */
.image-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--ivory) 0%, var(--beige) 60%, var(--pink-smoky) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(184, 152, 94, 0.25);
  pointer-events: none;
}

.image-placeholder::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 20px));
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

.placeholder-label {
  font-family: var(--font-serif-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-soft);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  margin-top: 32px;
}

.image-portrait { aspect-ratio: 3 / 4; }
.image-tall { aspect-ratio: 4 / 5; }

/* When a real image is loaded, it covers the placeholder gradient & label.
   If the image is missing, onerror removes the <img>, leaving the placeholder visible. */
.frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
  display: block;
}

/* gallery-01 の黄色みを抑え、他のギャラリー画像と色調を揃える微調整 */
.gallery-item-large .frame-img {
  filter: saturate(0.82) brightness(1.04) hue-rotate(-4deg);
}

/* ヒーロー画像の表示位置調整：手と爪がフレーム内に収まるように右寄りでクロップ
   ＋ 軽い彩度抑え（温かみは残す） */
.hero-placeholder .frame-img {
  object-position: 75% center;
  filter: saturate(0.92) brightness(1.02);
}

.hero-placeholder {
  position: relative;
}


/* ---------- Section Heads ---------- */
.section-head {
  margin-bottom: 60px;
}

.section-head.center {
  text-align: center;
}

.section-eyebrow {
  font-family: var(--font-serif-en);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 24px;
}

.section-eyebrow.light {
  color: var(--gold-soft);
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.title-en,
.hero-title-en {
  font-family: var(--font-serif-en);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

.title-jp,
.hero-title-jp {
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 0.18em;
  color: var(--text-soft);
}


/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}

.header.scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(250, 246, 240, 0.95);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 18px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-serif-en);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

.logo-sub {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-desktop ul {
  display: flex;
  gap: 36px;
}

.nav-desktop a {
  font-family: var(--font-serif-en);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-base) var(--ease);
}

.nav-desktop a:hover {
  color: var(--text-dark);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-serif-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  padding: 10px 22px;
  border: 1px solid var(--text-dark);
  transition: all var(--t-base) var(--ease);
}

.nav-cta:hover {
  background: var(--text-dark);
  color: var(--cream);
}

.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-dark);
  margin: 0 auto;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}

.hamburger span:first-child {
  margin-bottom: 7px;
}

.hamburger.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.hamburger.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
  z-index: 105;
}

.nav-mobile.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.nav-mobile a {
  font-family: var(--font-serif-en);
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--text-dark);
}

.nav-mobile-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 32px;
  border: 1px solid var(--text-dark);
  font-size: 16px !important;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(230, 207, 196, 0.7) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(212, 188, 140, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, var(--ivory) 0%, var(--beige) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-placeholder .placeholder-label {
  position: absolute;
  bottom: 32px;
  right: 32px;
  margin: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.hero-title-en {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.hero-title-jp {
  font-size: clamp(13px, 1.4vw, 16px);
}

.hero-lead {
  font-size: 14px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 48px;
  max-width: 420px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif-en);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  padding: 16px 32px;
  border: 1px solid var(--text-dark);
  transition: all var(--t-base) var(--ease);
}

.hero-cta:hover {
  background: var(--text-dark);
  color: var(--cream);
  gap: 18px;
}

.hero-cta svg {
  transition: transform var(--t-base) var(--ease);
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero-scroll span {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-soft);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--text-soft);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -40px; }
  100% { top: 40px; }
}


/* ============================================
   CONCEPT
   ============================================ */
.concept {
  padding: var(--section-pad-y) 0;
  background: var(--cream);
}

.concept-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-text p {
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 2.1;
}

.concept-sign {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--gold) !important;
  margin-top: 40px !important;
}


/* ============================================
   MENU
   ============================================ */
.menu {
  padding: var(--section-pad-y) 0;
  background: var(--ivory);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 48px;
  margin-bottom: 48px;
}

.menu-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.menu-card-image {
  margin-bottom: 24px;
  overflow: hidden;
}

.menu-card-image .image-placeholder {
  aspect-ratio: 5 / 4;
  transition: transform var(--t-slow) var(--ease);
}

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

.menu-card-body {
  padding: 0 8px 24px;
}

.menu-card-no {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 12px;
}

.menu-card-title {
  font-family: var(--font-serif-en);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.menu-card-jp {
  font-family: var(--font-serif-jp);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.menu-card-desc {
  font-size: 13.5px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 24px;
}

.menu-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.menu-time {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-soft);
}

.menu-price {
  font-family: var(--font-serif-en);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.menu-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.1em;
}


/* ============================================
   WHY
   ============================================ */
.why {
  padding: var(--section-pad-y) 0;
  background: var(--cream);
}

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

.why-card {
  text-align: center;
  padding: 0 12px;
}

.why-num {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 20px;
}

.why-title {
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.why-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.why-desc {
  font-size: 13.5px;
  line-height: 2.1;
  color: var(--text);
}


/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--section-pad-y) 0;
  background: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item .image-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  transition: transform var(--t-slow) var(--ease);
}

.gallery-item:hover .image-placeholder {
  transform: scale(1.05);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item:not(.gallery-item-large):not(.gallery-item-wide) {
  aspect-ratio: 1 / 1;
}

.gallery-item-large {
  aspect-ratio: auto;
}

.gallery-item-wide {
  aspect-ratio: 2 / 1;
}

.gallery-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.1em;
}

.link-underline {
  position: relative;
  color: var(--text-dark);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold);
  transition: color var(--t-base) var(--ease);
}

.link-underline:hover {
  color: var(--gold);
}


/* ============================================
   STORE
   ============================================ */
.store {
  padding: var(--section-pad-y) 0;
  background: var(--cream);
}

.store-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.store-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.store-row dt {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.store-row dd {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dark);
}

.text-sub {
  font-size: 12px;
  color: var(--text-soft);
}


/* ============================================
   ACCESS
   ============================================ */
.access {
  padding: var(--section-pad-y) 0;
  background: var(--ivory);
}

.access-map {
  margin-bottom: 60px;
}

.map-placeholder {
  aspect-ratio: 16 / 6;
  flex-direction: column;
  gap: 12px;
}

.map-placeholder .map-icon {
  color: var(--gold);
  margin-bottom: 8px;
}

.map-placeholder .placeholder-label {
  margin-top: 0;
}

.access-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}

.access-item {
  text-align: center;
}

.access-label {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
}

.access-text {
  font-size: 14px;
  line-height: 2;
  color: var(--text-dark);
}


/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: var(--section-pad-y) 0;
  background: var(--text-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(184, 152, 94, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201, 168, 154, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.final-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.final-title .title-en {
  color: var(--cream);
  font-size: clamp(32px, 5vw, 56px);
}

.final-title .title-jp {
  color: var(--gold-soft);
}

.final-lead {
  font-size: 14px;
  line-height: 2;
  color: var(--beige-deep);
  margin-bottom: 48px;
}

.final-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif-en);
  font-size: 14px;
  letter-spacing: 0.2em;
  padding: 16px 36px;
  transition: all var(--t-base) var(--ease);
}

.btn-primary {
  background: var(--gold);
  color: var(--text-dark);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  gap: 16px;
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--beige-deep);
}

.btn-secondary:hover {
  background: rgba(232, 223, 211, 0.1);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--cream);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-serif-en);
  font-weight: 500;
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.footer-tag {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav a {
  font-family: var(--font-serif-en);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--text);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-label {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
}

.sns-icons {
  display: flex;
  gap: 16px;
}

.sns-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--text);
  transition: all var(--t-base) var(--ease);
}

.sns-icon:hover {
  background: var(--text-dark);
  color: var(--cream);
  border-color: var(--text-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-fictional,
.footer-copy {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-soft);
}


/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ============================================
   Responsive — Tablet (~ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad-y: 90px;
  }

  .concept-body,
  .store-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item-wide {
    grid-column: span 3;
  }
}


/* ============================================
   Responsive — Mobile (~ 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-pad-y: 80px;
    --container-pad: 20px;
  }

  body {
    font-size: 14px;
  }

  /* Header */
  .nav-desktop,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .header-inner {
    padding: 14px var(--container-pad);
  }

  .logo-text {
    font-size: 22px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-bg {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: 65vh;
    margin: 0 0 48px 0;
    order: 1; /* 画像を上に */
  }

  .hero-content {
    order: 2; /* テキストを下に */
    text-align: left;
    padding-bottom: 0;
  }

  .hero-eyebrow {
    margin-bottom: 24px;
  }

  .hero-title-en {
    font-size: 44px;
  }

  .hero-lead {
    margin-bottom: 36px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-placeholder .placeholder-label {
    bottom: 20px;
    right: 20px;
  }

  /* Section heads */
  .section-head {
    margin-bottom: 48px;
  }

  /* Concept */
  .concept-body {
    gap: 40px;
  }

  /* Menu */
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-card {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
  }

  .why-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: initial; /* PC版の2行均等設定をリセット */
    grid-auto-rows: auto;        /* 各行は中身の高さに合わせる */
    gap: 12px;
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  /* Store */
  .store-row {
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 16px 0;
  }

  .store-row dt {
    font-size: 12px;
  }

  /* Access */
  .map-placeholder {
    aspect-ratio: 4 / 3;
  }

  .access-info {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Final CTA */
  .final-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 60px 0 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* ============================================
   Responsive — Small Mobile (~ 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-title-en {
    font-size: 38px;
  }

  .menu-card-title {
    font-size: 22px;
  }

  .store-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
