@charset "utf-8";
/* ==========================================================================
   BAR 常夜 — 制作デモ（架空の店舗）
   黒 × 琥珀。灯りはひとつだけ、という店の思想をそのまま画面の明度に置いた。
   ========================================================================== */

/* --------------------------------------------------------------- tokens */
:root {
  --void: #07060a;
  --ink: #0b0910;
  --smoke: #14111a;
  --char: #1d1922;

  --bone: #ece5da;
  --ash: #9b938a;
  --dim: #6f6961;

  --amber: #d18f43;
  --amber-hi: #f4cf94;
  --amber-deep: #7a4712;
  --seal: #b3402f;

  --line: rgba(236, 229, 218, 0.14);
  --line-soft: rgba(236, 229, 218, 0.065);
  --line-amber: rgba(209, 143, 67, 0.34);

  --f-lat: "Cormorant Garamond", "Times New Roman", Times, serif;
  --f-jp: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", YuMincho,
    "Noto Serif JP", serif;

  --gut: clamp(20px, 5vw, 68px);
  --rail: clamp(38px, 5vw, 76px);
  --head: 68px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (max-width: 860px) {
  :root {
    --rail: 0px;
    --head: 58px;
  }
}

/* ---------------------------------------------------------------- reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
}
body {
  margin: 0;
  padding-left: var(--rail);
  background: var(--void);
  color: var(--ash);
  font-family: var(--f-jp);
  font-size: clamp(14px, 1.02vw, 16px);
  line-height: 2.05;
  letter-spacing: 0.05em;
  overflow-x: clip;
  /* 和文の単語途中折れ禁止 */
  word-break: auto-phrase;
  line-break: strict;
  overflow-wrap: normal;
  text-spacing-trim: trim-start;
  -webkit-font-smoothing: antialiased;
}
img,
svg,
canvas {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p,
figure,
dl,
dd,
ul,
ol {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
:focus-visible {
  outline: 1px solid var(--amber-hi);
  outline-offset: 4px;
}
::selection {
  background: var(--amber-deep);
  color: var(--amber-hi);
}
.vh {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------------------------------------------------------- typography */
.lat {
  font-family: var(--f-lat);
  font-weight: 400;
  letter-spacing: 0.24em;
  font-variant-numeric: lining-nums tabular-nums;
}
.h2 {
  font-family: var(--f-jp);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.5vw, 2.7rem);
  line-height: 1.72;
  letter-spacing: 0.12em;
  color: var(--bone);
  font-feature-settings: "palt" 1;
}
.h3 {
  font-family: var(--f-jp);
  font-weight: 500;
  font-size: clamp(1.12rem, 1.9vw, 1.45rem);
  line-height: 1.86;
  letter-spacing: 0.1em;
  color: var(--bone);
  font-feature-settings: "palt" 1;
}
.lead {
  font-size: clamp(0.95rem, 1.15vw, 1.06rem);
  line-height: 2.25;
  color: var(--ash);
  max-width: 34em;
}
.p + .p {
  margin-top: 1.6em;
}
.p {
  max-width: 33em;
  line-height: 2.3;
}
.amber {
  color: var(--amber-hi);
}

.kicker {
  display: flex;
  align-items: baseline;
  gap: 0.9em;
  font-family: var(--f-lat);
  font-size: 0.74rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: clamp(20px, 3vw, 34px);
}
.kicker__n {
  font-style: normal;
  color: var(--amber);
  letter-spacing: 0.18em;
}
.kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-soft);
  transform: translateY(-0.28em);
  max-width: 160px;
}

/* --------------------------------------------------------------- links */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 1.1em;
  padding: 0.95em 1.7em;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-jp);
  font-size: 0.84rem;
  letter-spacing: 0.2em;
  color: var(--bone);
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s var(--ease), color 0.5s var(--ease);
}
.btn__ar {
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: transform 0.5s var(--ease);
}
.btn__ar::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover {
  border-color: var(--line-amber);
  color: var(--amber-hi);
}
.btn:hover .btn__ar {
  transform: translateX(6px);
}

.lnk {
  color: var(--bone);
  border-bottom: 1px solid var(--line-amber);
  padding-bottom: 0.15em;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.lnk:hover {
  color: var(--amber-hi);
  border-color: var(--amber-hi);
}

/* ---------------------------------------------------------------- rail */
.rail {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--rail);
  border-right: 1px solid var(--line-soft);
  z-index: 40;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--head) + 18px) 0 22px;
}
.rail__t {
  writing-mode: vertical-rl;
  font-family: var(--f-lat);
  font-size: 0.66rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--dim);
}
.rail__d {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 14px 2px rgba(209, 143, 67, 0.5);
}
@media (max-width: 860px) {
  .rail {
    display: none;
  }
}

/* -------------------------------------------------------------- header */
.head {
  position: fixed;
  top: 0;
  left: var(--rail);
  right: 0;
  height: var(--head);
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gut);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.head.is-stuck {
  background: rgba(7, 6, 10, 0.82);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line-soft);
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 0.75em;
  color: var(--bone);
}
.brand__ja {
  font-family: var(--f-jp);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.32em;
}
.brand__en {
  font-family: var(--f-lat);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--dim);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 40px);
}
.nav__i {
  display: block;
  text-align: center;
  padding: 6px 2px 4px;
  position: relative;
}
.nav__en {
  display: block;
  font-family: var(--f-lat);
  font-size: 0.76rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ash);
  transition: color 0.4s var(--ease);
}
.nav__ja {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--dim);
  margin-top: 0.15em;
  transition: color 0.4s var(--ease);
}
.nav__i::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transform: translateX(-50%);
  transition: width 0.45s var(--ease);
}
.nav__i:hover .nav__en,
.nav__i:hover .nav__ja {
  color: var(--amber-hi);
}
.nav__i:hover::after {
  width: 100%;
}
.nav__i[aria-current="page"] .nav__en {
  color: var(--amber-hi);
}
.nav__i[aria-current="page"]::after {
  width: 100%;
  background: var(--amber-hi);
}

/* burger */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 80;
}
.burger span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 1px;
  background: var(--bone);
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.burger span:nth-child(1) {
  top: 16px;
}
.burger span:nth-child(2) {
  top: 23px;
}
html.menu-open .burger span:nth-child(1) {
  transform: translateY(3.5px) rotate(20deg);
}
html.menu-open .burger span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-20deg);
}

@media (max-width: 860px) {
  .burger {
    display: block;
  }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: clamp(24px, 6vh, 46px);
    background: rgba(7, 6, 10, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease), visibility 0.5s;
    z-index: 70;
  }
  html.menu-open .nav {
    opacity: 1;
    visibility: visible;
  }
  html.menu-open {
    overflow: hidden;
  }
  .nav__en {
    font-size: 1.35rem;
    letter-spacing: 0.4em;
  }
  .nav__ja {
    font-size: 0.7rem;
    margin-top: 0.5em;
  }
}

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  /* 低速端末・WebGL不可のときはこの静止グラデだけが残る */
  background: radial-gradient(
      118% 82% at 50% 96%,
      #f6d79b 0%,
      #d18f43 12%,
      #8a5320 27%,
      #341a08 48%,
      #0b0910 74%,
      #07060a 100%
    ),
    #07060a;
}
/* 主役は実写。シェーダーは「店の空気」として上に薄く重ねるだけ（写真を隠さない） */
.hero__ph {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 52%;
  transform: scale(1.04);
  will-change: transform;
}
.has-motion .hero__ph {
  animation: kenburns 34s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.115) translate3d(-1.6%, -1.4%, 0);
  }
}
.hero__bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 1.4s var(--ease);
}
.hero__bg canvas.is-on {
  opacity: 0.4;
}
/* 局所スクリム：全面ヴェールではなく、文字が乗る左下だけを沈める */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
      100deg,
      rgba(7, 6, 10, 0.92) 0%,
      rgba(7, 6, 10, 0.62) 30%,
      rgba(7, 6, 10, 0.12) 60%,
      rgba(7, 6, 10, 0) 100%
    ),
    linear-gradient(to top, rgba(7, 6, 10, 0.82) 0%, rgba(7, 6, 10, 0) 46%),
    linear-gradient(
      to bottom,
      rgba(7, 6, 10, 0.62) 0%,
      rgba(7, 6, 10, 0.18) 10%,
      rgba(7, 6, 10, 0) 20%
    );
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* position は static のまま＝ .hero__ja の基準を .hero にする */
.hero__inner {
  padding: 0 var(--gut) clamp(56px, 11vh, 118px);
  width: 100%;
  max-width: 1500px;
}
.hero__eyebrow {
  font-family: var(--f-lat);
  font-size: 0.7rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--amber-hi);
  margin-bottom: clamp(18px, 3vh, 34px);
  text-shadow: 0 1px 3px rgba(7, 6, 10, 0.95), 0 0 22px rgba(7, 6, 10, 0.9);
}
/* ⚠ 主コピーは和文。.ln は overflow:hidden なので、行が折れると2行目が黙って
   隠れる。最長行「今日が静かに終わる。」＝10字×1.04em が、左レール(--rail)と
   両端の --gut を引いた残り幅に必ず入るように上限を置く。
   ⚠ 4.6vw 一本だと 320〜360px で 10字が入らず（324px > 残り 280px）2行に割れた。
     下限側を +0.6rem 底上げした一次式にして、320px でも 10字=266px に収める。
   実測: 1280px で 60.8px＝632px（残り幅 1152px）／390px で 27.5px＝286px（残り 350px）／
         320px で 25.6px＝266px（残り 280px）。
   琥珀のにじみ＋暗い影の二枚重ねはスクリムに頼らないため（原則7）。 */
.hero__t {
  margin: 0;
  font-family: var(--f-jp);
  font-weight: 400;
  font-size: clamp(1.6rem, 4.6vw + 0.6rem, 3.8rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--bone);
  text-shadow: 0 0 90px rgba(244, 207, 148, 0.18), 0 2px 34px rgba(7, 6, 10, 0.88);
}
.hero__ja {
  margin: 0;
  position: absolute;
  right: var(--gut);
  bottom: clamp(56px, 11vh, 118px);
  writing-mode: vertical-rl;
  font-family: var(--f-jp);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  letter-spacing: 0.2em;
  color: var(--amber-hi);
  text-shadow: 0 0 60px rgba(244, 207, 148, 0.45);
  line-height: 1;
}
.hero__lead {
  margin-top: clamp(22px, 4vh, 40px);
  max-width: 22em;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 2.2;
  color: var(--bone);
  opacity: 0.92;
  text-shadow: 0 1px 18px rgba(7, 6, 10, 0.9);
}
.hero__cue {
  position: absolute;
  left: var(--gut);
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 0.9em;
  font-family: var(--f-lat);
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--dim);
  z-index: 3;
}
.hero__cue i {
  display: block;
  width: 46px;
  height: 1px;
  background: linear-gradient(to right, var(--amber), transparent);
  animation: cue 2.6s var(--ease) infinite;
  transform-origin: left;
}
@keyframes cue {
  0%,
  100% {
    transform: scaleX(0.35);
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}
@media (max-width: 860px) {
  /* 縦長では「左が空く」構図が作れない。方向を横から縦へ切り替える */
  .hero::before {
    background: linear-gradient(
        to top,
        rgba(7, 6, 10, 0.95) 0%,
        rgba(7, 6, 10, 0.8) 22%,
        rgba(7, 6, 10, 0.4) 46%,
        rgba(7, 6, 10, 0.08) 64%,
        rgba(7, 6, 10, 0) 78%
      ),
      linear-gradient(
        to bottom,
        rgba(7, 6, 10, 0.78) 0%,
        rgba(7, 6, 10, 0.2) 14%,
        rgba(7, 6, 10, 0) 26%
      );
  }
  .hero__ph {
    object-position: 64% 44%;
  }
  .hero__ja {
    bottom: auto;
    top: calc(var(--head) + 6vh);
    font-size: clamp(2.4rem, 13vw, 4rem);
  }
  .hero__cue {
    display: none;
  }
  .hero__inner {
    padding-bottom: clamp(64px, 12vh, 110px);
  }
}

/* -------------------------------------------------------------- layout */
.sec {
  position: relative;
  padding: clamp(84px, 13vh, 172px) var(--gut);
  overflow-x: clip;
}
.sec--tight {
  padding-top: clamp(56px, 8vh, 110px);
}
.wrap {
  max-width: 1320px;
  margin: 0 auto;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 34px);
}
.rule {
  height: 1px;
  background: var(--line-soft);
  transform-origin: left;
}
.ghost {
  position: absolute;
  font-family: var(--f-lat);
  font-weight: 300;
  font-size: clamp(150px, 25vw, 400px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 229, 218, 0.055);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.ghost--r {
  right: -0.16em;
  top: 6%;
}
.ghost--l {
  left: -0.14em;
  bottom: 4%;
}
.sec > * {
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------- 01 prologue（TOP） */
.pro {
  align-items: center;
}
.pro__txt {
  grid-column: 1 / span 7;
}
.pro__art {
  grid-column: 8 / span 5;
}
.pro__art .ph {
  aspect-ratio: 4 / 5;
}
@media (max-width: 860px) {
  .pro__txt,
  .pro__art {
    grid-column: 1 / -1;
  }
  .pro__art {
    margin-top: 46px;
  }
}

/* ========================================================= 写真の枠 */
.ph {
  position: relative;
  overflow: hidden;
  background: #08070c;
  isolation: isolate;
}
.ph > img {
  position: absolute;
  left: 0;
  top: -9%;
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: var(--po, 50% 50%);
  will-change: transform;
}
/* 暗い写真を紙に沈める内側の影。全面ヴェールではない（縁だけ） */
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 clamp(40px, 7vw, 110px) rgba(7, 6, 10, 0.62);
  z-index: 2;
}
.ph--line {
  border: 1px solid var(--line-soft);
}
.figcap {
  margin-top: 1.1em;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  line-height: 1.9;
  color: var(--dim);
  display: flex;
  align-items: baseline;
  gap: 0.9em;
}
.figcap::before {
  content: "";
  width: clamp(20px, 3vw, 44px);
  height: 1px;
  background: var(--line-amber);
  flex: 0 0 auto;
  transform: translateY(-0.34em);
}

/* 帯（引きのカット）。セクションの間で息を吸わせる */
.band {
  margin: clamp(38px, 6vw, 88px) 0 0;
}
.ph--21 {
  aspect-ratio: 21 / 9;
}
.ph--169 {
  aspect-ratio: 16 / 9;
}
.ph--32 {
  aspect-ratio: 3 / 2;
}
.ph--45 {
  aspect-ratio: 4 / 5;
}
@media (max-width: 700px) {
  .ph--21 {
    aspect-ratio: 16 / 9;
  }
  .ph--169,
  .ph--32 {
    aspect-ratio: 4 / 3;
  }
}

/* --------------------------------------------------- 02 craft（TOP） */
.craft {
  margin-top: clamp(40px, 6vw, 78px);
}
.craft__i {
  grid-column: span 4;
  border-top: 1px solid var(--line);
  padding-top: clamp(22px, 2.6vw, 34px);
}
/* グリッドを意図的に破る：真ん中だけ落とす、3枚目はさらに落とす。
   ⚠ transform で落とすと GSAP の reveal（inline transform）に上書きされて消える。margin で落とす。 */
.craft__i:nth-child(2) {
  margin-top: clamp(24px, 5vw, 76px);
}
.craft__i:nth-child(3) {
  margin-top: clamp(48px, 10vw, 152px);
}
.craft__n {
  font-family: var(--f-lat);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: var(--amber);
  display: block;
  margin-bottom: 1.4em;
}
.craft__t {
  margin-bottom: 1.1em;
}
.craft__p {
  font-size: 0.9rem;
  line-height: 2.2;
  max-width: 24em;
}
@media (max-width: 860px) {
  .craft__i {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }
  .craft__i:nth-child(2),
  .craft__i:nth-child(3) {
    margin-top: 0;
  }
}

/* --------------------------------------------- 03 drinks 抜粋（TOP） */
.sip {
  border-top: 1px solid var(--line-soft);
  padding: clamp(22px, 2.6vw, 32px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.6em 1.4em;
  transition: background 0.5s var(--ease);
}
.sip:last-of-type {
  border-bottom: 1px solid var(--line-soft);
}
.sip__n {
  display: flex;
  align-items: baseline;
  gap: 0.9em;
  flex-wrap: wrap;
}
.sip__en {
  font-family: var(--f-lat);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  letter-spacing: 0.14em;
  color: var(--bone);
  transition: color 0.5s var(--ease);
}
.sip__ja {
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  color: var(--amber);
}
.sip__p {
  font-family: var(--f-lat);
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  color: var(--ash);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.sip__d {
  grid-column: 1 / -1;
  font-size: 0.84rem;
  color: var(--dim);
  line-height: 1.95;
  max-width: 32em;
}
.sip:hover .sip__en {
  color: var(--amber-hi);
}

/* -------------------------------------------- 04 about 抜粋（TOP） */
.about-x__txt {
  grid-column: 7 / span 6;
}
.about-x__q {
  grid-column: 1 / span 5;
  position: relative;
}
.about-x__q--ph .ph {
  aspect-ratio: 4 / 5;
}
.tate {
  writing-mode: vertical-rl;
  font-family: var(--f-jp);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 2.1;
  letter-spacing: 0.24em;
  color: var(--bone);
  max-height: 15em;
  border-right: 1px solid var(--line-amber);
  padding-right: 1.6em;
}
/* 写真の上に置くときは罫を外し、影で二重に守る（原則7） */
.about-x__q--ph .tate {
  position: absolute;
  z-index: 3;
  right: clamp(16px, 2.4vw, 34px);
  top: clamp(20px, 3vw, 42px);
  max-height: calc(100% - clamp(40px, 6vw, 84px));
  border-right: 0;
  padding-right: 0;
  text-shadow: 0 1px 20px rgba(7, 6, 10, 0.92), 0 0 64px rgba(7, 6, 10, 0.8);
}
/* 方向を持つ局所スクリム。被写体側は素のまま鮮明に残す（原則5） */
.ph--sc-r::before,
.ph--sc-l::before,
.ph--sc-b::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ph--sc-r::before {
  background: linear-gradient(
    255deg,
    rgba(7, 6, 10, 0.93) 0%,
    rgba(7, 6, 10, 0.52) 24%,
    rgba(7, 6, 10, 0) 58%
  );
}
.ph--sc-l::before {
  background: linear-gradient(
    100deg,
    rgba(7, 6, 10, 0.9) 0%,
    rgba(7, 6, 10, 0.46) 26%,
    rgba(7, 6, 10, 0) 60%
  );
}
.ph--sc-b::before {
  background: linear-gradient(
    to top,
    rgba(7, 6, 10, 0.92) 0%,
    rgba(7, 6, 10, 0.3) 34%,
    rgba(7, 6, 10, 0) 64%
  );
}
@media (max-width: 860px) {
  .about-x__txt,
  .about-x__q {
    grid-column: 1 / -1;
  }
  .about-x__q {
    margin-bottom: 40px;
  }
  .tate {
    max-height: 13em;
  }
  .about-x__q--ph .tate {
    max-height: calc(100% - 60px);
  }
}

/* ------------------------------------------- 05 店主の言葉（TOP） */
.words {
  background: linear-gradient(180deg, #07060a, #100c11 46%, #07060a);
  text-align: center;
}
.words__q {
  font-family: var(--f-jp);
  font-weight: 500;
  font-size: clamp(1.28rem, 3vw, 2.2rem);
  line-height: 2.05;
  letter-spacing: 0.13em;
  color: var(--bone);
  font-feature-settings: "palt" 1;
}
.words__by {
  margin-top: clamp(34px, 5vw, 58px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3em;
}
.seal {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--seal);
  border-radius: 5px;
  color: var(--seal);
  font-family: var(--f-jp);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0;
  transform: rotate(-4deg);
  flex: 0 0 auto;
}
.words__name {
  text-align: left;
}
.words__name b {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--bone);
}
.words__name i {
  display: block;
  font-style: normal;
  font-family: var(--f-lat);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 0.4em;
}

/* ---------------------------------------------- 06 access 抜粋（TOP） */
.info {
  grid-column: span 6;
}
.info__l {
  display: grid;
  grid-template-columns: 6.2em minmax(0, 1fr);
  gap: 0.5em 1.6em;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.5em;
  margin-top: 1.5em;
}
.info__l dt {
  font-family: var(--f-lat);
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--dim);
  padding-top: 0.5em;
}
.info__l dd {
  font-size: 0.92rem;
  color: var(--bone);
  line-height: 2;
}
.info__l dd small {
  display: block;
  font-size: 0.78rem;
  color: var(--dim);
  letter-spacing: 0.08em;
}
@media (max-width: 860px) {
  .info {
    grid-column: 1 / -1;
  }
  .info + .info {
    margin-top: 44px;
  }
}

/* -------------------------------------------------------------- footer */
.foot {
  border-top: 1px solid var(--line-soft);
  padding: clamp(52px, 7vw, 88px) var(--gut) 30px;
  background: #050409;
}
.foot__top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.foot__brand .brand__ja {
  font-size: 1.5rem;
}
.foot__tag {
  margin-top: 1.1em;
  font-size: 0.8rem;
  color: var(--dim);
  letter-spacing: 0.14em;
}
.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em 2.4em;
}
.foot__nav a {
  font-family: var(--f-lat);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ash);
  transition: color 0.4s var(--ease);
}
.foot__nav a:hover {
  color: var(--amber-hi);
}
.foot__bot {
  margin-top: clamp(38px, 6vw, 66px);
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  align-items: center;
}
.foot__c {
  font-family: var(--f-lat);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  color: var(--dim);
}
.foot__demo {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: #5a544d;
  line-height: 1.8;
}

/* ==========================================================  下層共通 */
.phero {
  position: relative;
  padding: calc(var(--head) + clamp(78px, 15vh, 168px)) var(--gut)
    clamp(46px, 7vw, 92px);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  min-height: clamp(440px, 72vh, 720px);
  display: flex;
  align-items: flex-end;
}
.phero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--amber) 0%,
    rgba(209, 143, 67, 0) 42%
  );
}
.phero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #07060a;
  pointer-events: none;
}
.phero__ph {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--po, 50% 50%);
  transform: scale(1.03);
  will-change: transform;
}
.has-motion .phero__ph {
  animation: kenburns 40s ease-in-out infinite alternate;
}
/* 文字の乗る左下だけを沈める。右〜中央の被写体は鮮明なまま */
.phero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      102deg,
      rgba(7, 6, 10, 0.93) 0%,
      rgba(7, 6, 10, 0.68) 30%,
      rgba(7, 6, 10, 0.16) 62%,
      rgba(7, 6, 10, 0) 100%
    ),
    linear-gradient(
      to top,
      rgba(7, 6, 10, 0.95) 0%,
      rgba(7, 6, 10, 0.58) 24%,
      rgba(7, 6, 10, 0) 60%
    ),
    /* ヘッダーの下だけ。ロゴとナビを写真の明部から守る */
      linear-gradient(
        to bottom,
        rgba(7, 6, 10, 0.72) 0%,
        rgba(7, 6, 10, 0.22) 12%,
        rgba(7, 6, 10, 0) 22%
      ),
    radial-gradient(
      92% 130% at 84% -20%,
      rgba(209, 143, 67, 0.16) 0%,
      rgba(122, 71, 18, 0.06) 34%,
      rgba(7, 6, 10, 0) 66%
    );
}
.phero__in {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  container-type: inline-size;
}
.phero__en {
  text-shadow: 0 2px 44px rgba(7, 6, 10, 0.72);
}
.phero__lead {
  color: var(--bone);
  opacity: 0.9;
  text-shadow: 0 1px 18px rgba(7, 6, 10, 0.8);
}
.phero__en {
  display: block;
  font-family: var(--f-lat);
  font-weight: 300;
  letter-spacing: 0.13em;
  color: var(--bone);
  white-space: nowrap;
  line-height: 0.94;
  font-size: min(9rem, calc(80cqw / (var(--ch) * 0.70)));
}
.phero__ja {
  display: block;
  margin-top: 1.1em;
  font-size: 0.86rem;
  letter-spacing: 0.42em;
  color: var(--amber);
}
.phero__lead {
  margin-top: clamp(26px, 4vw, 44px);
  max-width: 30em;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 2.2;
}

/* ====================================================== drinks ページ */
.pour {
  position: relative;
  border-top: 1px solid var(--line-soft);
  padding: clamp(46px, 7vw, 96px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(180px, 30%, 380px);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}
.pour:nth-child(even) {
  grid-template-columns: clamp(180px, 30%, 380px) minmax(0, 1fr);
}
.pour:nth-child(even) .pour__art {
  order: -1;
}
.pour:nth-child(even) .pour__body {
  padding-left: clamp(0px, 4vw, 64px);
}
.pour__body {
  min-width: 0;
  container-type: inline-size;
}
.pour__en {
  display: block;
  font-family: var(--f-lat);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--bone);
  white-space: nowrap;
  line-height: 1;
  font-size: min(6.8rem, calc(72cqw / (var(--ch) * 0.62)));
  transition: color 0.6s var(--ease);
}
.pour:hover .pour__en {
  color: var(--amber-hi);
}
.pour__ja {
  display: inline-block;
  margin-top: 0.9em;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: 0.4em;
  color: var(--amber);
  border-left: 1px solid var(--line-amber);
  padding-left: 1em;
}
.pour__d {
  margin-top: 1.7em;
  font-size: 0.9rem;
  line-height: 2.2;
  max-width: 27em;
}
.pour__spec {
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em 2.4em;
  align-items: baseline;
}
.pour__spec div {
  display: flex;
  align-items: baseline;
  gap: 0.7em;
}
.pour__spec dt {
  font-family: var(--f-lat);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
}
.pour__spec dd {
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}
.pour__art .ph {
  aspect-ratio: 4 / 5;
}
.pour__art .ph > img {
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.pour:hover .ph > img {
  transform: scale(1.045);
  filter: brightness(1.06);
}
@media (max-width: 700px) {
  .pour,
  .pour:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(18px, 5vw, 30px);
  }
  /* 器を先に見せて、名前で受ける */
  .pour__art,
  .pour:nth-child(even) .pour__art {
    order: -1;
  }
  .pour__art .ph {
    aspect-ratio: 5 / 4;
  }
  .pour:nth-child(even) .pour__body {
    padding-left: 0;
  }
}

/* 品書きの組版（リーダー罫） */
.wl {
  margin-top: clamp(26px, 3vw, 40px);
}
.wl__g + .wl__g {
  margin-top: clamp(40px, 5vw, 66px);
}
.wl__gt {
  display: flex;
  align-items: baseline;
  gap: 1em;
  margin-bottom: 1.4em;
}
.wl__gt b {
  font-family: var(--f-lat);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--amber);
}
.wl__gt i {
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  color: var(--dim);
}
.wl__row {
  display: grid;
  grid-template-columns: max-content minmax(14px, 1fr) max-content;
  align-items: baseline;
  gap: 0 0.8em;
  padding: 0.85em 0;
  border-bottom: 1px solid var(--line-soft);
}
.wl__n {
  min-width: 0;
}
.wl__n b {
  display: block;
  font-family: var(--f-lat);
  font-weight: 400;
  font-size: 1.02rem;
  letter-spacing: 0.2em;
  color: var(--bone);
  white-space: nowrap;
}
.wl__n i {
  display: block;
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-top: 0.35em;
  line-height: 1.8;
}
.wl__dots {
  border-bottom: 1px dotted rgba(236, 229, 218, 0.22);
  transform: translateY(-0.32em);
  min-width: 14px;
}
.wl__p {
  font-family: var(--f-lat);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--ash);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.note {
  margin-top: 2em;
  font-size: 0.76rem;
  color: var(--dim);
  line-height: 2;
  letter-spacing: 0.06em;
}

/* 小さな表 */
.tbl {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.6em;
}
.tbl th,
.tbl td {
  text-align: left;
  padding: 0.95em 0.8em 0.95em 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  vertical-align: top;
}
.tbl th {
  font-weight: 400;
  color: var(--dim);
  white-space: nowrap;
  width: 9.5em;
}
.tbl td {
  color: var(--bone);
  line-height: 2;
}

/* ======================================================= about ページ */
.plan {
  grid-column: 1 / span 7;
}
.plan__side {
  grid-column: 9 / span 4;
}
.plan svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.plan .pl {
  fill: none;
  stroke: rgba(236, 229, 218, 0.26);
  stroke-width: 1;
  stroke-linecap: round;
}
.plan .pl-soft {
  fill: none;
  stroke: rgba(236, 229, 218, 0.12);
  stroke-width: 1;
}
.plan .pl-a {
  fill: none;
  stroke: var(--amber);
  stroke-width: 1;
}
.plan .pl-lb {
  fill: var(--dim);
  font-family: var(--f-lat);
  font-size: 9px;
  letter-spacing: 2.6px;
}
.seat {
  cursor: pointer;
}
.seat circle {
  fill: rgba(7, 6, 10, 0.9);
  stroke: rgba(236, 229, 218, 0.3);
  stroke-width: 1;
  transition: stroke 0.4s var(--ease), fill 0.4s var(--ease);
}
.seat text {
  fill: var(--ash);
  font-family: var(--f-lat);
  font-size: 12px;
  text-anchor: middle;
  dominant-baseline: central;
  transition: fill 0.4s var(--ease);
  pointer-events: none;
}
.seat:hover circle,
.seat:focus-visible circle,
.seat.is-on circle {
  stroke: var(--amber-hi);
  fill: rgba(122, 71, 18, 0.55);
}
.seat:hover text,
.seat:focus-visible text,
.seat.is-on text {
  fill: var(--amber-hi);
}
.plan__note {
  border-top: 1px solid var(--line);
  padding-top: 1.4em;
  margin-top: 1.6em;
  min-height: 7.5em;
}
.plan__note b {
  display: block;
  font-family: var(--f-lat);
  font-size: 0.68rem;
  letter-spacing: 0.36em;
  color: var(--amber);
  margin-bottom: 0.9em;
}
.plan__note p {
  font-size: 0.9rem;
  line-height: 2.1;
  color: var(--bone);
}
.spec {
  margin-top: clamp(24px, 3vw, 38px);
  border-top: 1px solid var(--line-soft);
}
.spec li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.4em;
  padding: 0.85em 0;
  border-bottom: 1px solid var(--line-soft);
}
.spec dt,
.spec b {
  font-family: var(--f-lat);
  font-weight: 400;
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}
.spec i {
  font-style: normal;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  color: var(--bone);
  text-align: right;
}
@media (max-width: 900px) {
  .plan,
  .plan__side {
    grid-column: 1 / -1;
  }
  .plan__side {
    margin-top: 30px;
  }
}
/* 図面は縮めると注記が読めない。ページを横に流さず、図の中だけ横に送る */
.plan__hint,
.map__hint {
  display: none;
  margin-top: 0.9em;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--dim);
}
/* 図面・地図は縮めると注記が読めない。ページを横に流さず、図の中だけ横に送る */
@media (max-width: 760px) {
  .plan__scroll,
  .map__scroll {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 6px;
  }
  .plan__scroll svg {
    min-width: 620px;
  }
  .map__scroll svg {
    min-width: 700px;
  }
  .plan__hint,
  .map__hint {
    display: block;
  }
}

/* 年表 */
.tl {
  margin-top: clamp(30px, 4vw, 50px);
  border-left: 1px solid var(--line);
  padding-left: clamp(22px, 3vw, 44px);
}
.tl__i {
  position: relative;
  padding: 0 0 clamp(30px, 4vw, 48px);
}
.tl__i:last-child {
  padding-bottom: 0;
}
.tl__i::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(22px, 3vw, 44px) - 3px);
  top: 0.75em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}
.tl__y {
  font-family: var(--f-lat);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--amber);
  display: block;
  margin-bottom: 0.6em;
}
.tl__t {
  display: block;
  font-size: 0.98rem;
  letter-spacing: 0.1em;
  color: var(--bone);
  margin-bottom: 0.5em;
}
.tl__p {
  font-size: 0.86rem;
  line-height: 2.1;
  max-width: 30em;
}

/* ====================================================== access ページ */
.dial {
  grid-column: 1 / span 5;
  display: flex;
  justify-content: center;
}
.dial svg {
  width: min(360px, 92%);
  height: auto;
  overflow: visible;
}
.dial .dl {
  stroke: rgba(236, 229, 218, 0.18);
  stroke-width: 1;
  fill: none;
}
.dial .dl-h {
  stroke: rgba(236, 229, 218, 0.34);
  stroke-width: 1;
}
.dial .dl-arc {
  stroke: var(--amber);
  stroke-width: 7;
  fill: none;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(209, 143, 67, 0.55));
}
.dial .dl-lo {
  stroke: var(--amber-hi);
  stroke-width: 1;
}
.dial .dl-t {
  fill: var(--dim);
  font-family: var(--f-lat);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-anchor: middle;
  dominant-baseline: central;
}
.dial .dl-c {
  fill: var(--bone);
  font-family: var(--f-lat);
  font-size: 26px;
  letter-spacing: 2px;
  text-anchor: middle;
}
.dial .dl-s {
  fill: var(--dim);
  font-family: var(--f-lat);
  font-size: 9px;
  letter-spacing: 3.4px;
  text-anchor: middle;
}
.hours {
  grid-column: 7 / span 6;
}
@media (max-width: 900px) {
  .dial,
  .hours {
    grid-column: 1 / -1;
  }
  .hours {
    margin-top: 44px;
  }
}

.map {
  margin-top: clamp(26px, 3vw, 40px);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #0a080e, #07060a);
  padding: clamp(14px, 2vw, 26px);
}
.map svg {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
}
.map .mp {
  fill: none;
  stroke: rgba(236, 229, 218, 0.16);
  stroke-width: 1;
}
/* 道は「面」で、建物は「線」で。重なる交差点が濃くならないよう道は1本のpathで塗る */
.map .mp-road {
  fill: rgba(236, 229, 218, 0.055);
  stroke: none;
}
.map .mp-b {
  fill: rgba(236, 229, 218, 0.022);
  stroke: rgba(236, 229, 218, 0.15);
  stroke-width: 1;
}
.map .mp-b-a {
  fill: rgba(209, 143, 67, 0.09);
  stroke: rgba(209, 143, 67, 0.42);
  stroke-width: 1;
}
.map .mp-d {
  fill: none;
  stroke: var(--amber);
  stroke-width: 1.2;
  stroke-dasharray: 5 6;
}
.map .mp-t {
  fill: var(--dim);
  font-family: var(--f-jp);
  font-size: 11px;
  letter-spacing: 2px;
}
.map .mp-t-a {
  fill: var(--amber-hi);
  font-family: var(--f-jp);
  font-size: 12px;
  letter-spacing: 3px;
}
.map .mp-t-l {
  fill: var(--dim);
  font-family: var(--f-lat);
  font-size: 9px;
  letter-spacing: 2.6px;
}
.pin__p {
  fill: none;
  stroke: var(--amber);
  stroke-width: 0.8;
  transform-origin: center;
  transform-box: fill-box;
  animation: ping 3.4s ease-out infinite;
}
@keyframes ping {
  0% {
    transform: scale(0.4);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.faq {
  margin-top: clamp(26px, 3vw, 40px);
  max-width: 46em;
}
.faq__i {
  border-bottom: 1px solid var(--line-soft);
}
.faq__i summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35em 2.4em 1.35em 0;
  position: relative;
  font-size: 0.94rem;
  letter-spacing: 0.1em;
  color: var(--bone);
  line-height: 1.9;
}
.faq__i summary::-webkit-details-marker {
  display: none;
}
.faq__i summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 2.05em;
  width: 11px;
  height: 1px;
  background: var(--amber);
  transition: transform 0.4s var(--ease);
}
.faq__i summary::before {
  content: "";
  position: absolute;
  right: 9px;
  top: 1.55em;
  width: 1px;
  height: 11px;
  background: var(--amber);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.faq__i[open] summary::before {
  opacity: 0;
  transform: scaleY(0);
}
.faq__a {
  padding: 0 0 1.7em;
  font-size: 0.87rem;
  line-height: 2.15;
  max-width: 40em;
}

/* ==================================================== reveal（GSAP用） */
.ln {
  display: block;
  overflow: hidden;
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
}
.has-motion .ln__i {
  display: block;
  transform: translateY(112%);
}
.ln__i {
  display: block;
}
.has-motion .rv {
  opacity: 0;
  transform: translateY(26px);
}
.has-motion .rule {
  transform: scaleX(0);
}
/* 写真は下から布を引くように現れる（マスクreveal） */
.has-motion [data-mask] {
  clip-path: inset(0 0 100% 0);
}

/* ============================================= index 05 カウンター */
.cnt__fig {
  grid-column: 1 / span 7;
  position: relative;
}
.cnt__txt {
  grid-column: 9 / span 4;
}
@media (max-width: 900px) {
  .cnt__fig,
  .cnt__txt {
    grid-column: 1 / -1;
  }
  .cnt__txt {
    margin-top: 40px;
  }
}

/* ================================================ prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__bg canvas {
    opacity: 1;
  }
  .ln__i,
  .rv {
    opacity: 1 !important;
    transform: none !important;
  }
  .rule {
    transform: none !important;
  }
  .craft__i:nth-child(2),
  .craft__i:nth-child(3) {
    margin-top: 0;
  }
  [data-mask] {
    clip-path: none !important;
  }
  .hero__ph,
  .phero__ph {
    animation: none !important;
    transform: scale(1.02) !important;
  }
  .ph > img {
    animation: none !important;
    transform: none !important;
    top: 0;
    height: 100%;
  }
}
