:root {
  --dz-bg: #0b0c0e;
  --dz-panel: #14171a;
  --dz-card: #1b1e22;
  --dz-text: #f2f2f2;
  --dz-muted: #a5a9ad;
  --dz-accent: #8c959f;
  --dz-light: #f3f3f1;
  --dz-line: rgba(255, 255, 255, 0.12);
  --dz-line-strong: rgba(255, 255, 255, 0.22);
  --dz-max: 1160px;
  --dz-narrow: 820px;
  --dz-header: 76px;
  --dz-font-jp: "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif CJK JP", serif;
  --dz-font-ui: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --dz-font-en: var(--dz-font-jp);
}

html {
  scroll-behavior: smooth;
}

body.datezume-theme {
  margin: 0;
  background: var(--dz-bg);
  color: var(--dz-text);
  font-family: var(--dz-font-jp);
  font-weight: 500;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
  line-break: strict;
  word-break: auto-phrase;
  overflow-x: hidden;
}

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

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

@media (max-width: 782px) {
  body.admin-bar .dz-header {
    top: 46px;
  }
}

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

.datezume-theme img,
.datezume-theme iframe {
  max-width: 100%;
}

.datezume-theme img {
  height: auto;
  display: block;
}

.datezume-theme a {
  color: inherit;
  text-decoration: none;
}

.dz-skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100000;
  transform: translateY(-160%);
  background: var(--dz-light);
  color: #111;
  padding: 10px 14px;
}

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

.dz-container {
  width: min(calc(100% - 48px), var(--dz-max));
  margin-inline: auto;
}

.dz-container--narrow {
  width: min(calc(100% - 48px), var(--dz-narrow));
}

.dz-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9000;
  min-height: var(--dz-header);
  color: var(--dz-text);
  background: linear-gradient(to bottom, rgba(11, 12, 14, 0.72), rgba(11, 12, 14, 0));
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, min-height 240ms ease;
}

.dz-header.is-scrolled,
.dz-menu-open .dz-header {
  background: rgba(11, 12, 14, 0.94);
  border-bottom-color: var(--dz-line);
  backdrop-filter: blur(16px);
}

.dz-header__inner {
  width: min(calc(100% - 40px), 1280px);
  min-height: var(--dz-header);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dz-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 7px;
  flex: 0 0 56px;
  background: rgba(243, 243, 241, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(0, 0, 0, 0.14) inset;
  backdrop-filter: blur(10px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.dz-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dz-logo:hover,
.dz-logo:focus-visible {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(0, 0, 0, 0.16) inset;
  transform: translateY(-1px);
}

.dz-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.4vw, 24px);
  font-size: 14px;
  font-weight: 500;
  color: rgba(242, 242, 242, 0.86);
}

.dz-header__nav a:not(.dz-button) {
  position: relative;
  padding-block: 8px;
}

.dz-header__nav a:not(.dz-button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--dz-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.dz-header__nav a:hover::after,
.dz-header__nav a:focus-visible::after {
  transform: scaleX(1);
}

.dz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  color: var(--dz-text);
  background: linear-gradient(145deg, #30363d, #1c2025);
  border: 1px solid var(--dz-line-strong);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.dz-button--small {
  min-height: 38px;
  padding: 10px 16px;
  font-size: 13px;
}

.dz-button:hover,
.dz-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 242, 242, 0.48);
  background: linear-gradient(145deg, #3c444c, #22272d);
}

.dz-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--dz-muted);
  border-bottom: 1px solid var(--dz-line-strong);
  font-size: 14px;
  font-weight: 500;
}

.dz-text-link:hover,
.dz-text-link:focus-visible {
  color: var(--dz-text);
  border-bottom-color: var(--dz-text);
}

.dz-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--dz-line);
  color: var(--dz-text);
  border-radius: 4px;
}

.dz-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

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

.dz-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.dz-mobile-menu {
  position: fixed;
  inset: var(--dz-header) 0 0;
  z-index: 8999;
  background: rgba(11, 12, 14, 0.78);
}

body.admin-bar .dz-mobile-menu {
  top: calc(var(--dz-header) + 32px);
}

.dz-mobile-menu__panel {
  margin-left: auto;
  width: min(100%, 430px);
  min-height: 100%;
  padding: 28px 26px 40px;
  background: #0e1012;
  border-left: 1px solid var(--dz-line);
  display: grid;
  align-content: start;
  gap: 4px;
}

.dz-mobile-menu__panel a:not(.dz-button) {
  padding: 18px 4px;
  border-bottom: 1px solid var(--dz-line);
  color: var(--dz-text);
  font-size: 16px;
}

.dz-site {
  background: var(--dz-bg);
  color: var(--dz-text);
  min-height: 100vh;
}

.dz-site > :where(section, .wp-block-html, .wp-block-group, .wp-block-cover, .alignfull, .alignwide) {
  width: 100%;
  max-width: none;
  margin-block: 0;
}

.dz-site > .wp-block-html {
  margin-inline: 0;
}

.dz-site .wp-block-group,
.dz-site .wp-block-cover,
.dz-site .wp-block-buttons,
.dz-site .wp-block-image {
  box-sizing: border-box;
}

.dz-site .wp-block-buttons {
  gap: 14px 22px;
}

.dz-site .wp-block-button {
  margin: 0;
}

.dz-hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image: var(--dz-hero-image);
  background-size: cover;
  background-position: center;
}

.dz-hero.wp-block-cover {
  padding: 0;
  color: var(--dz-text);
}

.dz-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: dzHeroZoom 14s ease-out both;
}

.dz-hero.wp-block-cover::before {
  display: none;
}

.dz-hero.wp-block-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 7, 8, 0.96), rgba(11, 12, 14, 0.76) 46%, rgba(11, 12, 14, 0.34) 74%, rgba(11, 12, 14, 0.18)),
    radial-gradient(circle at 24% 48%, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0) 46%),
    linear-gradient(0deg, rgba(11, 12, 14, 0.94), rgba(11, 12, 14, 0.12) 46%);
}

.dz-hero.wp-block-cover .wp-block-cover__image-background {
  transform: scale(1.04);
  animation: dzHeroZoom 14s ease-out both;
}

.dz-hero.wp-block-cover .wp-block-cover__background {
  opacity: 0;
}

.dz-hero.wp-block-cover .wp-block-cover__inner-container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.dz-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 7, 8, 0.96), rgba(11, 12, 14, 0.76) 46%, rgba(11, 12, 14, 0.34) 74%, rgba(11, 12, 14, 0.18)),
    radial-gradient(circle at 24% 48%, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0) 46%),
    linear-gradient(0deg, rgba(11, 12, 14, 0.94), rgba(11, 12, 14, 0.12) 46%);
}

.dz-hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 56px), var(--dz-max));
  margin-inline: auto;
  padding-top: calc(var(--dz-header) + 48px);
  padding-bottom: 96px;
}

.dz-hero__kicker,
.dz-section-heading__eyebrow {
  margin: 0 0 18px;
  color: var(--dz-accent);
  font-family: var(--dz-font-ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dz-hero h1 {
  width: min(1160px, 100%);
  margin: 0;
  font-size: clamp(40px, 5.1vw, 72px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0.015em;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.72), 0 1px 2px rgba(0, 0, 0, 0.88);
}

.dz-hero h1 .dz-line {
  display: block;
}

.dz-phrase {
  display: inline-block;
}

.dz-hero__lead {
  width: min(660px, 100%);
  margin: 28px 0 0;
  color: rgba(242, 242, 242, 0.9);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 2.05;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.78);
}

.dz-hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.dz-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: fit-content;
  color: rgba(242, 242, 242, 0.72);
  font-family: var(--dz-font-ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  animation: dzScrollFloat 2.2s ease-in-out infinite;
}

.dz-scroll-cue span {
  display: block;
  writing-mode: vertical-rl;
}

.dz-scroll-cue::before {
  content: "";
  display: block;
  width: 8px;
  height: 58px;
  margin-bottom: 3px;
  border-left: 1px solid rgba(242, 242, 242, 0.64);
  border-bottom: 2px solid rgba(242, 242, 242, 0.64);
  transform: skewY(-58deg);
}

.dz-scroll-cue::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(242, 242, 242, 0), rgba(242, 242, 242, 0.9), rgba(242, 242, 242, 0));
  animation: dzScrollTrace 1.7s ease-in-out infinite;
}

.dz-section {
  padding: clamp(72px, 9vw, 132px) 0;
  background: var(--dz-bg);
}

.dz-section > .dz-container,
.dz-section > .wp-block-group__inner-container > .dz-container {
  width: min(calc(100% - 48px), var(--dz-max));
  margin-inline: auto;
}

.dz-section--panel {
  background: var(--dz-panel);
}

.dz-section-heading {
  width: min(720px, 100%);
  margin-bottom: clamp(34px, 5vw, 64px);
}

.dz-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.dz-section-heading h2,
.dz-value h2,
.dz-reservation h2,
.dz-page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: 0.012em;
  text-wrap: balance;
}

.dz-section-heading p:not(.dz-section-heading__eyebrow),
.dz-copy,
.dz-reservation p,
.dz-page-hero p {
  color: var(--dz-muted);
  font-size: 16px;
  line-height: 2.05;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.dz-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(40px, 7vw, 94px);
}

.dz-split > *,
.dz-reason-grid > *,
.dz-voice-grid > *,
.dz-value__inner > *,
.dz-access__grid > * {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.dz-copy p {
  margin: 0 0 22px;
}

.dz-image-panel {
  margin: 0;
  border: 1px solid var(--dz-line);
  background: var(--dz-card);
  overflow: hidden;
}

.dz-image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.08);
}

.dz-reason-grid,
.dz-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.dz-reason-grid--expanded {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.dz-reason-grid--expanded article {
  grid-column: span 2;
}

.dz-reason-grid--expanded article:nth-child(4) {
  grid-column: 2 / span 2;
}

.dz-reason-grid--expanded article:nth-child(5) {
  grid-column: 4 / span 2;
}

.dz-reason-grid article,
.dz-reason-grid > .wp-block-group,
.dz-voice-grid > .wp-block-group,
.dz-voice-card {
  background: linear-gradient(145deg, rgba(31, 35, 40, 0.94), rgba(17, 20, 23, 0.98));
  border: 1px solid var(--dz-line);
}

.dz-voice-card {
  min-height: 300px;
  padding: clamp(26px, 3.4vw, 38px);
}

.dz-voice-grid--archive {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.dz-voice-grid--archive .dz-voice-card {
  min-height: 260px;
}

.dz-voice-card__label {
  width: fit-content;
  margin: 0 0 16px;
  padding: 6px 10px;
  color: var(--dz-accent);
  border: 1px solid var(--dz-line);
  border-radius: 999px;
  font-family: var(--dz-font-ui);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.dz-reason-grid article {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 3.8vw, 46px);
  overflow: hidden;
  isolation: isolate;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.dz-reason-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 22% 18%, rgba(140, 149, 159, 0.22), rgba(140, 149, 159, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  opacity: 0.72;
}

.dz-reason-grid article::after {
  content: "";
  position: absolute;
  left: clamp(28px, 3.8vw, 46px);
  right: clamp(28px, 3.8vw, 46px);
  top: clamp(28px, 3.8vw, 46px);
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 242, 242, 0.38), rgba(242, 242, 242, 0));
}

.dz-reason-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 242, 242, 0.26);
  background: linear-gradient(145deg, rgba(38, 43, 49, 0.96), rgba(18, 21, 24, 0.98));
}

.dz-reason-grid article > span,
.dz-reason-grid > .wp-block-group > p:first-child,
.dz-steps span {
  color: var(--dz-accent);
  font-family: var(--dz-font-ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.dz-reason-grid .dz-reason-card__number {
  position: absolute;
  top: clamp(30px, 4vw, 48px);
  left: clamp(28px, 3.8vw, 46px);
  color: rgba(242, 242, 242, 0.1);
  font-family: var(--dz-font-jp);
  font-size: clamp(72px, 8vw, 118px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0;
  pointer-events: none;
}

.dz-reason-card__body {
  position: relative;
  z-index: 1;
}

.dz-reason-grid h3,
.dz-menu-card h3,
.dz-voice-card h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.36;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.dz-reason-grid p,
.dz-reason-grid > .wp-block-group > p,
.dz-menu-card__text,
.dz-menu-card__note,
.dz-voice-card__text,
.dz-steps p,
.dz-prep-box p {
  color: var(--dz-muted);
  font-size: 15.5px;
  line-height: 2.05;
}

.dz-menu-list {
  display: grid;
  gap: 28px;
}

.dz-menu-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  background: var(--dz-card);
  border: 1px solid var(--dz-line);
  border-radius: 8px;
  overflow: hidden;
}

.dz-menu-card figure {
  margin: 0;
}

.dz-menu-card img {
  width: 100%;
  aspect-ratio: 6 / 4;
  object-fit: cover;
  border-radius: 8px;
}

.dz-menu-card__meta {
  color: var(--dz-accent);
  font-family: var(--dz-font-ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.dz-menu-card__price {
  margin: 18px 0 0;
  color: var(--dz-text);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dz-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.dz-menu-grid .dz-menu-card {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(31, 35, 40, 0.96), rgba(15, 18, 21, 0.98)),
    var(--dz-card);
  border: 1px solid var(--dz-line);
  border-radius: 8px;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.dz-menu-grid .dz-menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 242, 242, 0.26);
  background:
    linear-gradient(145deg, rgba(38, 43, 49, 0.97), rgba(17, 20, 23, 0.98)),
    var(--dz-card);
}

.dz-menu-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111418;
  border-bottom: 1px solid var(--dz-line);
  border-radius: 8px 8px 0 0;
}

.dz-menu-card .dz-menu-card__image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  filter: saturate(0.86) contrast(1.06);
  transition: transform 420ms ease, filter 420ms ease;
}

.dz-menu-card__media:hover .dz-menu-card__image,
.dz-menu-card__media:focus-visible .dz-menu-card__image {
  transform: scale(1.035);
  filter: saturate(0.94) contrast(1.08);
}

.dz-menu-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 176px;
  display: grid;
  place-items: center;
  color: rgba(242, 242, 242, 0.28);
  background:
    linear-gradient(135deg, rgba(41, 47, 54, 0.96), rgba(14, 16, 19, 0.98)),
    #111418;
}

.dz-menu-card__placeholder span {
  font-family: var(--dz-font-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.dz-menu-card__body {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2.2vw, 24px);
}

.dz-menu-card__category {
  min-height: 1.35em;
  margin: 0 0 9px;
  color: var(--dz-accent);
  font-family: var(--dz-font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.dz-menu-grid .dz-menu-card h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.38;
  min-height: 3.8em;
}

.dz-menu-card__description {
  position: relative;
  min-height: calc(14px * 1.8 * 3 + 29px);
}

.dz-menu-card__text {
  margin: 0;
  min-height: calc(14px * 1.8 * 3);
  max-height: calc(14px * 1.8 * 3);
  overflow: hidden;
  color: var(--dz-muted);
  font-size: 14px;
  line-height: 1.8;
  transition: max-height 320ms ease;
}

.dz-menu-card__text p,
.dz-menu-card__text ul {
  margin: 0 0 0.78em;
}

.dz-menu-card__text p:last-child,
.dz-menu-card__text ul:last-child {
  margin-bottom: 0;
}

.dz-menu-card__text h3 {
  margin: 1.15em 0 0.55em;
  color: var(--dz-text);
  font-size: 15px;
  line-height: 1.65;
}

.dz-menu-grid .dz-menu-card .dz-menu-card__text h3 {
  min-height: 0;
}

.dz-menu-card__text ul {
  padding-left: 1.15em;
}

.dz-menu-card__text li + li {
  margin-top: 0.25em;
}

.dz-menu-card__description:not(.is-expanded):not(.is-static)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 2.6em;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(19, 22, 26, 0), rgba(19, 22, 26, 0.98));
}

.dz-menu-card__description.is-expanded .dz-menu-card__text {
  max-height: var(--dz-menu-description-expanded, 44rem);
}

.dz-menu-card__readmore {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 29px;
  margin-top: 6px;
  padding: 0;
  color: rgba(242, 242, 242, 0.82);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(242, 242, 242, 0.26);
  border-radius: 0;
  font-family: var(--dz-font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.dz-menu-card__readmore:hover,
.dz-menu-card__readmore:focus-visible {
  color: #ffffff;
  border-color: rgba(242, 242, 242, 0.64);
  transform: translateY(-1px);
}

.dz-menu-card__readmore[hidden] {
  display: none;
}

.dz-menu-grid .dz-menu-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--dz-line);
  font-size: 12px;
}

.dz-menu-grid .dz-menu-card__price {
  margin: 0;
  flex: 0 0 auto;
  font-size: 19px;
}

.dz-menu-card__link {
  width: fit-content;
  margin-top: auto;
  padding-top: 16px;
  min-height: 36px;
  font-size: 13px;
}

.dz-menu-section__actions {
  margin-top: clamp(30px, 4vw, 46px);
  display: flex;
  justify-content: center;
}

.dz-case-section {
  background:
    linear-gradient(180deg, rgba(18, 21, 24, 0.98), rgba(10, 12, 14, 1)),
    var(--dz-bg);
}

.dz-case-section .dz-section-heading {
  max-width: 780px;
}

.dz-case-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  padding: clamp(16px, 2.8vw, 30px);
  background: rgba(23, 27, 31, 0.72);
  border: 1px solid var(--dz-line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.dz-case-figure {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  background: #111418;
  border: 1px solid rgba(242, 242, 242, 0.1);
}

.dz-case-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.dz-case-figure__label {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  min-width: 86px;
  padding: 8px 12px;
  color: var(--dz-text);
  background: rgba(10, 12, 14, 0.78);
  border: 1px solid rgba(242, 242, 242, 0.16);
  border-radius: 999px;
  font-family: var(--dz-font-ui);
  font-size: 12px;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.dz-case-showcase__arrow {
  width: clamp(34px, 4vw, 52px);
  height: clamp(34px, 4vw, 52px);
  display: grid;
  place-items: center;
  color: var(--dz-text);
  background: rgba(242, 242, 242, 0.06);
  border: 1px solid rgba(242, 242, 242, 0.14);
  border-radius: 50%;
  font-family: var(--dz-font-ui);
  font-size: clamp(18px, 2vw, 24px);
}

.dz-case-note {
  margin: 18px 0 0;
  color: var(--dz-muted);
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}

.dz-case-section__actions {
  margin-top: clamp(28px, 4vw, 42px);
  display: flex;
  justify-content: center;
}

.dz-case-featured-list {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.dz-case-archive,
.dz-case-detail {
  background: var(--dz-bg);
}

.dz-case-archive-grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.dz-case-card {
  padding: clamp(18px, 3vw, 30px);
  background: rgba(23, 27, 31, 0.72);
  border: 1px solid var(--dz-line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.dz-case-card__link {
  display: block;
  max-width: 760px;
  margin: 0 auto clamp(24px, 3.4vw, 34px);
  text-align: center;
}

.dz-case-card__link h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.35;
}

.dz-case-card__link h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 500;
  line-height: 1.35;
}

.dz-case-card__link p {
  margin: 0;
  color: var(--dz-muted);
  line-height: 1.9;
}

.dz-case-card__meta {
  margin: 0 0 10px;
  color: var(--dz-accent);
  font-family: var(--dz-font-ui);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dz-case-detail .dz-case-showcase {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.dz-case-detail__body {
  max-width: 820px;
  margin: 0 auto;
}

.dz-case-detail__actions {
  margin-top: clamp(28px, 4vw, 42px);
  display: flex;
  justify-content: center;
}

.dz-menu-archive {
  background: var(--dz-bg);
}

.dz-menu-category + .dz-menu-category {
  margin-top: clamp(42px, 6vw, 70px);
}

.dz-menu-category__heading {
  margin-bottom: clamp(20px, 3vw, 30px);
}

.dz-menu-category__heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.35;
}

.dz-menu-detail {
  background: var(--dz-bg);
}

.dz-menu-detail__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.dz-menu-detail__media {
  position: sticky;
  top: calc(var(--dz-header) + 28px);
  margin: 0;
  min-height: 420px;
  background: var(--dz-card);
  border: 1px solid var(--dz-line);
  border-radius: 8px;
  overflow: hidden;
}

.dz-menu-detail__media .dz-menu-card__image,
.dz-menu-detail__media .dz-menu-card__placeholder {
  min-height: 420px;
  aspect-ratio: 4 / 5;
}

.dz-menu-detail__content {
  min-width: 0;
}

.dz-menu-detail__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: clamp(26px, 3vw, 34px);
  background: var(--dz-line);
  border: 1px solid var(--dz-line);
}

.dz-menu-detail__summary div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--dz-card);
}

.dz-menu-detail__summary span {
  color: var(--dz-accent);
  font-family: var(--dz-font-ui);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.dz-menu-detail__summary strong {
  color: var(--dz-text);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.35;
}

.dz-menu-detail__lead {
  margin: 0 0 clamp(24px, 3vw, 34px);
  color: var(--dz-text);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.9;
  text-wrap: pretty;
}

.dz-menu-detail__body {
  padding-top: clamp(22px, 3vw, 32px);
  border-top: 1px solid var(--dz-line);
}

.dz-menu-detail__note {
  margin: clamp(22px, 3vw, 32px) 0 0;
  padding: 18px 20px;
  color: var(--dz-muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--dz-line);
  line-height: 1.9;
}

.dz-menu-detail__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: clamp(30px, 4vw, 46px);
}

.dz-prep-box {
  padding: clamp(28px, 5vw, 52px);
  background: var(--dz-card);
  border: 1px solid var(--dz-line);
}

.dz-prep-box--compact {
  max-width: 720px;
  margin-inline: auto;
}

.dz-prep-box ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--dz-line);
  border: 1px solid var(--dz-line);
}

.dz-prep-box li {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: #15181c;
  color: var(--dz-muted);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.dz-value {
  background: var(--dz-light);
  color: #151719;
}

.dz-value .dz-section-heading__eyebrow,
.dz-value .dz-copy {
  color: #596068;
}

.dz-value__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
}

.dz-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  background: transparent;
  border: 0;
}

.dz-steps--reassurance {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.dz-steps--reassurance li {
  grid-column: span 2;
}

.dz-steps--reassurance li:nth-child(4) {
  grid-column: 2 / span 2;
}

.dz-steps--reassurance li:nth-child(5) {
  grid-column: 4 / span 2;
}

.dz-steps li {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 3.4vw, 42px);
  background:
    linear-gradient(0deg, rgba(8, 10, 12, 0.82) 0%, rgba(8, 10, 12, 0.46) 42%, rgba(8, 10, 12, 0) 72%),
    linear-gradient(150deg, rgba(41, 47, 54, 0.96), rgba(18, 21, 24, 0.99)),
    var(--dz-card);
  border: 1px solid var(--dz-line);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.dz-steps li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 16%, rgba(140, 149, 159, 0.2), rgba(140, 149, 159, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0));
}

.dz-steps li::after {
  content: "";
  position: absolute;
  left: clamp(30px, 3.4vw, 42px);
  right: clamp(30px, 3.4vw, 42px);
  top: clamp(30px, 3.4vw, 42px);
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 242, 242, 0.38), rgba(242, 242, 242, 0));
}

.dz-steps li:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 242, 242, 0.26);
  background:
    linear-gradient(0deg, rgba(8, 10, 12, 0.84) 0%, rgba(8, 10, 12, 0.48) 42%, rgba(8, 10, 12, 0) 72%),
    linear-gradient(150deg, rgba(44, 50, 57, 0.96), rgba(19, 22, 25, 0.98)),
    var(--dz-card);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.dz-steps li > span {
  position: absolute;
  top: clamp(46px, 4.2vw, 58px);
  left: clamp(30px, 3.4vw, 42px);
  color: rgba(242, 242, 242, 0.18);
  font-family: var(--dz-font-jp);
  font-size: clamp(82px, 8.5vw, 118px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
  pointer-events: none;
}

.dz-steps li > span::after {
  content: none;
}

.dz-steps strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 0 18px;
  color: var(--dz-text);
  font-size: clamp(24px, 2vw, 29px);
  font-weight: 500;
  line-height: 1.38;
}

.dz-steps p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.dz-beginner-visual {
  margin: 0 auto clamp(28px, 4vw, 44px);
  max-width: 1040px;
  aspect-ratio: 5 / 2;
  overflow: hidden;
  border: 1px solid var(--dz-line);
  background: var(--dz-card);
}

.dz-beginner-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.92) contrast(1.04);
}

.dz-beginner-cta {
  margin-top: clamp(28px, 4vw, 42px);
  padding: clamp(24px, 4vw, 42px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(145deg, rgba(36, 41, 47, 0.92), rgba(15, 18, 21, 0.96)),
    var(--dz-card);
  border: 1px solid var(--dz-line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.dz-beginner-cta p {
  max-width: 700px;
  margin: 0;
  color: var(--dz-text);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.9;
  text-wrap: pretty;
}

.dz-voice-card figure {
  width: 54px;
  height: 54px;
  margin: 0 0 22px;
  border-radius: 50%;
  overflow: hidden;
}

.dz-voice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dz-voice-card__stars {
  color: var(--dz-accent);
  letter-spacing: 0.08em;
}

.dz-voice-card__meta {
  color: var(--dz-muted);
  font-size: 13px;
}

.dz-voice-card__text p {
  margin: 0 0 1em;
}

.dz-voice-card__text p:last-child {
  margin-bottom: 0;
}

.dz-instagram__frame {
  min-height: 180px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--dz-card);
  border: 1px solid var(--dz-line);
}

.dz-instagram-section {
  background: var(--dz-bg);
}

.dz-instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 22px);
}

.dz-instagram-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--dz-line);
  border-radius: 8px;
  background: var(--dz-card);
}

.dz-instagram-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 12, 14, 0), rgba(11, 12, 14, 0.18));
  opacity: 0;
  transition: opacity 240ms ease;
}

.dz-instagram-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.dz-instagram-card:hover img,
.dz-instagram-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.03);
}

.dz-instagram-card:hover::after,
.dz-instagram-card:focus-visible::after {
  opacity: 1;
}

.dz-instagram-action {
  margin-top: clamp(28px, 4vw, 42px);
  display: flex;
  justify-content: center;
}

.dz-section-actions {
  margin-top: clamp(28px, 4vw, 44px);
  display: flex;
  justify-content: center;
}

.dz-pagination {
  margin-top: clamp(32px, 5vw, 54px);
  font-family: var(--dz-font-ui);
}

.dz-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dz-pagination a,
.dz-pagination span {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  color: var(--dz-text);
  text-decoration: none;
  border: 1px solid var(--dz-line);
  background: rgba(23, 27, 31, 0.72);
}

.dz-pagination .current,
.dz-pagination a:hover,
.dz-pagination a:focus-visible {
  color: var(--dz-bg);
  background: var(--dz-text);
  border-color: var(--dz-text);
}

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

.dz-faq-item {
  border-bottom: 1px solid var(--dz-line);
}

.dz-faq-item summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
}

.dz-faq-item summary::-webkit-details-marker {
  display: none;
}

.dz-faq-item summary span {
  flex: 0 0 auto;
  color: var(--dz-accent);
  font-family: var(--dz-font-ui);
  font-weight: 500;
  font-size: 18px;
}

.dz-faq-item summary::after {
  content: "+";
  margin-left: auto;
  color: var(--dz-accent);
  font-size: 22px;
}

.dz-faq-item[open] summary::after {
  content: "-";
}

.dz-faq-item__answer {
  padding: 0 0 26px 42px;
  color: var(--dz-muted);
  line-height: 2;
}

.dz-faq-item > p {
  margin: 0;
  padding: 0 0 26px 42px;
  color: var(--dz-muted);
  line-height: 2;
}

.dz-reservation {
  background:
    linear-gradient(90deg, rgba(11, 12, 14, 0.92), rgba(20, 23, 26, 0.72)),
    var(--dz-card);
}

.dz-reservation__inner {
  width: min(calc(100% - 48px), var(--dz-max));
  margin-inline: auto;
  padding: clamp(36px, 7vw, 72px);
  border: 1px solid var(--dz-line);
  background: linear-gradient(145deg, rgba(27, 30, 34, 0.92), rgba(20, 23, 26, 0.72));
}

.dz-reservation p:not(.dz-section-heading__eyebrow) {
  max-width: 660px;
}

.dz-access {
  background: var(--dz-panel);
}

.dz-access__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: stretch;
}

.dz-access__info,
.dz-access__map {
  background: var(--dz-card);
  border: 1px solid var(--dz-line);
}

.dz-access__info {
  padding: clamp(24px, 4vw, 42px);
}

.dz-access dl {
  margin: 0 0 28px;
}

.dz-access__rows {
  margin: 0 0 28px;
}

.dz-access dl div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--dz-line);
}

.dz-access__row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--dz-line);
}

.dz-access__row p {
  margin: 0;
}

.dz-access dt {
  color: var(--dz-accent);
  font-size: 13px;
}

.dz-access__term {
  color: var(--dz-accent);
  font-size: 13px;
}

.dz-access dd {
  margin: 0;
  color: var(--dz-text);
  line-height: 1.8;
}

.dz-access__value {
  color: var(--dz-text);
  line-height: 1.8;
}

.dz-access__map {
  min-height: 420px;
  overflow: hidden;
  background: #101316;
}

.dz-access__map > * {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
}

.dz-map-embed {
  min-height: 420px;
}

.dz-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: none;
}

.dz-page-hero {
  padding: calc(var(--dz-header) + 72px) 0 72px;
  background: linear-gradient(135deg, #0b0c0e, #171b1f);
  border-bottom: 1px solid var(--dz-line);
}

.dz-page-hero h1 {
  max-width: 820px;
}

.dz-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  color: var(--dz-muted);
  font-size: 13px;
}

.dz-page-content {
  padding-block: clamp(48px, 7vw, 88px);
}

.dz-entry-content {
  color: var(--dz-muted);
  line-height: 2;
}

.dz-entry-content h2,
.dz-entry-content h3 {
  color: var(--dz-text);
  line-height: 1.45;
  font-weight: 500;
}

.dz-entry-content a {
  border-bottom: 1px solid var(--dz-accent);
}

.dz-privacy-policy {
  background:
    linear-gradient(180deg, rgba(20, 23, 26, 0.92), rgba(11, 12, 14, 1) 32%),
    var(--dz-bg);
}

.dz-policy-content {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
}

.dz-policy-content > * {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.dz-policy-lead,
.dz-policy-date {
  color: var(--dz-muted);
  font-size: 16px;
  line-height: 2.05;
  text-wrap: pretty;
}

.dz-policy-date {
  margin-top: -8px;
  color: rgba(165, 169, 173, 0.76);
  font-family: var(--dz-font-ui);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.dz-policy-card {
  padding: clamp(26px, 4.5vw, 48px);
  background:
    linear-gradient(145deg, rgba(31, 35, 40, 0.94), rgba(16, 19, 22, 0.98)),
    var(--dz-card);
  border: 1px solid var(--dz-line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.dz-policy-card h2 {
  margin: 0 0 clamp(18px, 2.6vw, 28px);
  color: var(--dz-text);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.45;
  text-wrap: balance;
}

.dz-policy-card p,
.dz-policy-card li {
  color: var(--dz-muted);
  font-size: 15.5px;
  line-height: 2.05;
  text-wrap: pretty;
}

.dz-policy-card p {
  margin: 0 0 18px;
}

.dz-policy-card p:last-child,
.dz-policy-card ul:last-child {
  margin-bottom: 0;
}

.dz-policy-card a {
  color: var(--dz-text);
  border-bottom: 1px solid var(--dz-accent);
}

.dz-policy-card ul:not(.dz-policy-info) {
  margin: 18px 0 0;
  padding-left: 1.25em;
}

.dz-policy-card ul:not(.dz-policy-info) li + li {
  margin-top: 8px;
}

.dz-policy-info {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--dz-line);
}

.dz-policy-info li {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px);
  padding: 18px 0;
  border-bottom: 1px solid var(--dz-line);
}

.dz-policy-info strong {
  color: var(--dz-accent);
  font-family: var(--dz-font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.dz-policy-info span {
  color: var(--dz-text);
  line-height: 1.9;
}

.dz-404 {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--dz-header) + clamp(70px, 8vw, 108px)) 0 clamp(78px, 10vw, 132px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 243, 241, 1)),
    var(--dz-light);
  color: #111315;
  overflow: hidden;
  isolation: isolate;
}

.dz-404::before,
.dz-404::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(calc(100% - 48px), 860px);
  height: 1px;
  background: linear-gradient(90deg, rgba(17, 19, 21, 0), rgba(17, 19, 21, 0.14), rgba(17, 19, 21, 0));
  transform: translateX(-50%);
  pointer-events: none;
}

.dz-404::before {
  top: calc(var(--dz-header) + 54px);
}

.dz-404::after {
  bottom: clamp(42px, 6vw, 76px);
}

.dz-404__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 920px);
  margin-inline: auto;
  text-align: center;
}

.dz-404__number {
  margin: 0 0 clamp(18px, 3vw, 28px);
  color: rgba(17, 19, 21, 0.055);
  font-family: var(--dz-font-jp);
  font-size: clamp(104px, 22vw, 268px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: 0;
  white-space: nowrap;
  user-select: none;
}

.dz-404__eyebrow {
  margin: 0 0 18px;
  color: #596068;
  font-family: var(--dz-font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.dz-404 h1 {
  width: min(760px, 100%);
  margin: 0 auto;
  color: #111315;
  font-size: clamp(29px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.012em;
  overflow-wrap: anywhere;
  word-break: auto-phrase;
  line-break: strict;
  text-wrap: balance;
}

.dz-404__copy {
  width: min(700px, 100%);
  margin: clamp(24px, 3.4vw, 34px) auto 0;
  color: #596068;
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 2.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: auto-phrase;
  line-break: strict;
  text-wrap: pretty;
}

.dz-404__copy p {
  margin: 0;
}

.dz-404__copy p + p {
  margin-top: 8px;
}

.dz-404__actions {
  width: min(760px, 100%);
  margin: clamp(34px, 5vw, 52px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dz-404__button {
  min-width: 0;
  width: 100%;
  min-height: 52px;
  padding-inline: 16px;
  white-space: normal;
}

body.datezume-theme .dz-404 .dz-404__button {
  color: var(--dz-text);
}

.dz-404__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: clamp(20px, 3vw, 28px);
  padding: 0 4px;
  color: #596068;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.24);
  border-radius: 0;
  font-family: var(--dz-font-jp);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.dz-404__back:hover,
.dz-404__back:focus-visible {
  color: #111315;
  border-bottom-color: #111315;
  transform: translateY(-1px);
}

.wp-block-button.dz-button,
.wp-block-button.dz-text-link {
  display: inline-flex;
  background: transparent;
  border: 0;
  padding: 0;
}

.wp-block-button.dz-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  color: var(--dz-text);
  background: linear-gradient(145deg, #30363d, #1c2025);
  border: 1px solid var(--dz-line-strong);
  border-radius: 4px;
  font-family: var(--dz-font-jp);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.wp-block-button.dz-button .wp-block-button__link:hover,
.wp-block-button.dz-button .wp-block-button__link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 242, 242, 0.48);
  background: linear-gradient(145deg, #3c444c, #22272d);
}

.wp-block-button.dz-text-link .wp-block-button__link {
  min-height: 44px;
  padding: 0;
  color: var(--dz-muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--dz-line-strong);
  border-radius: 0;
  font-family: var(--dz-font-jp);
  font-size: 14px;
}

.wp-block-button.dz-text-link .wp-block-button__link:hover,
.wp-block-button.dz-text-link .wp-block-button__link:focus-visible {
  color: var(--dz-text);
  border-bottom-color: var(--dz-text);
}

.dz-footer {
  background: #08090a;
  border-top: 1px solid var(--dz-line);
  color: var(--dz-muted);
  padding: 56px 0 28px;
}

.dz-footer__inner {
  width: min(calc(100% - 48px), var(--dz-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr) minmax(220px, 0.8fr);
  gap: clamp(30px, 5vw, 70px);
}

.dz-logo--footer {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
}

.dz-footer__brand p,
.dz-footer__info p {
  line-height: 1.9;
}

.dz-footer__nav {
  display: grid;
  gap: 12px;
}

.dz-footer a:hover,
.dz-footer a:focus-visible {
  color: var(--dz-text);
}

.dz-footer__copy {
  width: min(calc(100% - 48px), var(--dz-max));
  margin: 42px auto 0;
  color: rgba(165, 169, 173, 0.7);
  font-size: 12px;
}

.dz-fixed-cta {
  position: fixed;
  right: clamp(28px, 3.2vw, 46px);
  bottom: clamp(38px, 5vw, 72px);
  z-index: 8900;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 15px 20px 15px 17px;
  background: rgba(31, 34, 38, 0.96);
  color: var(--dz-text);
  border: 1px solid rgba(242, 242, 242, 0.15);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  font-family: var(--dz-font-ui);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.dz-fixed-cta:hover,
.dz-fixed-cta:focus-visible {
  color: var(--dz-text);
  background: rgba(39, 43, 48, 0.98);
  border-color: rgba(242, 242, 242, 0.23);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.dz-fixed-cta__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  color: rgba(242, 242, 242, 0.82);
  border: 1px solid rgba(242, 242, 242, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.dz-fixed-cta__icon svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dz-fixed-cta__text {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.dz-fixed-cta__main {
  display: block;
  font-size: 15px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.dz-fixed-cta__sub {
  display: block;
  color: rgba(242, 242, 242, 0.58);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

body.error404 .dz-fixed-cta {
  display: none;
}

[data-dz-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

:focus-visible {
  outline: 2px solid rgba(242, 242, 242, 0.72);
  outline-offset: 4px;
}

@keyframes dzHeroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes dzScrollFloat {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 12px);
  }
}

@keyframes dzScrollTrace {
  0% {
    opacity: 0;
    transform: translateY(-18px) scaleY(0.45);
  }
  35% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
  100% {
    opacity: 0;
    transform: translateY(22px) scaleY(0.35);
  }
}

@keyframes dzFadeLift {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .dz-header__nav {
    display: none;
  }

  .dz-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 900px) {
  .dz-split,
  .dz-value__inner,
  .dz-access__grid {
    grid-template-columns: 1fr;
  }

  .dz-reason-grid,
  .dz-voice-grid {
    grid-template-columns: 1fr;
  }

  .dz-voice-grid--archive {
    grid-template-columns: 1fr;
  }

  .dz-reason-grid--expanded article,
  .dz-reason-grid--expanded article:nth-child(4),
  .dz-reason-grid--expanded article:nth-child(5),
  .dz-steps--reassurance li,
  .dz-steps--reassurance li:nth-child(4),
  .dz-steps--reassurance li:nth-child(5) {
    grid-column: auto;
  }

  .dz-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dz-instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dz-access__map {
    min-height: 360px;
  }

  .dz-map-embed,
  .dz-access__map iframe {
    min-height: 360px;
  }

  .dz-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dz-case-showcase {
    grid-template-columns: 1fr;
  }

  .dz-case-showcase__arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

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

  .dz-menu-detail__media {
    position: relative;
    top: auto;
  }

  .dz-404__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --dz-header: 68px;
  }

  .dz-container,
  .dz-container--narrow,
  .dz-section > .dz-container,
  .dz-footer__inner,
  .dz-footer__copy {
    width: min(calc(100% - 40px), var(--dz-max));
  }

  body.admin-bar .dz-mobile-menu {
    top: calc(var(--dz-header) + 46px);
  }

  .dz-header__inner {
    width: min(calc(100% - 28px), 1280px);
  }

  .dz-hero {
    min-height: 88svh;
    background-position: 42% center;
  }

  .dz-hero__content {
    width: min(calc(100% - 40px), var(--dz-max));
    padding-bottom: 78px;
  }

  .dz-hero h1 {
    font-size: clamp(35px, 9vw, 42px);
  }

  .dz-hero__lead {
    line-height: 1.85;
  }

  .dz-scroll-cue {
    bottom: 22px;
  }

  .dz-section {
    padding: 72px 0;
  }

  .dz-section-heading {
    margin-bottom: 34px;
  }

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

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

  .dz-case-showcase {
    padding: 14px;
  }

  .dz-case-figure__label {
    left: 14px;
    top: 14px;
  }

  .dz-menu-card__text {
    min-height: calc(14px * 1.8 * 3);
  }

  .dz-menu-detail__media,
  .dz-menu-detail__media .dz-menu-card__image,
  .dz-menu-detail__media .dz-menu-card__placeholder {
    min-height: 300px;
  }

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

  .dz-reason-grid article {
    min-height: 260px;
  }

  .dz-reason-grid .dz-reason-card__number {
    font-size: clamp(64px, 18vw, 88px);
  }

  .dz-prep-box ul,
  .dz-steps {
    grid-template-columns: 1fr;
  }

  .dz-steps li {
    min-height: 250px;
  }

  .dz-beginner-visual {
    aspect-ratio: 4 / 3;
  }

  .dz-steps li > span {
    font-size: clamp(76px, 22vw, 96px);
  }

  .dz-instagram-grid .dz-instagram-card:nth-child(n+5) {
    display: none;
  }

  .dz-beginner-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .dz-beginner-cta .dz-button {
    width: 100%;
  }

  .dz-policy-info li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .dz-access dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .dz-footer__inner {
    grid-template-columns: 1fr;
  }

  .dz-fixed-cta {
    left: 22px;
    right: 22px;
    bottom: 24px;
    min-height: 68px;
    padding: 13px 16px;
    border-radius: 17px;
    gap: 12px;
  }

  .dz-fixed-cta__icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 11px;
  }

  .dz-fixed-cta__main {
    font-size: 14px;
  }

  .dz-fixed-cta__sub {
    font-size: 10px;
  }

  .dz-404 {
    min-height: 88svh;
    padding-top: calc(var(--dz-header) + 58px);
  }

  .dz-404__inner {
    width: min(calc(100% - 40px), 920px);
  }

  .dz-404__number {
    font-size: clamp(96px, 30vw, 148px);
  }
}

@media (max-width: 430px) {
  .dz-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .dz-hero__actions .dz-button,
  .dz-hero__actions .dz-text-link {
    width: 100%;
  }

  .dz-mobile-menu__panel {
    width: 100%;
    border-left: 0;
  }

  .dz-faq-item__answer {
    padding-left: 0;
  }

  .dz-404__actions {
    grid-template-columns: 1fr;
  }

  .dz-404__button {
    min-height: 54px;
  }
}

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

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

  [data-dz-reveal] {
    opacity: 1;
    transform: none;
  }
}
