/*
Theme Name: Japonisant Rebuild
Theme URI: https://japonisant.com/
Author: Bacchus Global Co., Ltd.
Description: A contemporary Japonisme theme for Salon du Japonisant.
Version: 2.1.7
Text Domain: japonisant-rebuild
*/

:root {
  --night: #090b0a;
  --night-soft: #121512;
  --night-green: #192019;
  --bone: #e7dfd0;
  --bone-bright: #f7f1e6;
  --bone-deep: #cfc5b5;
  --ash: #999186;
  --lacquer: #9e211a;
  --lacquer-dark: #6f1713;
  --copper: #b36c3e;
  --moss: #64705d;
  --line-dark: rgba(10, 12, 10, 0.18);
  --line-light: rgba(247, 241, 230, 0.18);
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "DM Sans", "Avenir Next", sans-serif;
  --content: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--bone);
  background: var(--night);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  content: "";
  background-image:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(255, 255, 255, 0.25) 3px),
    repeating-linear-gradient(90deg, transparent 0 3px, rgba(0, 0, 0, 0.3) 4px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--bone-bright);
  background: var(--lacquer);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
}

h1 em,
h2 em {
  font-weight: 400;
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--bone-bright);
  background: var(--lacquer);
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  flex: 0 0 auto;
  content: "";
  background: currentColor;
}

.eyebrow span {
  color: var(--bone-bright);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 0 100%);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button--solid {
  color: var(--bone-bright);
  background: var(--lacquer);
}

/* Keep keyboard focus inside the clipped button shape. */
.button:focus-visible {
  outline: 3px solid var(--bone-bright);
  outline-offset: -5px;
}

.button--solid:hover,
.button--solid:focus-visible {
  background: var(--lacquer-dark);
}

.button--dark {
  border-color: rgba(247, 241, 230, 0.4);
  color: var(--bone-bright);
  background: transparent;
}

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--bone-bright);
  background: var(--night);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--bone-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "+";
  font-size: 1rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: rotate(90deg);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  border-color: var(--line-light);
  background: rgba(9, 11, 10, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.brand {
  width: 132px;
  display: block;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
}

.site-nav a,
.header-reserve {
  color: var(--bone-bright);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a.is-current {
  color: var(--bone-bright);
}

.header-reserve {
  justify-self: end;
  padding: 11px 0;
  border-bottom: 1px solid var(--copper);
}

.menu-toggle {
  display: none;
}

.mobile-navigation[hidden] {
  display: none !important;
}

/* Hero */

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image {
  to {
    transform: scale(1);
  }
}

/* Shared section structure */
.section-intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: start;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 7px;
  color: var(--ash);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-index span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--lacquer);
  font-size: 0.58rem;
}

.section-intro__copy {
  max-width: 940px;
}

.section-intro h2 {
  color: var(--bone-bright);
  font-size: clamp(3.2rem, 7.3vw, 7.5rem);
  letter-spacing: -0.012em;
}

.section-intro h2 em {
  color: var(--copper);
  font-style: italic;
}

.lead {
  max-width: 700px;
  margin: 34px 0 0;
  color: rgba(231, 223, 208, 0.65);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.8;
}

/* Ritual */

.ritual-list {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.ritual-list li {
  display: grid;
  grid-template-columns: 48px 120px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-light);
}

.ritual-list span {
  color: var(--lacquer);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.ritual-list strong {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
}

.ritual-list small {
  color: rgba(231, 223, 208, 0.55);
}

/* Visit */

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(1) contrast(1.08);
}

/* Footer */
.site-footer {
  position: relative;
  padding: 90px 0 28px;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  background: var(--night);
}

.site-footer::before {
  position: absolute;
  top: -190px;
  left: 6vw;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(158, 33, 26, 0.22);
  border-radius: 50%;
  content: "";
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: clamp(40px, 8vw, 130px);
}

.footer-brand img {
  width: 180px;
  height: auto;
}

.footer-brand > p {
  max-width: 390px;
  margin: 28px 0 0;
  color: rgba(231, 223, 208, 0.58);
}

.footer-nav,
.footer-visit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-nav > p,
.footer-visit > p {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-visit a {
  color: var(--bone);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-visit a:hover {
  color: var(--copper);
}

.footer-visit address {
  margin-bottom: 8px;
  color: rgba(231, 223, 208, 0.58);
  font-size: 0.82rem;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 80px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(231, 223, 208, 0.42);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-related {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.footer-related > span {
  color: var(--copper);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-related a {
  font-size: 0.82rem;
  text-decoration: none;
  text-underline-offset: 5px;
}

.footer-related a:hover,
.footer-related a:focus-visible {
  color: var(--bone-bright);
  text-decoration: underline;
}

.related-venues {
  margin-top: clamp(72px, 10vw, 140px);
  padding-top: clamp(40px, 6vw, 80px);
  border-top: 1px solid var(--line-light);
}

.related-venues__heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.related-venues__heading > p:last-child {
  max-width: 620px;
  margin: 24px 0 36px;
  color: var(--bone-deep);
}

.related-venues__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 24px;
}

.related-venue {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(24px, 3.5vw, 48px);
  border: 1px solid var(--line-light);
  border-top: 2px solid var(--copper);
  background: linear-gradient(145deg, var(--night-green), var(--night-soft));
  scroll-margin-top: 24px;
}

.related-venue h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  overflow-wrap: break-word;
}

.related-venue h3 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--copper);
}

.related-venue h3 a:hover,
.related-venue h3 a:focus-visible {
  color: var(--copper);
  border-bottom-color: currentColor;
}

.related-venue > p:not(.eyebrow) {
  margin: 0 0 20px;
  color: var(--bone-deep);
}

.related-venue .related-venue__identity {
  font-size: 0.82rem;
}

.related-venue .related-venue__identity--categories {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-wrap: balance;
}

.related-venue .related-venue__location {
  font-size: 0.86rem;
}

.related-venue__links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 28px;
  margin-top: auto;
  padding-top: 20px;
}

.related-venue__links .text-link {
  font-size: 0.65rem;
}

.related-venue__links .text-link--official-site::after {
  content: "↗";
  font-size: 0.85rem;
}

.related-venue__links .text-link--official-site:hover::after {
  transform: translate(2px, -2px);
}

@media (max-width: 640px) {
  .related-venues__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-related > span {
    flex-basis: 100%;
  }
}

/* Interior pages */
.page-masthead {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  padding-top: var(--header-height);
  color: var(--bone);
  background: var(--night);
}

.page-masthead__copy {
  align-self: center;
  padding: clamp(80px, 9vw, 150px) var(--gutter);
}

.page-masthead h1 {
  max-width: 760px;
  color: var(--bone-bright);
  font-size: clamp(4rem, 8vw, 8rem);
  letter-spacing: -0.015em;
}

.page-intro {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(231, 223, 208, 0.64);
  font-size: 1.05rem;
}

.page-masthead__image {
  min-height: 560px;
  overflow: hidden;
}

.page-masthead__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-menu-nav {
  position: sticky;
  z-index: 10;
  top: var(--header-height);
  display: flex;
  overflow-x: auto;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(9, 11, 10, 0.94);
  scrollbar-width: none;
}

.page-menu-nav::-webkit-scrollbar {
  display: none;
}

.page-menu-nav a {
  min-width: max-content;
  padding: 18px 24px;
  border-right: 1px solid var(--line-light);
  color: rgba(231, 223, 208, 0.62);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.page-menu-nav a.is-current {
  color: var(--bone-bright);
  background: var(--lacquer);
}

.page-content-section {
  padding: clamp(90px, 11vw, 160px) 0;
  color: var(--bone);
  background: var(--night);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 60px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.cocktail-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
}

.cocktail-jump-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--bone-bright);
  text-underline-offset: 5px;
}

.menu-group,
.omakase-details {
  scroll-margin-top: 120px;
}

.menu-group__title {
  margin: 56px 0 20px;
  color: var(--bone-bright);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.menu-group__title + .menu-grid {
  margin-top: 0;
}

.omakase-details {
  max-width: 860px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--line-light);
}

.omakase-details h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.omakase-details ol {
  padding-left: 1.4em;
  color: var(--bone-deep);
}

.omakase-details li {
  margin: 18px 0;
  padding-left: 0.4em;
  line-height: 1.7;
}

.omakase-details strong {
  color: var(--bone-bright);
}

.press-record__historical {
  max-width: 65ch;
  margin-top: 24px;
  color: var(--ash);
  font-size: 0.85rem;
}

.menu-item {
  min-height: 180px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 18px;
  align-content: start;
  padding: 28px;
  background: var(--night-soft);
}

.menu-item__number {
  padding-top: 6px;
  color: var(--lacquer);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.menu-item h3 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.08;
}

.menu-item p {
  margin: 0;
  color: rgba(231, 223, 208, 0.66);
  font-size: 0.82rem;
}

.menu-price {
  color: var(--lacquer) !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.tax-note {
  margin: 24px 0 0;
  color: rgba(231, 223, 208, 0.5);
  font-size: 0.7rem;
}

.concept-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(54px, 10vw, 150px);
  align-items: start;
}

.concept-lead {
  position: sticky;
  top: calc(var(--header-height) + 90px);
}

.concept-lead h2 {
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  letter-spacing: -0.012em;
}

.concept-copy p {
  margin: 0 0 1.65em;
  color: rgba(231, 223, 208, 0.75);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.9;
}

.parent-company-logo {
  display: block;
  width: min(100%, 310px);
  margin: 12px 0 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.parent-company-logo img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.88;
  transition: opacity 180ms ease;
}

.parent-company-logo:hover img,
.parent-company-logo:focus-visible img {
  opacity: 1;
}

.parent-company-logo:focus-visible {
  outline: 2px solid var(--bone-bright);
  outline-offset: 5px;
}

.concept-values {
  display: grid;
  gap: 1px;
  margin-top: 56px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.concept-values div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--night-soft);
}

.concept-values span {
  color: var(--lacquer);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.concept-values strong {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
}

.drinks-overview-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(70px, 9vw, 130px);
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.drinks-overview-card {
  min-width: 0;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  color: var(--bone);
  background: var(--night-soft);
  text-decoration: none;
}

.drinks-overview-card--wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.drinks-overview-card figure {
  overflow: hidden;
  background: var(--night-soft);
}

.drinks-overview-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: filter 260ms ease, transform 680ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.drinks-overview-card--wide img {
  height: 100%;
  min-height: 520px;
  aspect-ratio: auto;
}

.drinks-overview-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.drinks-overview-card > div {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 3.5vw, 46px);
  border-top: 3px solid var(--lacquer);
}

.drinks-overview-card--wide > div {
  min-height: 100%;
  justify-content: center;
  border-top: 0;
  border-left: 3px solid var(--lacquer);
}

.drinks-overview-card span {
  color: var(--lacquer);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.drinks-overview-card h3 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.drinks-overview-card p {
  margin: 22px 0 28px;
  color: rgba(231, 223, 208, 0.62);
  font-size: 0.86rem;
}

.drinks-overview-card i {
  margin-top: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drinks-guidance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 28px 80px;
  align-items: end;
  margin-top: 1px;
  padding: clamp(42px, 7vw, 90px);
  color: var(--bone);
  background: var(--night-green);
}

.drinks-guidance .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.drinks-guidance h3 {
  color: var(--bone-bright);
  font-size: clamp(2.8rem, 5vw, 5.3rem);
}

.drinks-guidance > p:not(.eyebrow) {
  margin: 0;
  color: rgba(231, 223, 208, 0.66);
}

.drinks-guidance .button {
  grid-column: 2;
  width: fit-content;
}

.visit-page-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.visit-page-details {
  grid-column: 1 / 7;
  padding-top: 28px;
}

.visit-page-details h2 {
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  letter-spacing: -0.012em;
}

.visit-page-lede {
  max-width: 580px;
  margin: 32px 0 0;
  color: rgba(231, 223, 208, 0.75);
  font-size: 1.05rem;
  line-height: 1.85;
}

.visit-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
  margin: 52px 0 46px;
}

.visit-facts div {
  padding-top: 15px;
  border-top: 1px solid var(--line-light);
}

.visit-facts dt {
  color: var(--lacquer);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.visit-facts dd {
  margin-top: 8px;
  color: rgba(231, 223, 208, 0.7);
  font-size: 0.87rem;
}

.visit-page-room {
  grid-column: 7 / 13;
}

.visit-page-room img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.visit-page-room figcaption {
  margin-top: 12px;
  color: rgba(231, 223, 208, 0.55);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visit-page-map {
  grid-column: 1 / 13;
  padding: 10px;
  border: 1px solid var(--line-light);
}

.generic-content {
  min-height: 70vh;
  padding: calc(var(--header-height) + 90px) 0 100px;
  color: var(--bone);
  background: var(--night-soft);
}

.generic-content h1 {
  margin-bottom: 40px;
  font-size: clamp(3rem, 7vw, 7rem);
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 380ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    transform 380ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

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

@media (max-width: 1200px) {
  .header-inner {
    grid-template-columns: 120px 1fr 80px;
    gap: 18px;
  }

  .brand {
    width: 116px;
  }

  .site-nav {
    gap: 18px;
  }

  

  

  
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 116px;
  }

  .brand img {
    height: 50px;
  }

  .site-nav,
  .header-reserve-wrap {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border: 0;
    color: var(--bone-bright);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle__label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .menu-toggle__lines {
    width: 22px;
    display: grid;
    gap: 6px;
  }

  .menu-toggle__lines i {
    width: 100%;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-navigation {
    height: calc(100svh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(40px, 8vw, 72px) var(--gutter);
    border-top: 1px solid var(--line-light);
    background:
      radial-gradient(circle at 82% 18%, rgba(158, 33, 26, 0.24), transparent 15rem),
      var(--night);
  }

  .mobile-navigation nav {
    display: grid;
  }

  .mobile-navigation nav a {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-light);
    color: var(--bone-bright);
    font-family: var(--display);
    font-size: clamp(2.2rem, 8vw, 4.4rem);
    line-height: 1;
    text-decoration: none;
  }

  .mobile-navigation nav span {
    color: var(--copper);
    font-family: var(--sans);
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .mobile-navigation__foot {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: rgba(231, 223, 208, 0.6);
    font-size: 0.68rem;
  }

  .mobile-navigation__foot p {
    margin: 0;
  }

  .mobile-navigation__foot a {
    align-self: end;
    color: var(--bone-bright);
  }

  

  .section-intro {
    grid-template-columns: 1fr;
  }

  .section-index {
    margin-bottom: 24px;
  }

  

  

  

  

  

  

  

  

  .page-masthead {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .page-masthead__copy {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-masthead__image {
    min-height: 460px;
  }

  .concept-layout {
    grid-template-columns: 1fr;
  }

  .concept-lead {
    position: static;
  }

  .drinks-overview-card {
    grid-column: span 6;
  }

  .drinks-overview-card--wide {
    grid-column: 1 / -1;
  }

  .visit-page-details,
  .visit-page-room {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
  }

  

  

  

  

  

  

  

  

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-intro h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  .ritual-list li {
    grid-template-columns: 36px 1fr;
  }

  .ritual-list small {
    grid-column: 2;
  }

  

  

  

  

  

  

  

  

  

  .map-frame {
    min-height: 340px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 60px;
  }

  .page-masthead__copy {
    min-height: 430px;
    padding-top: 110px;
  }

  .page-masthead h1 {
    font-size: clamp(3.7rem, 18vw, 5.6rem);
  }

  .page-masthead__image {
    min-height: 380px;
  }

  .page-menu-nav {
    top: var(--header-height);
  }

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

  .menu-item {
    min-height: 150px;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 22px 18px;
  }

  .menu-price {
    font-size: 0.61rem !important;
  }

  .concept-values div {
    grid-template-columns: 54px 1fr;
  }

  .drinks-overview-grid {
    grid-template-columns: 1fr;
  }

  .drinks-overview-card,
  .drinks-overview-card--wide {
    grid-column: auto;
    display: flex;
  }

  .drinks-overview-card--wide img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .drinks-overview-card--wide > div {
    min-height: 260px;
    border-top: 3px solid var(--lacquer);
    border-left: 0;
  }

  .drinks-guidance {
    grid-template-columns: 1fr;
    padding: 38px 25px;
  }

  .drinks-guidance .eyebrow,
  .drinks-guidance .button {
    grid-column: auto;
  }

  .drinks-guidance .button {
    width: 100%;
  }

  .visit-page-grid {
    grid-template-columns: 1fr;
  }

  .visit-page-details,
  .visit-page-room,
  .visit-page-map {
    grid-column: auto;
  }

  .visit-facts {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Age gate, reserve panel and legal notice   (added 2026-09-03)
   ========================================================================== */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background: var(--night);
}

.age-gate[hidden] {
  display: none;
}

body.age-gate-open {
  overflow: hidden;
}

.age-gate__inner {
  width: min(100%, 460px);
  text-align: center;
}

.age-gate__mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 30px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--bone-bright);
  font-family: var(--display);
  font-size: 2.4rem;
  font-style: italic;
  line-height: 1;
}

.age-gate__eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.age-gate__title {
  margin: 0;
  color: var(--bone-bright);
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.age-gate__title-th {
  margin: 14px 0 0;
  color: rgba(231, 223, 208, 0.72);
  font-family: "Noto Sans Thai", var(--sans);
  font-size: 0.95rem;
  line-height: 1.7;
}

.age-gate__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

/* -- reserve panel -------------------------------------------------------- */

.header-reserve-wrap {
  position: relative;
  justify-self: end;
}

button.header-reserve {
  border: 0;
  cursor: pointer;
  background: transparent;
}

.reserve-panel {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 60;
  width: 292px;
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line-light);
  background: var(--night-soft);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.reserve-panel[hidden] {
  display: none;
}

.reserve-panel__note {
  margin: 0 0 6px;
  color: rgba(231, 223, 208, 0.62);
  font-size: 0.72rem;
  line-height: 1.6;
}

.reserve-panel .button {
  width: 100%;
  justify-content: center;
}

.mobile-navigation__actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

/* -- legal notice --------------------------------------------------------- */

.footer-notice {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
}

.footer-notice p {
  max-width: 760px;
  margin: 0;
  color: rgba(231, 223, 208, 0.5);
  font-size: 0.72rem;
  line-height: 1.7;
}

.footer-notice p[lang="th"] {
  margin-top: 6px;
  font-family: "Noto Sans Thai", var(--sans);
}

/* ==========================================================================
   Home v2 (2026-09-05) — Giacosa 1815 × POPUP Como の合成。書体は Cormorant（判断E）。
   旧 home 用ブロック（131ルール・733行）は 2026-09-05 に削除済み（page.php と共有の
   .section-intro / .section-index / .map-frame は残している）。
   ========================================================================== */
.v2-eyebrow { margin: 0 0 22px; font: 500 11px/1 var(--sans); letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); }
.v2-lede { max-width: 56ch; margin: 0; color: var(--bone-deep); font-size: clamp(1.0625rem, 1.35vw, 1.25rem); line-height: 1.6; }
.v2-note { margin: 18px 0 0; color: var(--ash); font-size: 0.875rem; line-height: 1.6; }
.v2-more { margin: 30px 0 0; }
.v2-actions { margin-top: 30px; }
.v2-nowrap { white-space: nowrap; }
.v2-h1 { max-width: 12.5ch; font-size: clamp(3.625rem, 9.4vw, 9rem); letter-spacing: -0.015em; line-height: 0.98; color: var(--bone-bright); }
.v2-h2 { max-width: 16ch; margin: 0 0 28px; font-size: clamp(2.375rem, 5.2vw, 4.875rem); letter-spacing: -0.015em; line-height: 0.98; color: var(--bone-bright); }

/* hero */
.v2-hero { position: relative; isolation: isolate; display: grid; align-items: end; min-height: 100svh; padding: calc(var(--header-height) + 40px) 0 clamp(48px, 7vh, 96px); }
.v2-hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.v2-hero__bg img,
.v2-hero__bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: saturate(0.85) brightness(0.72); }
/* 画像のモーション（旧サイトの settle-in を継承＋動画の代わりの緩い漂い） */
@property --ps { syntax: "<number>"; inherits: false; initial-value: 1; }
/* Scroll motion uses frame-relative pixels; 20% overscan on either side prevents exposed edges. */
.js .v2-hero__bg img { position: absolute; left: 0; top: -20%; width: 100%; height: 140%; transform: translate3d(0, var(--py, 0px), 0) scale(var(--ps, 1)); animation: v2-hero-settle 1600ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards, v2-hero-drift 26s ease-in-out 1600ms infinite alternate; will-change: transform; }
@keyframes v2-hero-settle { from { --ps: 1.06; } to { --ps: 1; } }
@keyframes v2-hero-drift { from { --ps: 1; } to { --ps: 1.05; } }
.v2-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9, 11, 10, 0.55) 0%, rgba(9, 11, 10, 0.15) 35%, rgba(9, 11, 10, 0.72) 78%, var(--night) 100%); }
.v2-status { display: inline-flex; align-items: center; gap: 12px; margin: 0 0 34px; font: 500 11px/1 var(--sans); letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-deep); }
.v2-status__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ash); }
.v2-status.is-open .v2-status__dot { background: #5fbf7a; box-shadow: 0 0 0 4px rgba(95, 191, 122, 0.18); }
.v2-h1__line { display: block; }
.js .v2-h1__line { opacity: 0; transform: translateY(18px); animation: v2-up 900ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.js .v2-h1__line:nth-child(2) { animation-delay: 120ms; }
.js .v2-h1__line:nth-child(3) { animation-delay: 240ms; }
@keyframes v2-up { to { opacity: 1; transform: none; } }
.v2-hero__row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px 40px; margin-top: 40px; }
.v2-hero .v2-lede { max-width: 44ch; }
.v2-hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.v2-scrollhint { position: absolute; right: var(--gutter); bottom: 28px; font: 500 10px/1 var(--sans); letter-spacing: 0.24em; text-transform: uppercase; color: var(--ash); writing-mode: vertical-rl; }

/* BG counter hero:start */
/* Keep the source photograph intact; tonal correction is display-only. */
.v2-hero--counter .v2-hero__bg img { object-position: 50% 65%; filter: brightness(1.12) saturate(0.9) contrast(1.03); }
.v2-hero--counter .v2-hero__bg::after { background: linear-gradient(90deg, rgba(9, 11, 10, 0.52), rgba(9, 11, 10, 0.12) 65%, rgba(9, 11, 10, 0.06)), linear-gradient(180deg, rgba(9, 11, 10, 0.12) 0%, transparent 32%, rgba(9, 11, 10, 0.4) 76%, var(--night) 100%); }
@media (max-width: 540px) {
  .v2-hero--counter .v2-hero__bg img { object-position: 58% 65%; }
  .v2-hero--counter .v2-hero__bg::after { background: linear-gradient(180deg, rgba(9, 11, 10, 0.16) 0%, transparent 25%, rgba(9, 11, 10, 0.68) 58%, rgba(9, 11, 10, 0.78) 80%, var(--night) 100%); }
}
/* BG counter hero:end */

/* sections */
.v2-sec { padding: clamp(80px, 11vw, 160px) 0; }
.v2-sec--tight { padding-top: clamp(40px, 6vw, 80px); }
.v2-grid2 { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.v2-grid2--flip > *:first-child { order: 2; }
.v2-fig { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 6px; background: var(--night-soft); }
.v2-fig img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
/* Masked parallax: 140% image height reserves room for a 32% frame-height journey.
   --py is in px, not image-relative %, and --ps retains the existing reveal/hover zoom. */
.v2-fig { position: relative; }
.js .v2-fig img { position: absolute; left: 0; top: -20%; width: 100%; height: 140%; --ps: 1.06; transform: translate3d(0, var(--py, 0px), 0) scale(var(--ps, 1)); transition: --ps 1200ms cubic-bezier(0.2, 0.65, 0.25, 1), filter 300ms ease; will-change: transform; }
.js .v2-fig.reveal.is-visible img,
.js .reveal.is-visible .v2-fig img { --ps: 1; }
.js .v2-fig.reveal.is-visible:hover img,
.js .reveal.is-visible .v2-fig:hover img { --ps: 1.035; filter: saturate(1); }
/* Close-framed Instagram portraits: less overscan keeps the glass readable. */
.js .v2-fig--portrait-photo img { top: -8%; height: 116%; }
/* BG blue photo level:start
   Level the blue cocktail without re-encoding the source photograph. */
.v2-fig--level-photo img { transform: rotate(-1.5deg) scale(1.03); transform-origin: 50% 55%; }
.js .v2-fig.v2-fig--level-photo img { transform: translate3d(0, var(--py, 0px), 0) scale(var(--ps, 1)) rotate(-1.5deg) scale(1.03); }
/* BG blue photo level:end */
.v2-fig--sq { aspect-ratio: 1; }
.v2-fig--tall { width: 100%; aspect-ratio: 3 / 4; max-width: 460px; justify-self: center; }
.v2-band { background: var(--night-green); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }

/* signatures */
/* Black-matte photographic cutouts, composited against the existing night palette.
   Blend the moving wrapper (not just its child) so transforms never reveal a box. */
.v2-glass-panel { min-width: 0; }
.v2-glasses { position: relative; isolation: isolate; overflow: hidden; aspect-ratio: 2 / 3; background: var(--night); }
.v2-glass { position: absolute; margin: 0; mix-blend-mode: screen; pointer-events: none; transform-origin: 50% 58%; transform: translate3d(var(--glass-x, 0px), var(--glass-y, 0px), 0) rotate(var(--glass-tilt, 0deg)); }
.v2-glass img { display: block; width: 100%; height: auto; object-fit: contain; }
.v2-glass--passion { width: 96%; left: -20%; top: 0; --glass-tilt: -6deg; }
.v2-glass--flower { width: 58%; left: 36%; top: 32%; --glass-tilt: 5deg; }
.js .v2-glass img { animation: v2-glass-float 7s ease-in-out infinite; animation-play-state: paused; }
.js .v2-glass--flower img { animation-duration: 8.6s; animation-delay: -3s; }
.js .v2-glass-panel.is-floating .v2-glass img { animation-play-state: running; }
@keyframes v2-glass-float {
  0%, 100% { transform: translate3d(0, 7px, 0) rotate(-1.6deg); }
  50% { transform: translate3d(5px, -7px, 0) rotate(1.6deg); }
}
.v2-motion-toggle { display: none; margin: 12px 0 0; padding: 10px 0; border: 0; border-bottom: 1px solid var(--line-light); background: none; color: var(--ash); font: 400 0.875rem/1.4 var(--sans); cursor: pointer; }
.js .v2-motion-toggle { display: inline-block; }
.v2-motion-toggle:hover, .v2-motion-toggle:focus-visible { color: var(--bone-bright); }
.v2-motion-toggle:focus-visible { outline: 2px solid var(--copper); outline-offset: 6px; }
.v2-sig { border-top: 1px solid var(--line-light); }
.v2-sig__row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 18px 40px; align-items: baseline; padding: 30px 0; border-bottom: 1px solid var(--line-light); }
.v2-sig__name { margin: 0; font-size: clamp(1.625rem, 2.6vw, 2.25rem); letter-spacing: -0.015em; color: var(--bone-bright); }
.v2-sig__ing { margin: 0; color: var(--bone-deep); font-size: clamp(0.9375rem, 1.2vw, 1.125rem); line-height: 1.5; }

/* library */
.v2-lib { list-style: none; margin: 36px 0 0; padding: 0; border-top: 1px solid var(--line-light); }
.v2-lib li { border-bottom: 1px solid var(--line-light); }
.v2-lib a { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 22px 0; color: inherit; text-decoration: none; transition: padding-left 250ms ease; }
.v2-lib a:hover,
.v2-lib a:focus-visible { padding-left: 12px; }
.v2-lib__name { font-family: var(--display); font-size: clamp(2.125rem, 4.6vw, 4.125rem); letter-spacing: -0.015em; line-height: 1; color: var(--bone-bright); }
.v2-lib__n { font: 400 12px/1 var(--sans); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ash); white-space: nowrap; }

/* Room gallery: every photograph stays within the page, without sideways scrolling. */
.v2-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 1.5vw, 20px); }
.v2-strip .v2-fig { min-width: 0; aspect-ratio: 4 / 5; }
@media (max-width: 1000px) {
  .v2-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .v2-strip { grid-template-columns: minmax(0, 1fr); }
}

/* BG gallery spread:start */
/* Photos converge at their row centre, then spread into the existing grid.
   Only transforms change: the page width and row heights remain stable. */
[data-gallery-spread] { position: relative; isolation: isolate; }
.js [data-gallery-spread] .v2-fig { transform: translate3d(var(--gallery-x, 0px), 0, 0); will-change: transform; }
.js [data-gallery-spread] .v2-fig img { --ps: 1; }
[data-gallery-spread] .v2-fig:nth-child(1) { z-index: 2; }
[data-gallery-spread] .v2-fig:nth-child(2) { z-index: 3; }
[data-gallery-spread] .v2-fig:nth-child(3) { z-index: 4; }
[data-gallery-spread] .v2-fig:nth-child(4) { z-index: 1; }
@media (max-width: 540px), (prefers-reduced-motion: reduce) {
  .js [data-gallery-spread] .v2-fig { transform: none; will-change: auto; }
}
/* BG gallery spread:end */

/* visit */
.v2-dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 32px; margin: 36px 0 0; }
.v2-dl div { border-top: 1px solid var(--line-light); padding-top: 14px; }
.v2-dl dt { margin: 0 0 10px; font: 500 11px/1 var(--sans); letter-spacing: 0.18em; text-transform: uppercase; color: var(--copper); }
.v2-dl dd { margin: 0; color: var(--bone); font-size: 1rem; line-height: 1.5; }
.v2-dl dd a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--line-light); }

@media (max-width: 900px) {
  .v2-glass-panel { width: min(100%, 540px); margin-inline: auto; }
  .v2-grid2 { grid-template-columns: 1fr; }
  .v2-grid2--flip > *:first-child { order: 0; }
  .v2-fig--tall { max-width: none; justify-self: stretch; }
}
@media (max-width: 640px) {
  @keyframes v2-glass-float {
    0%, 100% { transform: translate3d(0, 4px, 0) rotate(-1deg); }
    50% { transform: translate3d(3px, -4px, 0) rotate(1deg); }
  }
  .v2-sig__row { grid-template-columns: 1fr; gap: 6px; }
  .v2-dl { grid-template-columns: 1fr; }
  .v2-scrollhint { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .v2-glass, .js .v2-glass { transform: none; }
  .js .v2-glass img { animation: none; transform: none; }
  .js .v2-motion-toggle { display: none; }
  .js .v2-h1__line { animation: none; opacity: 1; transform: none; }
  .js .v2-hero__bg img { animation: none; transform: none; top: 0; height: 100%; }
  .js .v2-fig img { transform: none; transition: none; top: 0; height: 100%; }
}

/* Press archive:start */
/* Press recognition:start */
.press-recognition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(32px, 7vw, 110px);
  padding-bottom: clamp(60px, 8vw, 120px);
  margin-bottom: clamp(60px, 8vw, 120px);
  border-bottom: 1px solid var(--line-light);
}
.press-recognition__photo {
  width: 100%;
  max-width: 560px;
  margin: 0;
}
.press-recognition__photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.press-recognition__copy { min-width: 0; }
.press-recognition__copy h2 {
  margin: 24px 0;
  font-size: clamp(52px, 6.5vw, 100px);
  line-height: 0.98;
  font-weight: 400;
}
.press-recognition__copy h2 em { color: var(--copper); font-weight: 400; }
.press-recognition__inscription {
  margin: 0 0 20px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.press-recognition__note {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.7;
}
@media (max-width: 700px) {
  .press-recognition { grid-template-columns: minmax(0, 1fr); }
  .press-recognition__photo { max-width: none; }
  .press-recognition__copy h2 { font-size: clamp(52px, 12vw, 76px); }
}
/* Press recognition:end */

.press-recognition__note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(70px, 9vw, 130px);
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.press-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(173, 94, 54, 0.12), transparent 45%),
    var(--night-soft);
}

.press-card__body {
  min-height: 330px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(25px, 3vw, 38px);
  border-top: 3px solid var(--lacquer);
}

.press-card__index {
  margin: 0;
  color: var(--copper);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.press-card h2 {
  margin: 18px 0 24px;
  color: var(--bone-bright);
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.02;
}

.press-card__headline {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.press-card__published,
.press-record__published {
  margin: 0 0 20px;
  color: var(--ash);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.press-card__summary {
  margin: 0 0 24px;
  color: var(--bone-deep);
  font-size: 0.85rem;
  line-height: 1.6;
}

.press-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: auto;
}

.press-card__actions a {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--bone-deep);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.press-card__actions a:hover,
.press-card__actions a:focus-visible {
  color: var(--bone-bright);
}

.press-archive-note {
  max-width: 860px;
  margin: clamp(64px, 8vw, 110px) 0 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--copper);
  background: rgba(247, 241, 230, 0.035);
}

.press-archive-note > p:last-child {
  margin: 0;
  color: rgba(231, 223, 208, 0.66);
  font-size: 0.82rem;
  line-height: 1.75;
}

.press-record {
  max-width: 1120px;
  margin: 0 auto;
}

.press-record__intro {
  max-width: 860px;
  margin-bottom: 32px;
}

.press-record__intro h2 {
  margin: 18px 0 0;
  color: var(--bone-bright);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.press-record__intro h2 em {
  color: var(--copper);
  font-weight: 400;
}

.press-record__intro .lead {
  margin-top: 24px;
}

.press-record__source,
.press-record__back {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--bone-deep);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.press-record__source:hover,
.press-record__source:focus-visible,
.press-record__back:hover,
.press-record__back:focus-visible {
  color: var(--bone-bright);
}

.press-record__clipping,
.press-record__capture {
  margin: 0;
  padding: clamp(10px, 1.5vw, 18px);
  border: 1px solid rgba(205, 144, 82, 0.42);
  background: #f2f0eb;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.press-record__clipping img,
.press-record__capture img {
  display: block;
  width: 100%;
  height: auto;
}

.press-record__clipping figcaption,
.press-record__capture figcaption {
  padding: 15px 4px 2px;
  color: #57534b;
  font-size: 0.7rem;
  line-height: 1.55;
}

.press-record__saved {
  margin-top: 48px;
  border-top: 1px solid var(--line-light);
}

.press-record__saved > summary {
  padding: 22px 0;
  color: var(--bone-deep);
  font: 500 0.8rem/1.6 var(--sans);
  cursor: pointer;
}

@media (max-width: 900px) {
  .press-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 580px) {
  .press-grid { grid-template-columns: minmax(0, 1fr); }
  .press-card__body { min-height: 260px; }
}
/* Press archive:end */

/* BG latest feed:start */
.bg-journal__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px 64px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 84px);
}

.bg-journal__head .v2-h2 {
  max-width: 12ch;
}

.bg-journal__links {
  display: grid;
  gap: 16px;
  justify-items: start;
  padding-bottom: 8px;
}

.bg-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
}

.bg-feed-card {
  min-width: 0;
  background: rgba(247, 241, 230, 0.035);
}

.bg-feed-card > a {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  color: inherit;
  text-decoration: none;
}

.bg-feed-card figure {
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--night-soft);
}

.bg-feed-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 250ms ease;
}

.bg-feed-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 22px 26px;
}

.bg-feed-card time {
  color: var(--copper);
  font: 500 0.62rem/1 var(--sans);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bg-feed-card h3 {
  margin: 18px 0 28px;
  color: var(--bone-bright);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  letter-spacing: -0.012em;
  line-height: 1.06;
}

.bg-feed-card__body > span {
  margin-top: auto;
  color: var(--bone-deep);
  font: 700 0.62rem/1.3 var(--sans);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bg-feed-card > a:hover img,
.bg-feed-card > a:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.03);
}

.bg-feed-card > a:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 5px;
}

.bg-feed-status {
  margin: 26px 0 0;
  color: var(--ash);
  font-size: 0.72rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .bg-journal__head { grid-template-columns: 1fr; }
  .bg-feed-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .bg-feed-grid { grid-template-columns: minmax(0, 1fr); }
}
/* BG latest feed:end */

/* BG LINE reservation:start */
.line-reserve-fab {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  align-items: stretch;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid rgba(247, 241, 230, 0.3);
  color: #fff;
  background: rgba(9, 11, 10, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.line-reserve-fab__mark,
.line-reserve-fab__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.line-reserve-fab__mark {
  padding: 0 13px;
  color: #07150b;
  background: #06c755;
  font: 700 0.66rem/1 var(--sans);
  letter-spacing: 0.04em;
}

.line-reserve-fab__label {
  padding: 0 16px;
  font: 700 0.62rem/1.2 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.line-reserve-fab:hover {
  border-color: rgba(247, 241, 230, 0.72);
  transform: translateY(-2px);
}

.line-reserve-fab:focus-visible {
  outline: 3px solid var(--bone-bright);
  outline-offset: 4px;
}

body.age-gate-open .line-reserve-fab {
  visibility: hidden;
}

@media (max-width: 560px) {
  .line-reserve-fab {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    min-height: 44px;
  }
  .line-reserve-fab__mark { padding-inline: 11px; }
  .line-reserve-fab__label { padding-inline: 13px; }
}

@media print {
  .line-reserve-fab { display: none; }
}
/* BG LINE reservation:end */

/* A Salon-styled bridge to the independently maintained BG catalogue. */
.page-masthead--reference {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
  border-bottom: 1px solid var(--line-light);
  background: linear-gradient(125deg, var(--night-soft), var(--night));
}
.page-masthead--reference .page-masthead__copy {
  width: 100%;
  max-width: 1200px;
  padding: clamp(64px, 8vw, 104px) var(--gutter);
}
.page-masthead--reference h1 { font-size: clamp(3.25rem, 7.5vw, 7.5rem); }
.page-masthead--reference .page-intro { max-width: 640px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.bottle-catalogue__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}
.bottle-catalogue__head h2 { font-size: clamp(2.4rem, 4vw, 3.8rem); line-height: 1.1; margin: 12px 0 0; }
.bottle-catalogue__head > p { font-size: .85rem; color: var(--bone-deep); margin: 0; }
.bottle-catalogue__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}
.catalogue-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 290px;
  padding: clamp(24px, 3vw, 40px);
  background: linear-gradient(145deg, var(--night-green), var(--night-soft) 80%);
  text-decoration: none;
}
.catalogue-card__index {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--bone-deep);
}
.catalogue-card__index > span { font-size: 1.45rem; line-height: 1; color: var(--copper); }
.catalogue-card h3 { font-size: clamp(2rem, 3.2vw, 3.1rem); line-height: 1.04; margin: 32px 0 12px; }
.catalogue-card p { font-size: .92rem; color: var(--bone-deep); margin: 0 0 32px; }
.catalogue-card__action {
  margin-top: auto;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--bone-bright);
}
.catalogue-card:hover { background: var(--night-green); }
.catalogue-card:hover .catalogue-card__action { text-decoration: underline; text-underline-offset: 6px; }
.catalogue-card:focus-visible { outline: 2px solid var(--bone-bright); outline-offset: -5px; }
.bottle-catalogue__all { text-align: right; margin: 24px 0 0; }

@media (max-width: 1000px) {
  .bottle-catalogue__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .bottle-catalogue__head { display: block; }
  .bottle-catalogue__head > p { margin-top: 24px; }
}
@media (max-width: 540px) {
  .bottle-catalogue__grid { grid-template-columns: minmax(0, 1fr); }
  .catalogue-card { min-height: 250px; }
  .catalogue-card h3 { font-size: 2.5rem; }
  .bottle-catalogue__all { text-align: left; }
}
