:root {
  --black: #0d0d0d;
  --ink: #f4f1ea;
  --panel: #242424;
  --white: #ffffff;
  --paper: #181818;
  --surface: #202020;
  --surface-soft: #2a2a2a;
  --text: #f4f1ea;
  --soft: rgba(244, 241, 234, 0.66);
  --line: rgba(244, 241, 234, 0.13);
  --line-strong: rgba(244, 241, 234, 0.34);
  --accent: #d8c8a3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
dt,
dd,
li,
a {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(20, 20, 20, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  filter: none;
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 12px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

nav a {
  color: rgba(244, 241, 234, 0.72);
}

nav a:hover,
.nav-reserve {
  color: var(--text);
}

.nav-reserve {
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  background: rgba(244, 241, 234, 0.06);
}

.floating-cta {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 30px);
  z-index: 40;
  display: flex;
  border: 1px solid var(--line-strong);
  background: rgba(14, 14, 14, 0.9);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.floating-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.floating-cta__main {
  background: var(--ink);
  color: #171717;
}

.floating-cta__sub {
  color: var(--text);
  border-left: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 122px clamp(20px, 6vw, 86px) 38px;
  overflow: hidden;
}

.sub-hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 6vw, 86px) 74px;
  overflow: hidden;
}

.hero-bg,
.hero-shade,
.geo-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  filter: contrast(1.06) brightness(0.82) saturate(0.9);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.68) 45%, rgba(18, 18, 18, 0.18)),
    linear-gradient(180deg, rgba(18, 18, 18, 0.22), rgba(24, 24, 24, 0.86));
}

.geo-lines {
  opacity: 0.42;
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 1px), rgba(244,241,234,0.11) calc(100% - 1px) 100%) 0 0 / 12.5vw 100%,
    linear-gradient(0deg, transparent 0 calc(100% - 1px), rgba(244,241,234,0.07) calc(100% - 1px) 100%) 0 0 / 100% 18vh;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  padding-bottom: clamp(110px, 17vh, 175px);
}

.sub-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
}

.eyebrow,
.label {
  margin-bottom: 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  color: rgba(216, 200, 163, 0.88);
}

h1 {
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(70px, 11vw, 154px);
  line-height: 0.86;
  letter-spacing: 0.015em;
  font-weight: 600;
}

h1 span {
  display: block;
}

.jp-hero-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(58px, 9vw, 118px);
  line-height: 1.04;
  letter-spacing: 0;
}

.jp-hero-title--long {
  font-size: clamp(48px, 7.8vw, 96px);
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 32px;
  color: rgba(244, 241, 234, 0.84);
  font-size: clamp(18px, 2vw, 24px);
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.hero-actions.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.button.primary {
  background: var(--ink);
  color: #171717;
  border-color: var(--ink);
}

.button.ghost {
  background: rgba(244, 241, 234, 0.06);
  color: var(--text);
}

.quick-panel {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 6vw, 86px);
  bottom: 38px;
  width: min(560px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-strong);
  background: rgba(28, 28, 28, 0.78);
  backdrop-filter: blur(14px);
}

.quick-panel p {
  margin: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  font-weight: 700;
}

.quick-panel p:last-child {
  border-right: 0;
}

.quick-panel span {
  display: block;
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 11px;
  color: rgba(216, 200, 163, 0.8);
}

.statement {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: #101010;
  color: var(--ink);
}

.statement p {
  margin: 0;
  padding: 18px 12px;
  border-right: 1px solid rgba(244, 241, 234, 0.16);
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
}

.statement p:last-child {
  border-right: 0;
}

.section {
  position: relative;
  padding: clamp(68px, 9vw, 116px) clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 1px), rgba(244,241,234,0.045) calc(100% - 1px) 100%) 0 0 / 20vw 100%;
}

.section-head,
.gallery,
.system-grid,
.plan-grid,
.guide-grid,
.reason-grid,
.seo-link-grid,
.faq-grid,
.drink-layout,
.access-grid,
.map-embed {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin-inline: auto;
}

.section-head {
  margin-bottom: 34px;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-copy,
.note,
.tax-note,
.compact-list,
.bottle-list,
.shisha-card p,
.reserve-section p,
footer {
  color: var(--soft);
}

.private-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(280px, 0.78fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(44px, 6vw, 70px) clamp(20px, 6vw, 86px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(216, 200, 163, 0.1), transparent 46%),
    #141414;
}

.private-band h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.4vw, 46px);
}

.private-band p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--soft);
}

.conversion-strip,
.article-cta {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(216, 200, 163, 0.44);
  background:
    linear-gradient(135deg, rgba(216, 200, 163, 0.14), transparent 48%),
    rgba(18, 18, 18, 0.86);
}

.conversion-strip p,
.article-cta p {
  margin: 0;
  color: var(--soft);
}

.conversion-strip strong,
.article-cta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(21px, 2.6vw, 30px);
  font-weight: 600;
}

.space-section,
.drink-section,
.shisha-section {
  background: var(--surface);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 250px;
  gap: 12px;
}

figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.gallery-main {
  grid-row: span 2;
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) brightness(0.92) saturate(0.92);
  transition: transform 0.5s ease, filter 0.5s ease;
}

figure:hover img {
  transform: scale(1.03);
  filter: contrast(1.06) brightness(0.98);
}

figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 5px 10px;
  background: rgba(20, 20, 20, 0.76);
  border: 1px solid var(--line);
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.system-section {
  background: var(--paper);
}

.system-grid,
.plan-grid,
.guide-grid,
.drink-layout,
.access-grid,
.shisha-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.plans-section,
.guide-section,
.intent-section,
.seo-pages-section,
.faq-section {
  background: #1b1b1b;
}

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

.plan-card,
.guide-grid article,
.reason-grid article,
.seo-link-grid a {
  border: 1px solid var(--line);
  background: rgba(38, 38, 38, 0.86);
  padding: clamp(24px, 3.2vw, 36px);
}

.reason-grid,
.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.reason-grid article span,
.seo-link-grid a span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.reason-grid article p,
.seo-link-grid a {
  color: var(--soft);
}

.seo-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-link-grid a {
  min-height: 170px;
}

.seo-link-grid a:hover {
  border-color: rgba(216, 200, 163, 0.58);
  background: rgba(45, 45, 45, 0.92);
  color: var(--text);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  background: rgba(38, 38, 38, 0.86);
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  color: var(--text);
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
}

details p {
  margin: 14px 0 0;
  color: var(--soft);
}

.plan-card.featured {
  background:
    linear-gradient(135deg, rgba(216, 200, 163, 0.14), transparent 42%),
    #101010;
  color: var(--ink);
  border-color: rgba(216, 200, 163, 0.48);
}

.plan-card.featured .label,
.plan-card.featured .plan-price span,
.plan-card.featured li {
  color: rgba(244, 241, 234, 0.72);
}

.plan-price {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1;
  font-weight: 700;
}

.plan-price span {
  margin-left: 6px;
  color: var(--soft);
  font-size: 15px;
}

.plan-card ul,
.guide-grid ul,
.guide-grid ol {
  margin: 0;
  padding-left: 1.2em;
  color: var(--soft);
}

.plan-card li,
.guide-grid li {
  margin-bottom: 8px;
}

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

.system-grid article,
.drink-card,
.bottle-card,
.shisha-card,
.shisha-feature article,
.address-panel,
.info-list div,
.success-panel {
  border: 1px solid var(--line);
  background: rgba(38, 38, 38, 0.86);
}

.system-grid article,
.drink-card,
.bottle-card,
.shisha-card,
.shisha-feature article {
  padding: clamp(24px, 4vw, 42px);
}

.shisha-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 20px;
  align-items: center;
}

.drink-visual {
  min-height: 100%;
  border: 1px solid var(--line);
  background: #1b1b1b;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.shisha-feature {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
}

.shisha-visual {
  grid-row: span 2;
  min-height: 100%;
  border: 1px solid var(--line);
  background: #181818;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.shisha-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flavor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.flavor-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(216, 200, 163, 0.36);
  color: var(--text);
  background: rgba(18, 18, 18, 0.34);
  font-size: 13px;
  font-weight: 700;
}

.drink-visual img,
.section-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05) saturate(0.96);
}

.section-illustration {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 1120px;
  height: clamp(170px, 22vw, 250px);
  margin: 28px auto 0;
  border: 1px solid var(--line);
  opacity: 0.92;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.shisha-card h3,
.shisha-card p {
  margin-bottom: 0;
}

h3 {
  margin-bottom: 14px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: var(--text);
  font-size: 24px;
}

.price {
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(46px, 7vw, 82px);
  line-height: 1;
  font-weight: 700;
}

.price span {
  margin-left: 6px;
  font-size: 18px;
}

.tax-note {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 18px auto 0;
  font-size: 14px;
}

.compact-list {
  margin: 0;
  padding-left: 1.1em;
}

.compact-list li {
  margin-bottom: 8px;
}

.bottle-list {
  margin: 0;
}

.bottle-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.bottle-list div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--text);
  font-weight: 600;
}

dd {
  margin: 0;
  white-space: nowrap;
  font-weight: 700;
}

.party-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
  background:
    linear-gradient(rgba(28, 28, 28, 0.78), rgba(24, 24, 24, 0.92)),
    url("assets/neon-purple.jpg") center / cover;
}

.scene-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.scene-grid p {
  margin: 0;
  padding: 22px 16px;
  border: 1px solid var(--line-strong);
  background: rgba(34, 34, 34, 0.86);
  text-align: center;
  font-weight: 700;
}

.address-panel {
  min-height: 320px;
  display: grid;
  place-content: center;
  padding: 28px;
  text-align: center;
}

.address-panel p {
  margin-bottom: 4px;
}

.map-mark {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 84px;
  line-height: 1;
}

.info-list {
  margin: 0;
  display: grid;
  gap: 1px;
}

.info-list div {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 16px;
  padding: 22px;
}

.info-list dt {
  color: rgba(216, 200, 163, 0.72);
}

.info-list dd span {
  display: inline-block;
  margin-top: 4px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.6;
}

.map-embed {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: #141414;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.85) invert(0.9) contrast(0.86);
}

.reserve-section {
  padding: clamp(74px, 10vw, 128px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(rgba(24, 24, 24, 0.84), rgba(18, 18, 18, 0.94)),
    url("assets/interior-main.jpg") center / cover;
  text-align: center;
}

.contact-hero {
  min-height: 62svh;
  display: grid;
  align-content: end;
  padding: 140px clamp(20px, 6vw, 86px) clamp(54px, 8vw, 96px);
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.44)),
    url("assets/lounge-wide.jpg") center / cover;
}

.contact-hero h1 {
  font-size: clamp(54px, 9vw, 112px);
}

.contact-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 22px);
}

.contact-section {
  background: var(--surface);
}

.thanks-section {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 140px clamp(20px, 6vw, 86px) 70px;
  background:
    linear-gradient(rgba(18, 18, 18, 0.82), rgba(18, 18, 18, 0.94)),
    url("assets/lounge-wide.jpg") center / cover;
}

.thanks-section .success-panel {
  max-width: 820px;
}

.thanks-section h1 {
  font-size: clamp(62px, 10vw, 132px);
}

.instagram-box span {
  display: inline-block;
  margin-top: 4px;
  color: var(--soft);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.contact-layout {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
}

.contact-note {
  border: 1px solid var(--line);
  background: rgba(38, 38, 38, 0.86);
  padding: clamp(24px, 3vw, 34px);
}

.success-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  margin: 34px auto 28px;
  padding: clamp(26px, 4vw, 46px);
}

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

.success-panel p {
  margin-bottom: 0;
  color: var(--soft);
}

.instagram-box {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(18, 18, 18, 0.54);
}

.instagram-box img {
  width: 126px;
  aspect-ratio: 1;
  object-fit: cover;
}

.instagram-box p {
  color: var(--text);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

.contact-note ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--soft);
}

.contact-note li {
  margin-bottom: 8px;
}

.contact-proof {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.contact-proof p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(18, 18, 18, 0.38);
  color: var(--soft);
  font-size: 14px;
}

.article-body,
.related-guides {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.article-body h2 {
  margin-top: 46px;
  margin-bottom: 16px;
  font-size: clamp(27px, 3.4vw, 42px);
}

.article-body h3 {
  margin-top: 28px;
}

.article-body p,
.article-body li {
  color: var(--soft);
}

.article-body p {
  margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.3em;
}

.article-body li {
  margin-bottom: 8px;
}

.article-summary {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  background: rgba(38, 38, 38, 0.86);
}

.article-summary p:last-child {
  margin-bottom: 0;
}

.related-guides {
  margin-top: 40px;
}

.reserve-inner {
  max-width: 920px;
  margin: 0 auto;
}

.reserve-section h2 {
  margin-inline: auto;
}

.inquiry-form {
  margin: 34px auto 28px;
  display: grid;
  gap: 12px;
  text-align: left;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(244, 241, 234, 0.74);
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: rgba(18, 18, 18, 0.74);
  color: var(--text);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

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

.form-actions .button {
  cursor: pointer;
}

.form-output {
  min-height: 170px;
  color: var(--text);
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--soft);
  font-weight: 700;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 920px;
    align-items: start;
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 330px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(18, 18, 18, 0.88), rgba(18, 18, 18, 0.58) 48%, rgba(24, 24, 24, 0.96)),
      linear-gradient(90deg, rgba(18, 18, 18, 0.72), rgba(18, 18, 18, 0.2));
  }

  .quick-panel {
    left: 20px;
    right: 20px;
    bottom: 38px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .quick-panel p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-panel p:last-child {
    border-bottom: 0;
  }

  .statement,
  .private-band,
  .conversion-strip,
  .article-cta,
  .section-head.split,
  .gallery,
  .system-grid,
  .plan-grid,
  .guide-grid,
  .reason-grid,
  .seo-link-grid,
  .faq-grid,
  .drink-layout,
  .shisha-feature,
  .party-section,
  .access-grid,
  .contact-layout,
  footer {
    grid-template-columns: 1fr;
  }

  .statement p {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 241, 234, 0.16);
  }

  .gallery {
    grid-auto-rows: 260px;
  }

  .gallery-main {
    grid-row: span 1;
  }

  .info-list div,
  .scene-grid,
  .form-row,
  .shisha-card,
  .instagram-box {
    grid-template-columns: 1fr;
  }

  .shisha-visual {
    grid-row: span 1;
    min-height: 220px;
  }

  .map-embed {
    aspect-ratio: 1 / 0.9;
  }

  .private-band .button {
    width: 100%;
  }

  .floating-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .floating-cta a {
    flex: 1;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand span {
    font-size: 14px;
  }

  nav {
    gap: 14px;
    font-size: 12px;
  }

  .hero {
    min-height: 900px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-content,
  .sub-hero-content {
    min-width: 0;
    max-width: calc(100vw - 36px);
  }

  h1 {
    font-size: clamp(46px, 14vw, 58px);
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .contact-hero h1,
  .sub-hero h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

  .sub-hero .jp-hero-title {
    font-size: clamp(54px, 17vw, 66px);
    line-height: 1.04;
  }

  .sub-hero .jp-hero-title--long {
    font-size: clamp(39px, 12vw, 47px);
  }

  h2 {
    font-size: 25px;
    line-height: 1.32;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .hero-lead {
    max-width: calc(100vw - 36px);
    font-size: 17px;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .section-copy,
  .note,
  .contact-hero p:not(.eyebrow),
  details p {
    max-width: calc(100vw - 36px);
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .section,
  .reserve-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section::before {
    background-size: 50vw 100%;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .floating-cta a {
    min-height: 46px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .gallery {
    grid-auto-rows: 230px;
  }

  .bottle-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  dd {
    white-space: normal;
  }
}

/* Visual refresh: richer editorial lounge system */
:root {
  --black: #070707;
  --paper: #10100f;
  --surface: #151412;
  --surface-soft: #1c1a17;
  --panel: #211f1b;
  --text: #f7f2e8;
  --ink: #f7f2e8;
  --soft: rgba(247, 242, 232, 0.7);
  --line: rgba(247, 242, 232, 0.12);
  --line-strong: rgba(247, 242, 232, 0.28);
  --accent: #d5b979;
  --accent-deep: #7b1f2d;
  --wine: #40131c;
}

body {
  background:
    linear-gradient(180deg, #080808 0, #12100e 38%, #0d0d0c 100%);
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(213, 185, 121, 0.035) 0 1px, transparent 1px 100%) 0 0 / 9.5vw 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 100%) 0 0 / 100% 18vh;
  opacity: 0.72;
}

.site-header {
  margin: 14px clamp(12px, 2.4vw, 34px) 0;
  inset: 0 0 auto;
  width: auto;
  padding: 12px clamp(14px, 2.6vw, 30px);
  border: 1px solid rgba(247, 242, 232, 0.16);
  background: rgba(10, 10, 9, 0.62);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26);
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 9, 0.88);
  border-color: rgba(213, 185, 121, 0.24);
}

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(213, 185, 121, 0.34);
  box-shadow: 0 0 0 6px rgba(247, 242, 232, 0.03);
}

nav {
  gap: clamp(12px, 2.2vw, 28px);
  letter-spacing: 0.06em;
}

nav a {
  position: relative;
  transition: color 0.18s ease;
}

nav a:not(.nav-reserve)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transition: right 0.24s ease;
}

nav a:not(.nav-reserve):hover::after {
  right: 0;
}

.nav-reserve,
.button,
.floating-cta {
  border-radius: 6px;
}

.nav-reserve {
  border-color: rgba(213, 185, 121, 0.5);
  background: rgba(213, 185, 121, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.hero,
.sub-hero,
.contact-hero {
  isolation: isolate;
}

.hero {
  min-height: 96svh;
  padding-bottom: 52px;
}

.sub-hero {
  min-height: 82svh;
}

.hero-bg {
  filter: contrast(1.08) brightness(0.68) saturate(0.86);
  transform: scale(1.012);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.92), rgba(10, 9, 8, 0.74) 43%, rgba(64, 19, 28, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.1), rgba(13, 13, 12, 0.9) 92%);
}

.hero-content,
.sub-hero-content {
  max-width: 920px;
  text-shadow: 0 14px 45px rgba(0, 0, 0, 0.4);
}

.hero-content {
  padding-bottom: clamp(120px, 15vh, 170px);
}

.eyebrow,
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(213, 185, 121, 0.92);
  letter-spacing: 0.16em;
}

.eyebrow::before,
.label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

h1 {
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  color: rgba(247, 242, 232, 0.88);
}

.button {
  min-height: 54px;
  padding: 13px 24px;
  border-color: rgba(213, 185, 121, 0.42);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary,
.floating-cta__main {
  background: linear-gradient(135deg, #f7f2e8, #d5b979);
  border-color: rgba(213, 185, 121, 0.72);
  color: #12100e;
}

.button.ghost,
.floating-cta__sub {
  background: rgba(247, 242, 232, 0.04);
  border-color: rgba(247, 242, 232, 0.22);
}

.quick-panel,
.floating-cta,
.conversion-strip,
.article-cta,
.contact-note,
.article-summary,
.instagram-box,
details,
.system-grid article,
.plan-card,
.guide-grid article,
.reason-grid article,
.seo-link-grid a,
.drink-card,
.bottle-card,
.shisha-card,
.shisha-feature article,
.address-panel,
.info-list div,
.success-panel {
  border-color: rgba(247, 242, 232, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012) 44%, rgba(123, 31, 45, 0.08)),
    rgba(27, 25, 22, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 24px 60px rgba(0, 0, 0, 0.2);
}

.quick-panel {
  backdrop-filter: blur(18px);
}

.floating-cta {
  overflow: hidden;
  border-color: rgba(213, 185, 121, 0.28);
}

.statement {
  border-color: rgba(213, 185, 121, 0.2);
  background:
    linear-gradient(90deg, rgba(123, 31, 45, 0.34), rgba(17, 16, 14, 0.96) 35%, rgba(213, 185, 121, 0.08)),
    #0d0d0c;
}

.statement p {
  padding: 20px 12px;
  border-right-color: rgba(213, 185, 121, 0.16);
  color: rgba(247, 242, 232, 0.88);
}

.section {
  padding-top: clamp(82px, 10vw, 132px);
  padding-bottom: clamp(82px, 10vw, 132px);
}

.section::before {
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 1px), rgba(213,185,121,0.045) calc(100% - 1px) 100%) 0 0 / 18vw 100%;
}

.section-head {
  margin-bottom: clamp(36px, 5vw, 58px);
}

h2 {
  letter-spacing: 0;
}

.plans-section,
.guide-section,
.intent-section,
.seo-pages-section,
.faq-section {
  background:
    linear-gradient(180deg, rgba(64, 19, 28, 0.12), transparent 34%),
    #151412;
}

.space-section,
.drink-section,
.shisha-section,
.contact-section {
  background:
    linear-gradient(180deg, rgba(213, 185, 121, 0.035), transparent 42%),
    #171511;
}

figure,
.drink-visual,
.shisha-visual,
.section-illustration,
.map-embed {
  border-color: rgba(213, 185, 121, 0.2);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.32);
}

figure img,
.drink-visual img,
.shisha-visual img,
.section-illustration {
  filter: contrast(1.07) brightness(0.9) saturate(0.92);
}

.plan-card.featured {
  background:
    linear-gradient(140deg, rgba(213, 185, 121, 0.2), rgba(255, 255, 255, 0.035) 36%, rgba(123, 31, 45, 0.16)),
    #12100e;
}

.reason-grid article,
.seo-link-grid a,
.plan-card,
.guide-grid article,
details {
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.reason-grid article:hover,
.seo-link-grid a:hover,
.plan-card:hover,
.guide-grid article:hover,
details:hover {
  transform: translateY(-3px);
  border-color: rgba(213, 185, 121, 0.42);
}

.seo-link-grid a {
  min-height: 190px;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

input,
select,
textarea {
  border-radius: 6px;
  border-color: rgba(247, 242, 232, 0.22);
  background: rgba(7, 7, 7, 0.48);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(213, 185, 121, 0.72);
  box-shadow: 0 0 0 3px rgba(213, 185, 121, 0.12);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    margin: 0;
    border-width: 0 0 1px;
    border-radius: 0;
    background: rgba(10, 10, 9, 0.78);
  }

  .hero,
  .sub-hero {
    min-height: 850px;
  }

  .hero-content,
  .sub-hero-content {
    padding-top: 116px;
  }

  .statement p {
    text-align: left;
    padding-left: 20px;
  }

  .seo-link-grid a {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  body::before {
    background-size: 33vw 100%, 100% 16vh;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero,
  .sub-hero {
    min-height: 830px;
  }

  .hero-content,
  .sub-hero-content {
    padding-top: 112px;
  }

  .hero-lead {
    font-size: 16px;
    width: 100%;
    max-width: min(100%, 336px);
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .contact-hero p:not(.eyebrow) {
    width: 100%;
    max-width: min(100%, 336px);
  }

  .button {
    min-height: 52px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
