@charset "utf-8";

/* =========================================================
   AILE MEN'S ESTHETIC — Design tokens
   Palette : deep ink / turquoise blue
   Type    : Zen Old Mincho (display JP) / Zen Kaku Gothic New (body)
             Roboto Mono (labels, numbers)
   ========================================================= */
:root {
  --ink:        #FFFFFF;   /* page background / light surfaces */
  --ink-2:      #F1F7F7;   /* alt surface */
  --ink-3:      #E5F0F1;   /* deeper surface */
  --line:       rgba(9, 66, 74, .14);
  --turq:       #0FA9A0;   /* accent, deepened for white bg */
  --turq-blue:  #1391AE;
  --turq-deep:  #0A7E8C;
  --white:      #0C2A31;   /* main text (name kept for compatibility) */
  --muted:      #5C777E;
  --paper:      #06202A;   /* dark accent band */
  --on-turq:    #04232B;   /* text on turquoise fills */

  --shell: min(1180px, 90vw);
  --ease: cubic-bezier(.16, .84, .34, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--turq); color: #fff; }

:focus-visible {
  outline: 2px solid var(--turq);
  outline-offset: 3px;
}

/* ---------- Utility type ---------- */
.mono {
  font-family: "Roboto Mono", monospace;
  font-weight: 300;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--turq);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--turq);
}
.mincho {
  font-family: "Zen Old Mincho", "Yu Mincho", serif;
  font-weight: 600;
}

.shell { width: var(--shell); margin-inline: auto; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(16px, 4vw, 44px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0));
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 34px; height: 34px;
  border: 1px solid var(--turq);
  display: grid; place-items: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  color: var(--turq);
  transform: rotate(45deg);
}
.brand-mark span { transform: rotate(-45deg); }
.brand-name { line-height: 1.25; }
.brand-name b {
  display: block;
  font-family: "Roboto Mono", monospace;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .22em;
}
.brand-name small {
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--muted);
  font-family: "Roboto Mono", monospace;
}

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav a {
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--white);
  position: relative;
  padding-block: 6px;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--turq);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--turq); }

.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--turq);
  color: var(--on-turq);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.btn-reserve:hover { background: #4FE7DC; transform: translateY(-2px); }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--line);
  color: var(--white);
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px;
  width: 18px; height: 1px;
  background: var(--white);
  transition: transform .35s var(--ease), opacity .2s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 20%, rgba(33, 212, 200, .20), transparent 58%),
    radial-gradient(90% 70% at 15% 90%, rgba(23, 168, 198, .16), transparent 60%),
    linear-gradient(160deg, #FFFFFF 0%, #F1F7F7 55%, #E7F3F3 100%);
}
.hero::after { /* fine grid */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 20%, transparent 100%);
  opacity: .5;
  pointer-events: none;
}
.hero-figure {
  position: absolute;
  right: -6vw; top: 50%;
  translate: 0 -50%;
  width: min(720px, 62vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 200deg, rgba(33, 212, 200, .55), rgba(10, 126, 140, .1) 40%, rgba(23, 168, 198, .45) 70%, rgba(33, 212, 200, .55));
  filter: blur(58px);
  opacity: .55;
  animation: drift 16s ease-in-out infinite alternate;
}
.hero-rings {
  position: absolute;
  right: 2vw; top: 50%;
  translate: 0 -50%;
  width: min(560px, 52vw);
  aspect-ratio: 1;
  pointer-events: none;
}
.hero-rings i {
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.hero-rings i:nth-child(2) { inset: 12%; border-color: rgba(33, 212, 200, .3); }
.hero-rings i:nth-child(3) { inset: 26%; border-style: dashed; }
.hero-rings i:nth-child(4) {
  inset: 40%;
  border-color: transparent;
  border-top-color: var(--turq);
  animation: spin 9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes drift { to { translate: -4% -52%; scale: 1.06; } }

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero-copy { max-width: 640px; }
.hero-catch {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(38px, 6.4vw, 82px);
  line-height: 1.24;
  letter-spacing: .04em;
  margin: 22px 0 26px;
}
.hero-catch em {
  font-style: normal;
  color: var(--turq);
  position: relative;
}
.hero-catch .line { display: block; overflow: hidden; }
.hero-catch .line > span {
  display: block;
  transform: translateY(105%);
  animation: rise 1.1s var(--ease) forwards;
}
.hero-catch .line:nth-child(2) > span { animation-delay: .12s; }
.hero-catch .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes rise { to { transform: translateY(0); } }

.hero-lead {
  color: var(--muted);
  font-size: 15px;
  max-width: 30em;
  opacity: 0;
  animation: fade .9s var(--ease) .5s forwards;
}
@keyframes fade { to { opacity: 1; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  opacity: 0;
  animation: fade .9s var(--ease) .65s forwards;
}
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  border: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: .12em;
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.btn-line:hover { border-color: var(--turq); color: var(--turq); background: rgba(33, 212, 200, .06); }
.btn-line .arrow { transition: transform .3s var(--ease); }
.btn-line:hover .arrow { transform: translateX(5px); }

.hero-side {
  writing-mode: vertical-rl;
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 6px;
}
.hero-side .bar { width: 1px; height: 80px; background: linear-gradient(var(--turq), transparent); }

/* Page hero (lower pages) */
.page-hero {
  position: relative;
  padding: 190px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(90% 120% at 85% 0%, rgba(33, 212, 200, .18), transparent 55%),
    linear-gradient(180deg, #FFFFFF, #F1F7F7);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.3;
  margin: 18px 0 0;
  font-weight: 700;
}
.page-hero .en {
  position: absolute;
  right: 4vw; bottom: -14px;
  font-family: "Roboto Mono", monospace;
  font-size: clamp(46px, 10vw, 130px);
  letter-spacing: .06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(33, 212, 200, .22);
  pointer-events: none;
  white-space: nowrap;
}
.crumb {
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--muted);
  margin-top: 22px;
}
.crumb a:hover { color: var(--turq); }

/* =========================================================
   Sections
   ========================================================= */
.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.section--alt { background: linear-gradient(180deg, var(--ink), #EEF6F6 45%, var(--ink)); }
.section--light { background: var(--paper); color: #EAF5F5; }
.section--light .lead, .section--light .muted { color: #93B4BA; }
.section--light .card { background: rgba(255, 255, 255, .05); border-color: rgba(120, 200, 205, .18); }

.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.45;
  margin: 16px 0 0;
}
.section-head .lead { color: var(--muted); margin-top: 18px; max-width: 46em; font-size: 15px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

/* Cards / menu */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.card {
  position: relative;
  padding: 34px 28px 30px;
  background: rgba(9, 66, 74, .035);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--turq), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(33, 212, 200, .4); background: rgba(33, 212, 200, .05); }
.card:hover::before { transform: scaleX(1); }
.card h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  margin: 14px 0 10px;
  font-weight: 600;
}
.card p { color: var(--muted); font-size: 14px; margin: 0; }
.card .num {
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--turq);
}

/* Menu list */
.menu-list { border-top: 1px solid var(--line); }
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: baseline;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease), padding-left .35s var(--ease);
}
.menu-row:hover { background: rgba(33, 212, 200, .05); padding-left: 18px; }
.menu-row h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}
.menu-row .desc { display: block; color: var(--muted); font-size: 13px; font-family: "Zen Kaku Gothic New", sans-serif; margin-top: 6px; }
.menu-row .time, .menu-row .price {
  font-family: "Roboto Mono", monospace;
  letter-spacing: .1em;
  white-space: nowrap;
}
.menu-row .time { color: var(--muted); font-size: 12px; }
.menu-row .price { color: var(--turq); font-size: 16px; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step .idx {
  font-family: "Roboto Mono", monospace;
  font-size: 13px;
  color: var(--turq);
  letter-spacing: .2em;
}
.step h4 { margin: 0 0 8px; font-size: 18px; font-family: "Zen Old Mincho", serif; font-weight: 600; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--ink); padding: 34px 26px; }
.stat b {
  display: block;
  font-family: "Roboto Mono", monospace;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--turq);
  font-weight: 500;
  line-height: 1;
}
.stat span { display: block; margin-top: 12px; font-size: 12px; color: var(--muted); letter-spacing: .12em; }

/* Table */
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 20px 4px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 15px; }
.table th {
  width: 190px;
  font-weight: 500;
  color: var(--turq);
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  letter-spacing: .16em;
  padding-top: 24px;
}
.table td { color: var(--white); }

/* Ribbon CTA */
.cta {
  position: relative;
  padding: clamp(70px, 9vw, 110px) 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(80% 140% at 50% 0%, rgba(33, 212, 200, .22), transparent 60%),
    linear-gradient(180deg, #ECF6F6, #FFFFFF);
  border-top: 1px solid var(--line);
}
.cta h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(24px, 3.4vw, 40px);
  margin: 18px 0 14px;
  font-weight: 700;
}
.cta p { color: var(--muted); margin: 0 auto 34px; max-width: 34em; font-size: 14px; }
.cta .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer {
  padding: 70px 0 30px;
  background: #F1F7F7;
  border-top: 1px solid var(--line);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot-grid h5 {
  margin: 0 0 18px;
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--turq);
  text-transform: uppercase;
}
.foot-grid ul { list-style: none; margin: 0; padding: 0; }
.foot-grid li { margin-bottom: 10px; font-size: 14px; }
.foot-grid a:hover { color: var(--turq); }
.foot-note {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: "Roboto Mono", monospace;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--muted);
}
.foot-desc { color: var(--muted); font-size: 13px; margin: 16px 0 0; max-width: 26em; }

/* Form */
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.field .req { color: var(--turq); font-size: 10px; letter-spacing: .1em; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 15px 16px;
  background: rgba(9, 66, 74, .035);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--turq);
  background: rgba(33, 212, 200, .06);
}
.field select option { background: var(--ink-2); }
.form-note { font-size: 12px; color: var(--muted); }
.btn-submit {
  justify-self: start;
  padding: 17px 44px;
  border: none;
  background: var(--turq);
  color: var(--on-turq);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .16em;
  cursor: pointer;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.btn-submit:hover { background: #4FE7DC; transform: translateY(-2px); }

.contact-aside { border-left: 1px solid var(--line); padding-left: clamp(20px, 3vw, 40px); }
.contact-aside .big {
  font-family: "Roboto Mono", monospace;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--turq);
  letter-spacing: .04em;
  display: block;
  margin: 6px 0 4px;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .hero-side { display: none; }
}

@media (max-width: 860px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform .55s var(--ease);
    z-index: 90;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { font-size: 18px; font-family: "Zen Old Mincho", serif; }
  .site-header .btn-reserve { display: none; }
  .nav .btn-reserve { display: inline-flex; }

  .split, .grid-3, .grid-2, .stats { grid-template-columns: 1fr; }
  .stats { gap: 1px; }
  .hero { align-items: center; padding-top: 120px; }
  .hero-figure { right: -30vw; opacity: .4; }
  .hero-rings { display: none; }
  .menu-row { grid-template-columns: 1fr; gap: 6px; }
  .menu-row .price { font-size: 18px; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .foot-grid { grid-template-columns: 1fr; }
  .contact-aside { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 34px; margin-top: 20px; }
  .table th { width: 130px; font-size: 11px; }
  .table th, .table td { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-catch .line > span { transform: none; }
  .hero-lead, .hero-actions { opacity: 1; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Photography
   写真は「ターコイズ寄りのデュオトーン + 暗部」で統一。
   素材の色味がバラついてもサイト全体のトーンが崩れない。
   ========================================================= */
.media {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  isolation: isolate;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(.30) contrast(1.05) brightness(.96);
  transform: scale(1.001);
  transition: transform 1.4s var(--ease), filter 1s var(--ease);
}
/* duotone tint */
.media::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(150deg, rgba(33, 212, 200, .38), rgba(23, 168, 198, .10) 55%, rgba(4, 20, 26, .55));
  mix-blend-mode: soft-light;
  pointer-events: none;
}
/* readability shade */
.media::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(4, 20, 26, .10), rgba(4, 20, 26, .60));
  pointer-events: none;
}
.media:hover img { transform: scale(1.06); filter: grayscale(.08) contrast(1.03) brightness(1); }

.media--16x9 { aspect-ratio: 16 / 9; }
.media--4x3  { aspect-ratio: 4 / 3; }
.media--portrait { aspect-ratio: 4 / 5; }

.media-cap {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 3;
  font-family: "Roboto Mono", monospace;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--white);
}
.media-cap::before {
  content: "";
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--turq);
  margin-right: 10px;
  vertical-align: middle;
}

/* ---- Hero photo layer ---- */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("img/hero.jpg");
  background-size: cover;
  background-position: 60% center;
  filter: grayscale(.35) contrast(1.03) brightness(.98);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .74) 44%, rgba(255, 255, 255, .28) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, 0) 55%);
}
.hero-shade--turq {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(90% 80% at 78% 30%, rgba(33, 212, 200, .30), transparent 62%);
  mix-blend-mode: screen;
}
.hero .hero-figure { z-index: 1; opacity: .30; }
.hero .hero-rings { z-index: 2; opacity: .8; }

/* ---- Page hero with photo ---- */
.page-hero--photo { background: var(--ink); }
.page-hero--photo .page-hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(.35) contrast(1.03) brightness(.96);
}
.page-hero--photo .page-hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .60) 60%, rgba(255, 255, 255, .30)),
    radial-gradient(80% 90% at 85% 20%, rgba(33, 212, 200, .28), transparent 60%);
}
.page-hero--photo .shell, .page-hero--photo .en { position: relative; z-index: 2; }

/* ---- Photo card (menu) ---- */
.card-photo {
  display: block;
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.card-photo:hover { transform: translateY(-6px); border-color: rgba(33, 212, 200, .45); }
.card-photo .media { aspect-ratio: 16 / 10; }
.card-photo .card-body { padding: 30px 30px 34px; background: rgba(9, 66, 74, .035); }
.card-photo h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 25px;
  font-weight: 600;
  margin: 12px 0 10px;
}
.card-photo p { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
.card-photo .num { font-family: "Roboto Mono", monospace; font-size: 12px; letter-spacing: .2em; color: var(--turq); }

/* ---- Gallery (treatment scenes) ---- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery .media { aspect-ratio: 4 / 5; border: 1px solid var(--line); }
.gallery .media:nth-child(2) { margin-top: 42px; }
.gallery .media:nth-child(3) { margin-top: 84px; }

/* ---- Side-by-side photo + text ---- */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: center; }
.media-split .media { aspect-ratio: 4 / 3; border: 1px solid var(--line); }

@media (max-width: 860px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .media:nth-child(2) { margin-top: 32px; }
  .gallery .media:nth-child(3) { margin-top: 0; }
  .media-split { grid-template-columns: 1fr; }
  .hero-photo { background-position: 68% center; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, .95) 8%, rgba(255, 255, 255, .55) 60%, rgba(255, 255, 255, .30) 100%);
  }
}

/* ---- Contact form: honeypot + consent ---- */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.7;
}
.consent input {
  width: 18px; height: 18px;
  margin-top: 3px;
  accent-color: var(--turq);
  flex: 0 0 auto;
  cursor: pointer;
}
.consent .req { color: var(--turq); font-size: 10px; letter-spacing: .1em; margin-left: 8px; }
.field-error { color: #d64545; font-size: 12px; margin-top: 4px; }
.input-invalid { border-color: #d64545 !important; }

/* =========================================================
   Legal pages (privacy / tokushoho)
   ========================================================= */
.legal p { color: #33525A; font-size: 15px; line-height: 2; margin: 0 0 18px; }
.legal h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 19px;
  font-weight: 600;
  margin: 44px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.legal .table { margin: 8px 0 10px; }
.legal .table th { padding-top: 22px; vertical-align: top; }
.legal .table td { color: #23424A; line-height: 1.9; }
.legal .table a:hover { color: var(--turq); }
.legal-date {
  margin-top: 44px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: "Roboto Mono", monospace;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--muted) !important;
  text-align: right;
}
