/* 麺元素 — 参照 https://www.tempura-tentuyu.com/ のトーン・レイアウトを独自実装 */

:root {
  --ink: #2a241d;
  --ink-soft: #5a4f44;
  --ink-mute: #8a7e70;
  --line: #c9bfae;
  --line-soft: #e0d8c8;
  --paper: #f4ede0;
  --paper-warm: #efe6d4;
  --dark: #1f1a14;
  --accent: #6b5536;

  --serif: "Shippori Mincho B1", "Zen Old Mincho", "Noto Serif JP",
    "游明朝", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  --serif-deco: "Shippori Mincho B1", "Noto Serif JP", serif;
  --num: "Cormorant Garamond", "Noto Serif JP", serif;
  --eng: "Cormorant Garamond", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", system-ui, sans-serif;

  --side: 84px;
  --right: 240px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  background: var(--paper) url("../img/bg-paper.jpg") top left repeat;
  background-size: 720px auto;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
}

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

a { color: inherit; text-decoration: none; transition: opacity 0.3s var(--ease); }
a:hover { opacity: 0.65; }

p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
dl, dd { margin: 0; }

:focus-visible { outline: 1px solid var(--ink); outline-offset: 3px; }

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

@media (max-width: 900px) {
  body { font-size: 14px; line-height: 1.95; }
  .pc-only { display: none; }
  .sp-only { display: block; }
}

.ttl-tate {
  font-family: var(--serif-deco);
  font-weight: 500;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 2.1;
  letter-spacing: 0.22em;
  color: var(--ink);
  display: inline-block;
}

.ttl-tate .stroke {
  display: inline-block;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--ink) 0%, transparent 100%);
  margin-top: 12px;
}

@media (max-width: 900px) {
  .tate-pc {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
  .ttl-tate .stroke { display: none; }
}

@media (min-width: 901px) {
  .tate-pc {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: mixed;
  }
}

.site-header {
  position: relative;
  z-index: 50;
}

.brand-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--side);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 60;
}

.brand-fixed a {
  pointer-events: auto;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--serif-deco);
  font-size: 22px;
  letter-spacing: 0.48em;
  color: var(--ink);
  padding: 22px 10px;
  background: rgba(244, 237, 224, 0.78);
  border: 1px solid var(--line-soft);
  line-height: 1;
}

.brand-fixed .brand-en {
  display: block;
  margin-top: 14px;
  font-family: var(--eng);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--ink-soft);
}

.contact-fixed {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  text-align: right;
}

.contact-fixed .label {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: var(--ink-soft);
}

.contact-fixed .tel {
  font-family: var(--num);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
}

.contact-fixed .btn-line {
  display: inline-block;
  padding: 11px 22px;
  font-family: var(--serif-deco);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--ink);
  border: 1px solid var(--ink);
  background: rgba(244, 237, 224, 0.82);
}

.contact-fixed .btn-line:hover {
  background: var(--ink);
  color: var(--paper);
  opacity: 1;
}

.lang-switch-h {
  display: inline-flex;
  gap: 0;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: rgba(244, 237, 224, 0.72);
}

.lang-switch-h button {
  font-family: var(--eng);
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 7px 11px;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--line-soft);
  color: var(--ink-soft);
  cursor: pointer;
}

.lang-switch-h button:first-child { border-left: 0; }
.lang-switch-h button.is-active { background: var(--ink); color: var(--paper); }

.nav-toggle {
  position: fixed;
  top: 18px;
  left: 18px;
  width: 48px;
  height: 48px;
  border: none;
  background: var(--dark);
  cursor: pointer;
  z-index: 90;
  display: none;
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 1px;
  background: #fff;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

.nav-toggle span:nth-child(1) { top: 18px; }
.nav-toggle span:nth-child(2) { top: 24px; }
.nav-toggle span:nth-child(3) { top: 30px; }

body.is-menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.is-menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.is-menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1100px) {
  .brand-fixed { display: none; }
  .contact-fixed {
    top: 14px;
    right: 14px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .contact-fixed .label { display: none; }
  .contact-fixed .tel { font-size: 17px; }
  .contact-fixed .btn-line { padding: 8px 12px; font-size: 10.5px; letter-spacing: 0.22em; }
  .lang-switch-h { display: none; }
  .nav-toggle { display: block; }
}

.header-nav {
  position: absolute;
  top: 32px;
  left: calc(var(--side) + 28px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px 22px;
  font-family: var(--serif);
  font-size: 12.5px;
  letter-spacing: 0.2em;
  z-index: 55;
}

.header-nav a {
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
}

.header-nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
}

@media (max-width: 1100px) {
  .header-nav { display: none; }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 26, 20, 0.97);
  color: var(--paper);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 24px 72px;
  overflow: auto;
}

body.is-menu-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.is-menu-open { overflow: hidden; }

.nav-overlay__inner { width: 100%; max-width: 380px; text-align: center; }

.nav-overlay__brand {
  font-family: var(--serif-deco);
  font-size: 22px;
  letter-spacing: 0.42em;
  margin-bottom: 36px;
  color: #fff;
}

.nav-overlay__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.28em;
}

.nav-overlay__list a { color: #fff; }
.nav-overlay__list a.is-current { color: #d8c89c; }

.nav-overlay__lang {
  display: inline-flex;
  gap: 0;
  margin-top: 40px;
  border: 1px solid rgba(255,255,255,0.35);
}

.nav-overlay__lang button {
  font-family: var(--eng);
  font-size: 12px;
  letter-spacing: 0.2em;
  padding: 9px 15px;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
}

.nav-overlay__lang button:first-child { border-left: 0; }
.nav-overlay__lang button.is-active { background: var(--paper); color: var(--ink); }

.key {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.key::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

.key__cap {
  position: absolute;
  right: 24px;
  bottom: 22px;
  font-family: var(--serif);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  letter-spacing: 0.32em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

@media (max-width: 1100px) {
  .key { height: 82vh; min-height: 520px; }
}

.subkey {
  position: relative;
  height: 56vh;
  min-height: 400px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}

.subkey::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}

.subkey__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding-left: max(24px, var(--side));
  color: #fff;
}

.subkey__en {
  font-family: var(--eng);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.32em;
  margin-bottom: 16px;
}

.subkey__ja {
  font-family: var(--serif-deco);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: 0.18em;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .subkey { height: 48vh; min-height: 340px; padding-bottom: 32px; }
  .subkey__inner { padding-left: 24px; }
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  position: relative;
}

.has-side {
  padding-left: max(0px, calc(var(--side) - 20px));
}

@media (max-width: 1100px) {
  .has-side { padding-left: 0; }
}

.recruit-bnr {
  background: rgba(31, 26, 20, 0.92);
  color: var(--paper);
  text-align: center;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  padding: 18px 24px;
  line-height: 2;
}

#news {
  padding: 112px 0 88px;
}

#news .wrap {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 36px;
  align-items: start;
}

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

.news-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.news-row__date {
  font-family: var(--num);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

.news-row__ttl {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.news-row__body {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.95;
}

.news-more { margin-top: 32px; }

@media (max-width: 700px) {
  #news { padding: 72px 0 56px; }
  #news .wrap { grid-template-columns: 1fr; gap: 20px; }
  .news-row { grid-template-columns: 1fr; gap: 4px; }
}

#lead { padding-top: 16px; }

#lead .set1 {
  position: relative;
  padding: 72px 0 88px;
}

#lead .set1 .wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0 48px;
  position: relative;
  min-height: 700px;
}

#lead .set1 .photo01 {
  grid-column: 1;
  width: 88%;
  margin-top: 36px;
}

#lead .set1 .photo02 {
  position: absolute;
  width: 240px;
  top: 0;
  right: -24px;
  z-index: 2;
}

#lead .set1 .photo03 {
  position: absolute;
  width: 280px;
  bottom: 48px;
  left: 46%;
  z-index: 2;
}

#lead .set1 .copy {
  grid-column: 2;
  align-self: end;
  display: flex;
  gap: 32px;
  padding-bottom: 72px;
}

#lead .set1 .copy .body {
  max-width: 380px;
  font-size: 14px;
  line-height: 2.15;
}

#lead .set1 .copy .body .sub {
  display: block;
  margin-top: 1.1em;
  color: var(--ink-soft);
  font-size: 13.5px;
}

#lead .set2 {
  position: relative;
  padding: 48px 0 100px;
}

#lead .set2 .wrap { position: relative; min-height: 600px; }

#lead .set2 .photo01 { width: 68%; margin-left: auto; }

#lead .set2 .photo02 {
  position: absolute;
  width: 30%;
  bottom: 56px;
  left: 0;
  z-index: 2;
}

#lead .set2 .info {
  position: absolute;
  left: 26%;
  top: 62%;
  max-width: 460px;
  background: rgba(244, 237, 224, 0.94);
  padding: 36px 32px 32px 0;
  z-index: 3;
}

#lead .set2 .info .body {
  font-size: 14px;
  line-height: 2.1;
  margin-bottom: 24px;
}

@media (max-width: 1100px) {
  #lead .set1 .wrap, #lead .set2 .wrap { min-height: 0; }
  #lead .set1 .wrap { grid-template-columns: 1fr; }
  #lead .set1 .photo01 { width: 82%; margin-top: 0; }
  #lead .set1 .photo02 { width: 38%; right: 0; top: 10%; }
  #lead .set1 .photo03 { width: 40%; bottom: -10px; left: auto; right: 6%; }
  #lead .set1 .copy { flex-direction: column; gap: 18px; padding-bottom: 0; }
  #lead .set2 .photo01 { width: 90%; }
  #lead .set2 .photo02 { width: 38%; bottom: -10px; }
  #lead .set2 .info { position: static; padding: 24px 0 0; max-width: none; margin-top: 16px; background: transparent; }
}

.parallax {
  height: 58vh;
  min-height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

@media (max-width: 1100px) {
  .parallax { height: 42vh; min-height: 300px; background-attachment: scroll; }
}

#dinner {
  position: relative;
  padding: 100px 0 80px;
}

#dinner .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 560px;
  position: relative;
}

#dinner .photo01 { width: 78%; }

#dinner .copy {
  display: flex;
  gap: 36px;
}

#dinner .copy .body {
  font-size: 14px;
  line-height: 2.2;
  max-width: 360px;
}

#dinner .copy .actions { margin-top: 26px; }

#dinner .photo02 {
  position: absolute;
  width: 260px;
  right: 4%;
  bottom: 32px;
  z-index: 2;
}

@media (max-width: 1100px) {
  #dinner { padding: 72px 0; }
  #dinner .wrap { grid-template-columns: 1fr; min-height: 0; gap: 28px; }
  #dinner .copy { flex-direction: column; gap: 16px; }
  #dinner .photo01 { width: 100%; }
  #dinner .photo02 { display: none; }
}

#lunch {
  padding: 48px 0 100px;
}

#lunch .wrap {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: center;
}

#lunch .header { display: flex; gap: 28px; margin-bottom: 22px; }

#lunch .body { font-size: 14px; line-height: 2.15; max-width: 380px; }

@media (max-width: 1100px) {
  #lunch .wrap { grid-template-columns: 1fr; gap: 28px; }
  #lunch .header { flex-direction: column; gap: 12px; }
}

#floor { padding: 80px 0 64px; }

#floor .set1 .wrap {
  display: grid;
  grid-template-columns: 1.35fr 0.55fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

#floor .set1 .photo01 { grid-column: 1; grid-row: 1 / span 2; align-self: end; }
#floor .set1 .photo02 { grid-column: 2; grid-row: 1; margin-top: 48px; }
#floor .set1 .photo03 { grid-column: 2 / span 2; grid-row: 2; }

#floor .set2 .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

#floor .set2 .copy { display: flex; gap: 28px; }
#floor .set2 .body { font-size: 14px; line-height: 2.15; max-width: 380px; }

@media (max-width: 1100px) {
  #floor .set1 .wrap { grid-template-columns: 1fr 1fr; }
  #floor .set1 .photo01 { grid-column: 1 / span 2; grid-row: 1; }
  #floor .set1 .photo02 { grid-column: 1; grid-row: 2; margin-top: 0; }
  #floor .set1 .photo03 { grid-column: 2; grid-row: 2; }
  #floor .set2 .wrap { grid-template-columns: 1fr; }
  #floor .set2 .copy { flex-direction: column; }
}

#shopinfo {
  background: var(--paper-warm);
  position: relative;
}

#shopinfo .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: none;
  width: 100%;
  padding: 0;
  margin: 0;
  min-height: 600px;
}

#shopinfo .gmap { background: #ccc; min-height: 440px; }

#shopinfo .gmap iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  display: block;
}

#shopinfo .right {
  padding: 72px 48px 72px max(48px, var(--side));
  max-width: 640px;
}

#shopinfo .shop-tel-block { margin-bottom: 28px; }

#shopinfo .shop-tel-block .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
}

#shopinfo .shop-tel-block .tel {
  display: inline-block;
  font-family: var(--num);
  font-size: 30px;
  color: var(--ink);
  margin-top: 6px;
}

#shopinfo dl.row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.95;
}

#shopinfo dl.row dt {
  font-family: var(--serif-deco);
  letter-spacing: 0.16em;
}

#shopinfo dl.row dd { color: var(--ink-soft); font-family: var(--sans); }

#shopinfo dl.row dd .note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-mute);
}

#shopinfo .shop-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 1100px) {
  #shopinfo .wrap { grid-template-columns: 1fr; min-height: 0; }
  #shopinfo .gmap { order: 2; min-height: 300px; }
  #shopinfo .gmap iframe { min-height: 300px; }
  #shopinfo .right { order: 1; padding: 56px 24px; max-width: none; }
}

.btn {
  display: inline-block;
  font-family: var(--serif-deco);
  font-size: 13px;
  letter-spacing: 0.28em;
  padding: 13px 32px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn:hover {
  background: var(--ink);
  color: var(--paper);
  opacity: 1;
}

.intro-block {
  padding: 96px 0 64px;
  text-align: center;
}

.intro-block .ttl {
  font-family: var(--serif-deco);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: 0.22em;
  line-height: 2;
  margin-bottom: 28px;
}

.intro-block .body {
  max-width: 680px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 2.2;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 48px 0 96px;
}

.menu-card {
  border: 1px solid var(--line);
  padding: 36px 28px 30px;
  text-align: center;
  background: rgba(244, 237, 224, 0.65);
}

.menu-card__name {
  font-family: var(--serif-deco);
  font-size: 19px;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
}

.menu-card__price {
  font-family: var(--num);
  font-size: 34px;
  margin-bottom: 18px;
}

.menu-card__detail {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2;
  text-align: left;
}

.menu-note {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding-bottom: 28px;
  font-size: 12.5px;
  color: var(--ink-mute);
}

.photo-pair {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 96px;
}

.photo-pair__copy {
  display: flex;
  gap: 28px;
}

.photo-pair__copy .body {
  max-width: 400px;
  font-size: 14px;
  line-height: 2.1;
}

@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr; }
  .photo-pair { grid-template-columns: 1fr; }
  .photo-pair__copy { flex-direction: column; }
}

.info-page {
  padding: 56px 0 96px;
}

.info-page dl.row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.info-page dl.row dt {
  font-family: var(--serif-deco);
  letter-spacing: 0.18em;
}

.info-page dl.row dd {
  font-family: var(--sans);
  color: var(--ink-soft);
}

@media (max-width: 700px) {
  .info-page dl.row { grid-template-columns: 100px 1fr; gap: 14px; font-size: 13px; }
}

.site-footer {
  background: var(--dark);
  color: rgba(244, 237, 224, 0.78);
  padding: 76px 0 108px;
  font-family: var(--serif);
}

.site-footer .inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding-left: max(0px, var(--side));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.site-footer .footer-brand {
  font-family: var(--serif-deco);
  font-size: 22px;
  letter-spacing: 0.38em;
  color: var(--paper);
  margin-bottom: 8px;
}

.site-footer .footer-en {
  font-family: var(--eng);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: rgba(244,237,224,0.55);
  margin-bottom: 22px;
}

.site-footer .footer-tel {
  font-family: var(--num);
  font-size: 24px;
  color: var(--paper);
  margin-bottom: 18px;
}

.site-footer .footer-addr {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
}

.site-footer .menu-link {
  columns: 2;
  column-gap: 36px;
  font-size: 13px;
  letter-spacing: 0.18em;
  line-height: 2.5;
}

.site-footer .menu-link li { break-inside: avoid; }

.site-footer .menu-link a { color: rgba(244,237,224,0.85); }

.site-footer .menu-link a:hover { color: #fff; opacity: 1; }

.site-footer .footer-meta {
  width: min(100% - 40px, var(--max));
  margin: 56px auto 0;
  padding-left: max(0px, var(--side));
  font-family: var(--eng);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(244,237,224,0.45);
}

.pagetop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-soft);
  background: rgba(244, 237, 224, 0.9);
  z-index: 70;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.pagetop.is-visible { opacity: 1; pointer-events: auto; }

.pagetop::before {
  content: "";
  display: block;
  margin: 14px auto 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  transform: rotate(-45deg);
}

.ft-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  display: none;
  z-index: 75;
}

.ft-fixed ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ft-fixed li { border-left: 1px solid rgba(255,255,255,0.12); }
.ft-fixed li:first-child { border-left: 0; }

.ft-fixed a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 54px;
  padding: 6px 4px;
  color: var(--paper);
  font-family: var(--serif-deco);
  font-size: 10px;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-decoration: none;
}

.ft-fixed a::before {
  content: "";
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.92;
}

.ft-fixed .ic-tel::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4ede0' stroke-width='1.5'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.ft-fixed .ic-map::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4ede0' stroke-width='1.5'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.ft-fixed .ic-top::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4ede0' stroke-width='1.6'%3E%3Cpath d='M18 15l-6-6-6 6'/%3E%3C/svg%3E");
}

@media (max-width: 1100px) {
  .site-footer .inner { grid-template-columns: 1fr; gap: 36px; padding-left: 0; }
  .site-footer .footer-meta { padding-left: 0; }
  .ft-fixed { display: block; }
  body { padding-bottom: 54px; }
  .pagetop { bottom: 74px; right: 14px; }
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 1.15s var(--ease), transform 1.15s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: var(--paper);
  padding: 8px 12px;
  z-index: 200;
}

.skip-link:focus { left: 14px; top: 14px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.mt-md { margin-top: 28px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .parallax { background-attachment: scroll !important; }
}
