@charset "UTF-8";
/* =============================================================
   TRATTORIA LUCE  ―  casual italian
   1. Design Tokens / Reset
   2. Base & Utility
   3. Header / Nav
   4. Hero
   5. Concept
   6. Menu
   7. Information
   8. Reservation
   9. Footer / Fixed CTA
   10. Responsive
   ============================================================= */

/* -------------------------------------------------------------
   1. Design Tokens
   ------------------------------------------------------------- */
:root {
  /* color ― ホワイト × ダークグレー */
  --c-white:      #ffffff;
  --c-paper:      #f6f6f5;   /* 少し温かみのある白 */
  --c-line:       #e3e3e1;
  --c-ink:        #1e1e20;   /* ダークグレー（主役） */
  --c-ink-2:      #2b2b2e;
  --c-ink-3:      #3a3a3e;
  --c-gray:       #76767c;
  --c-gray-light: #a9a9ae;
  --c-accent:     #b7a37e;   /* 差し色：くすんだゴールド */

  /* typography */
  --f-serif: "Times New Roman", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "游明朝", serif;
  --f-sans:  "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック", Meiryo, sans-serif;

  /* layout */
  --w-container: 1120px;
  --pad-x: 24px;
  --header-h: 76px;

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------------------------------------------------
   Reset
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body,
h1, h2, h3, h4, p, figure, dl, dd, ul, li {
  margin: 0;
  padding: 0;
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* -------------------------------------------------------------
   2. Base & Utility
   ------------------------------------------------------------- */
body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-ink);
  background: var(--c-white);
  letter-spacing: 0.04em;
  overflow-wrap: break-word;
}

body.is-locked { overflow: hidden; }

.container {
  width: 100%;
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: clamp(72px, 10vw, 140px);
}

.section--dark {
  background: var(--c-ink);
  color: var(--c-white);
}

/* --- 見出し --- */
.section__head { margin-bottom: clamp(40px, 6vw, 72px); }
.section__head--center { text-align: center; }

.section__en {
  font-family: var(--f-serif);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--f-serif);
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.section--dark .section__title { color: var(--c-white); }

.section__desc {
  margin-top: 20px;
  font-size: 14px;
  color: var(--c-gray-light);
}

/* --- ボタン --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 210px;
  padding: 17px 34px;
  font-size: 14px;
  letter-spacing: 0.14em;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background-color .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}

.btn--lg { min-width: 260px; padding: 20px 40px; }

.btn--light {
  background: var(--c-white);
  color: var(--c-ink);
  border-color: var(--c-white);
}
.btn--light:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, .45);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--c-white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--c-ink);
  color: var(--c-white);
  border-color: var(--c-ink);
}
.btn--dark:hover { background: var(--c-accent); border-color: var(--c-accent); }

/* --- 画像プレースホルダー（実写に差し替え） --- */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--c-ink-2);
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 55%),
    radial-gradient(120% 90% at 80% 15%, rgba(183,163,126,.38) 0%, rgba(183,163,126,0) 60%),
    linear-gradient(180deg, #35353a 0%, #1e1e20 100%);
  overflow: hidden;
}

.ph--concept { aspect-ratio: 4 / 5; }

.ph--map {
  aspect-ratio: 16 / 11;
  display: grid;
  place-items: center;
  background-color: var(--c-paper);
  background-image:
    linear-gradient(var(--c-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-line) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
}
.ph--map span {
  font-family: var(--f-serif);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--c-gray);
}

.pc-only { display: inline; }
.sp-only { display: none; }

/* -------------------------------------------------------------
   3. Header / Nav
   ------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease);
}

/* スクロール後（JSで付与） */
.header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--c-line);
}

.header__inner {
  height: 100%;
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- ロゴ --- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-white);
  transition: color .4s var(--ease);
}
.header.is-scrolled .logo { color: var(--c-ink); }

.logo__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  font-family: var(--f-serif);
  font-size: 17px;
  border: 1px solid currentColor;
  border-radius: 50%;
  letter-spacing: 0;
}

.logo__text {
  font-family: var(--f-serif);
  font-size: 12px;
  letter-spacing: 0.26em;
  line-height: 1.35;
}
.logo__text em {
  display: block;
  font-style: normal;
  font-size: 17px;
  letter-spacing: 0.3em;
}

/* --- ナビ --- */
.nav__list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__link {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--c-white);
  transition: color .4s var(--ease), opacity .3s var(--ease);
}
.header.is-scrolled .nav__link { color: var(--c-ink); }

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__link--btn {
  padding: 11px 26px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 2px;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.nav__link--btn::after { display: none; }
.nav__link--btn:hover {
  background: var(--c-white);
  color: var(--c-ink);
  border-color: var(--c-white);
}
.header.is-scrolled .nav__link--btn {
  background: var(--c-ink);
  color: var(--c-white);
  border-color: var(--c-ink);
}
.header.is-scrolled .nav__link--btn:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
}

/* --- ハンバーガー --- */
.hamburger {
  display: none;
  position: relative;
  z-index: 110;
  width: 44px;
  height: 44px;
  padding: 0;
}
.hamburger span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1px;
  background: var(--c-white);
  transition: transform .4s var(--ease), opacity .25s var(--ease), background-color .4s var(--ease);
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 28px; }

.header.is-scrolled .hamburger span { background: var(--c-ink); }

.hamburger.is-open span { background: var(--c-white); }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* -------------------------------------------------------------
   4. Hero
   ------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-block: calc(var(--header-h) + 40px) 120px;
  color: var(--c-white);
  background: var(--c-ink);
  overflow: hidden;
}

/* 写真を差し替える場合は下の url() を変更 */
.hero__media {
  position: absolute;
  inset: 0;
  background-color: #202024;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  animation: heroZoom 14s var(--ease) forwards;
}

/* 写真の上に暗幕をかけて白文字の可読性を確保 */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(16,16,18,.88) 0%, rgba(16,16,18,.64) 52%, rgba(16,16,18,.42) 100%),
    linear-gradient(to bottom, rgba(16,16,18,.55) 0%, rgba(16,16,18,.15) 40%, rgba(16,16,18,.6) 100%);
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.hero__sub {
  font-family: var(--f-serif);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--c-accent);
  margin-bottom: 26px;
}

.hero__title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(34px, 6.4vw, 76px);
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.hero__title span { display: block; }
.hero__title span + span { text-indent: 1.2em; }

.hero__lead {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 2.1;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.36em;
  color: rgba(255, 255, 255, .7);
  padding-bottom: 66px;
}
.hero__scroll::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, .35);
  overflow: hidden;
}
.hero__scroll span { display: block; }

/* -------------------------------------------------------------
   5. Concept
   ------------------------------------------------------------- */
.concept { background: var(--c-white); }

.concept__body {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.concept__figure {
  position: relative;
  overflow: hidden;
}

.concept__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.concept__figure:hover img { transform: scale(1.04); }

.concept__catch {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.concept__text p + p { margin-top: 22px; }

.concept__text > p {
  font-size: 15px;
  line-height: 2.15;
  color: var(--c-ink-3);
}

.concept__points {
  display: grid;
  gap: 26px;
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--c-line);
}

.concept__points li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: baseline;
  column-gap: 8px;
}

.concept__points .num {
  grid-row: span 2;
  font-family: var(--f-serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--c-accent);
}

.concept__points h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.concept__points p {
  grid-column: 2;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-gray);
}

/* -------------------------------------------------------------
   6. Menu
   ------------------------------------------------------------- */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 5vw, 64px) clamp(40px, 7vw, 90px);
}

/* カテゴリ写真 */
.menu__thumb {
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--c-ink-2);
}

.menu__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(.88) saturate(.92);
  transition: transform 1.1s var(--ease), filter .6s var(--ease);
}
.menu__group:hover .menu__thumb img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

.menu__cat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  font-family: var(--f-serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--c-accent);
}
.menu__cat span {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-gray-light);
}

.menu__list { display: grid; gap: 22px; }

.menu__item-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

/* 品名と価格をリーダー線でつなぐ */
.menu__item-head::after {
  content: "";
  order: 1;
  flex: 1 1 auto;
  min-width: 18px;
  height: 1px;
  border-bottom: 1px dotted rgba(255, 255, 255, .28);
  transform: translateY(-4px);
}

.menu__name {
  order: 0;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--c-white);
}

.menu__price {
  order: 2;
  flex: 0 0 auto;
  font-family: var(--f-serif);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--c-white);
  white-space: nowrap;
}
.menu__price::before {
  content: "￥";
  font-size: 11px;
  margin-right: 2px;
  color: var(--c-gray-light);
}

.menu__note {
  margin-top: 5px;
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--c-gray-light);
}

/* --- コース --- */
.menu__course {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: clamp(56px, 8vw, 90px);
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .03);
}

.menu__course-en {
  font-family: var(--f-serif);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--c-accent);
  margin-bottom: 10px;
}

.menu__course-title {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.menu__course-text {
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--c-gray-light);
}

.menu__course-price {
  font-family: var(--f-serif);
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.menu__course-price span { font-size: .5em; margin-right: 4px; }
.menu__course-price em {
  font-style: normal;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-gray-light);
  margin-left: 10px;
}

/* -------------------------------------------------------------
   7. Information
   ------------------------------------------------------------- */
.info { background: var(--c-paper); }

/* 店内写真（横長バナー） */
.info__hero {
  margin-bottom: clamp(36px, 5vw, 64px);
  overflow: hidden;
}

.info__hero img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.info__hero figcaption {
  margin-top: 14px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--c-gray);
}

.info__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.info__row {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 8px 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-line);
}
.info__row:first-child { border-top: 1px solid var(--c-line); }

.info__dl dt {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: var(--c-gray);
  padding-top: 2px;
}

.info__dl dd {
  font-size: 14.5px;
  line-height: 1.9;
}

.info__dl dd a {
  border-bottom: 1px solid var(--c-line);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.info__dl dd a:hover { color: var(--c-accent); border-color: var(--c-accent); }

.info__map-note {
  margin-top: 12px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--c-gray-light);
}

/* -------------------------------------------------------------
   8. Reservation
   ------------------------------------------------------------- */
.reserve {
  position: relative;
  color: var(--c-white);
  text-align: center;
  overflow: hidden;
  background-color: var(--c-ink);
  background-image: url("../images/reserve.jpg");
  background-size: cover;
  background-position: center;
}
/* 写真を沈ませて文字を読みやすくする暗幕 */
.reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(183,163,126,.20) 0%, rgba(183,163,126,0) 70%),
    linear-gradient(rgba(22,22,24,.88), rgba(22,22,24,.92));
  pointer-events: none;
}

.reserve__inner { position: relative; z-index: 1; }

.reserve__title {
  font-family: var(--f-serif);
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 400;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}

.reserve__text {
  font-size: 14.5px;
  line-height: 2.05;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 42px;
}

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

.reserve__note {
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-gray-light);
}

/* -------------------------------------------------------------
   9. Footer / Fixed CTA
   ------------------------------------------------------------- */
.footer {
  background: var(--c-ink-2);
  color: var(--c-white);
  padding-top: 64px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 48px;
}

.footer__logo {
  font-family: var(--f-serif);
  font-size: 18px;
  letter-spacing: 0.3em;
  margin-bottom: 14px;
}
.footer__logo em { font-style: normal; color: var(--c-accent); }

.footer__addr {
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--c-gray-light);
}

.footer__nav {
  display: grid;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
}
.footer__nav a { color: var(--c-gray-light); transition: color .3s var(--ease); }
.footer__nav a:hover { color: var(--c-white); }

.copyright {
  padding: 22px var(--pad-x);
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--c-gray);
}

/* --- スマホ固定CTA（SPのみ表示） --- */
.fixed-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--c-white);
  background: var(--c-ink);
  border-radius: 3px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .28);
}

/* -------------------------------------------------------------
   10. Responsive
   ------------------------------------------------------------- */

/* --- タブレット --- */
@media (max-width: 1024px) {
  .nav__list { gap: 26px; }
}

/* --- タブレット縦 / スマホ --- */
@media (max-width: 900px) {
  :root { --header-h: 64px; }

  .concept__body,
  .info__body {
    grid-template-columns: 1fr;
  }

  .concept__figure { max-width: 560px; }
  .concept__figure img { aspect-ratio: 3 / 2; }

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

  /* ハンバーガー表示 */
  .hamburger { display: block; }

  /* ドロワーを開いてもロゴは前面に残す */
  .logo { position: relative; z-index: 110; }
  body.is-locked .logo,
  body.is-locked .header.is-scrolled .logo { color: var(--c-white); }

  /* ドロワーメニュー */
  .nav {
    position: fixed;
    inset: 0;
    z-index: 105;
    display: grid;
    place-items: center;
    background: var(--c-ink);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s var(--ease);
  }
  .nav.is-open { opacity: 1; visibility: visible; }

  .nav__list {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .nav__link {
    font-size: 16px;
    letter-spacing: 0.2em;
    color: var(--c-white);
  }
  .header.is-scrolled .nav__link { color: var(--c-white); }

  .nav__link--btn,
  .header.is-scrolled .nav__link--btn {
    display: inline-block;
    margin-top: 10px;
    padding: 15px 44px;
    background: transparent;
    color: var(--c-white);
    border-color: rgba(255, 255, 255, .5);
  }
}

/* --- スマホ --- */
@media (max-width: 767px) {
  body { font-size: 15px; padding-bottom: 84px; }

  .pc-only { display: none; }
  .sp-only { display: block; }

  .hero {
    min-height: 88svh;
    padding-block: calc(var(--header-h) + 30px) 100px;
  }
  .hero__title span + span { text-indent: 0.6em; }
  .hero__lead { line-height: 1.95; }
  .hero__actions { flex-direction: column; }
  .hero__scroll { display: none; }   /* ボタンと重なるためSPでは非表示 */

  .info__hero img { aspect-ratio: 3 / 2; }

  .btn, .btn--lg { width: 100%; min-width: 0; padding: 16px 24px; }

  .concept__points li { grid-template-columns: 44px 1fr; }

  .menu__course { flex-direction: column; align-items: flex-start; text-align: left; }

  .info__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .reserve__actions { flex-direction: column; }
  .reserve__text br { display: none; }

  .footer__inner { flex-direction: column; }

  /* 画面下の固定予約ボタン */
  .fixed-cta { display: block; }
}

/* --- 小型スマホ --- */
@media (max-width: 374px) {
  :root { --pad-x: 18px; }
  .logo__text em { font-size: 15px; letter-spacing: 0.22em; }
}

/* --- アニメーションを控える設定 --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* --- 印刷 --- */
@media print {
  .header, .hero__scroll, .fixed-cta { display: none !important; }
  body { color: #000; background: #fff; }
  .section--dark, .reserve, .footer { background: #fff !important; color: #000 !important; }
}
