:root {
  --font-sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", system-ui, sans-serif;
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --ink: #252019;
  --muted: #6f675d;
  --paper: #f8f0df;
  --white: #ffffff;
  --aqua: #d8e6dd;
  --teal: #366f64;
  --teal-dark: #203f39;
  --sun: #caa45d;
  --vermillion: #b6402f;
  --indigo: #20364a;
  --wood: #8d6139;
  --line: rgba(72, 54, 35, 0.18);
  --shadow: 0 24px 70px rgba(43, 33, 21, 0.16);
  --soft-shadow: 0 14px 32px rgba(43, 33, 21, 0.1);
  --lift-shadow: 0 24px 56px rgba(43, 33, 21, 0.18);
  --glass: rgba(255, 250, 238, 0.9);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --radius: 6px;
  --hero-visual-height: 88svh;
  --hero-image-position: center center;
  --anchor-offset: 68px;
  --section-gap: 42px;
  --boat-cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 21.5c5 2.2 16.5 2.2 23 0l-3.4 5.1c-4.8 1.2-12.7 1.1-16.2 0L4 21.5Z' fill='%23b66d3a' stroke='%23182c35' stroke-width='1.6' stroke-linejoin='round'/%3E%3Cpath d='M9 13h13.4l2.2 8.5H6.8L9 13Z' fill='%23d99a5c' stroke='%23182c35' stroke-width='1.6' stroke-linejoin='round'/%3E%3Cpath d='M11 8.5h9.4l3.1 4.5H8.7L11 8.5Z' fill='%23d7d2c4' stroke='%23182c35' stroke-width='1.6' stroke-linejoin='round'/%3E%3Cpath d='M11.5 15.2v5.1M15.4 15.2v5.1M19.3 15.2v5.1M8.4 18h15.9' stroke='%23182c35' stroke-width='1.2'/%3E%3C/svg%3E") 16 16;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
  scrollbar-gutter: stable;
  cursor: var(--boat-cursor), auto;
}

[id] {
  scroll-margin-top: var(--anchor-offset);
}

#top {
  scroll-margin-top: 0;
}

#experience,
#season,
#price,
#access,
#faq {
  scroll-margin-top: calc(var(--section-gap) + 8px - var(--anchor-offset));
}

#reservation {
  scroll-margin-top: calc(96px - var(--anchor-offset));
}

#contact {
  scroll-margin-top: calc(-16px - var(--anchor-offset));
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 100%, transparent 0 17px, rgba(141, 97, 57, 0.08) 18px 19px, transparent 20px) 0 0 / 52px 26px,
    radial-gradient(circle at 50% 100%, transparent 0 17px, rgba(54, 111, 100, 0.06) 18px 19px, transparent 20px) 26px 13px / 52px 26px,
    linear-gradient(90deg, rgba(141, 97, 57, 0.028) 1px, transparent 1px),
    linear-gradient(0deg, rgba(141, 97, 57, 0.026) 1px, transparent 1px),
    radial-gradient(ellipse at 16% 0%, rgba(202, 164, 93, 0.2), transparent 34%),
    radial-gradient(ellipse at 88% 18%, rgba(54, 111, 100, 0.13), transparent 32%),
    linear-gradient(180deg, #fffaf0 0%, #f3ebda 52%, #fff7e8 100%);
  background-size: 52px 26px, 52px 26px, 28px 28px, 28px 28px, auto, auto, auto;
  letter-spacing: 0;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  cursor: var(--boat-cursor), auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(182, 64, 47, 0.045) 25%, transparent 25%) 0 0 / 36px 36px,
    linear-gradient(225deg, rgba(182, 64, 47, 0.045) 25%, transparent 25%) 0 0 / 36px 36px,
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 13px),
    repeating-linear-gradient(25deg, rgba(72, 54, 35, 0.035) 0 1px, transparent 1px 21px);
  mix-blend-mode: multiply;
  opacity: 0.72;
}

body > * {
  position: relative;
  z-index: 1;
}

::selection {
  color: var(--ink);
  background: rgba(202, 164, 93, 0.48);
}

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

a {
  color: inherit;
  text-decoration: none;
  cursor: var(--boat-cursor), pointer;
}

button,
[role="button"] {
  cursor: var(--boat-cursor), pointer;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: hidden;
  background: var(--indigo);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.splash-screen img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--splash-image-height, var(--hero-visual-height));
  object-fit: cover;
  object-position: var(--splash-image-position, var(--hero-image-position));
  transform-origin: center center;
  animation: splashZoom 1800ms ease forwards;
}

.splash-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes splashZoom {
  from {
    transform: scale(1.18);
  }

  to {
    transform: scale(1);
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(95, 69, 42, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 251, 242, 0.96), rgba(247, 238, 218, 0.9)),
    repeating-linear-gradient(90deg, rgba(141, 97, 57, 0.08) 0 1px, transparent 1px 18px);
  box-shadow: 0 16px 42px rgba(43, 33, 21, 0.14), inset 0 -3px 0 rgba(182, 64, 47, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.04);
  transition: background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255, 251, 242, 0.98), rgba(246, 235, 214, 0.94));
  box-shadow: 0 14px 34px rgba(43, 33, 21, 0.18), inset 0 -3px 0 rgba(182, 64, 47, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 245, 228, 0.62);
  border-radius: 4px;
  color: var(--white);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(145deg, #c8533e 0%, var(--vermillion) 54%, #7d241d 100%);
  box-shadow: inset 0 -8px 16px rgba(89, 20, 16, 0.22), 0 8px 18px rgba(122, 43, 30, 0.22);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 900;
}

.brand-name,
.brand-sub {
  display: block;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-serif);
  font-weight: 900;
}

.brand-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(95, 69, 42, 0.2);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 238, 0.98), rgba(239, 223, 192, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 8px 16px rgba(95, 69, 42, 0.08);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(182, 64, 47, 0.42);
  color: #5f231b;
  background:
    linear-gradient(180deg, rgba(255, 244, 218, 0.98), rgba(230, 197, 137, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 22px rgba(95, 69, 42, 0.14);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  border-color: transparent;
  color: var(--white);
  background: linear-gradient(135deg, #c8533e, #8f261f);
  box-shadow: 0 10px 24px rgba(122, 43, 30, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, #b6402f, #76211a);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: var(--hero-visual-height);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px max(24px, calc((100vw - 1120px) / 2)) 118px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 22px;
  background:
    linear-gradient(90deg, rgba(182, 64, 47, 0.88), rgba(202, 164, 93, 0.82), rgba(32, 54, 74, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.26) 0 1px, transparent 1px 16px);
  background-blend-mode: multiply;
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero picture {
  z-index: -2;
}

.hero picture img {
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-image-position);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 247, 231, 0.98) 0%, rgba(255, 247, 231, 0.75) 36%, rgba(255, 247, 231, 0.12) 76%),
    linear-gradient(0deg, rgba(37, 32, 25, 0.26), transparent 44%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 18px);
}

.hero-content {
  position: relative;
  width: min(1040px, 100%);
  text-align: center;
}

.hero-content::before,
.hero-content::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-content::before {
  top: -28px;
  left: 50%;
  width: min(300px, 42vw);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(182, 64, 47, 0.82), transparent);
}

.hero-content::after {
  content: "屋形船さこや";
  right: max(8px, 3vw);
  bottom: 8px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 2px solid rgba(182, 64, 47, 0.78);
  border-radius: 50%;
  color: rgba(150, 44, 33, 0.92);
  background: rgba(255, 249, 236, 0.72);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.2;
  transform: rotate(-8deg);
  box-shadow: inset 0 0 0 5px rgba(182, 64, 47, 0.08), 0 10px 24px rgba(43, 33, 21, 0.1);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--vermillion);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

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

h1 {
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.98;
  font-weight: 900;
}

.hero-title {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.hero-title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.shima-glyphs {
  width: min(1080px, 96vw);
  max-height: clamp(255px, 36vw, 450px);
  height: auto;
  flex: 0 1 auto;
  object-fit: contain;
  filter:
    sepia(0.1)
    drop-shadow(0 12px 16px rgba(43, 33, 21, 0.2))
    drop-shadow(0 3px 0 rgba(255, 248, 232, 0.88));
}

.hero-title-text {
  display: block;
}

.hero-title-text {
  color: #211b15;
  font-size: clamp(2.3rem, 6vw, 5rem);
  font-weight: 900;
  text-shadow:
    -2px -2px 0 rgba(255, 248, 232, 0.92),
    2px -2px 0 rgba(255, 248, 232, 0.92),
    -2px 2px 0 rgba(255, 248, 232, 0.92),
    2px 2px 0 rgba(255, 248, 232, 0.92),
    0 8px 22px rgba(43, 33, 21, 0.18);
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.12;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: 1.22rem;
}

.hero-lead {
  max-width: min(880px, 100%);
  margin-inline: auto;
  padding: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 2;
  font-weight: 700;
  text-shadow:
    -1px -1px 0 rgba(255, 248, 232, 0.95),
    1px -1px 0 rgba(255, 248, 232, 0.95),
    -1px 1px 0 rgba(255, 248, 232, 0.95),
    1px 1px 0 rgba(255, 248, 232, 0.95),
    0 6px 18px rgba(43, 33, 21, 0.18);
}

.hero-lead-line {
  display: block;
}

.quick-info {
  width: min(1120px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 0.82fr 0.82fr 0.88fr 1.24fr 1.24fr;
  gap: 0;
  margin: -72px auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(95, 69, 42, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 248, 232, 0.74), rgba(255, 248, 232, 0.32)),
    url("assets/quick-info-underwater.png") center / cover no-repeat;
  box-shadow: var(--shadow), 0 0 0 5px rgba(255, 249, 236, 0.62) inset;
}

.quick-info div {
  position: relative;
  z-index: 2;
  min-height: 105px;
  padding: 22px;
  overflow: hidden;
  border-right: 1px solid rgba(95, 69, 42, 0.2);
  background: rgba(255, 249, 236, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), inset 4px 0 0 rgba(202, 164, 93, 0.14);
  isolation: isolate;
}

.quick-info strong,
.quick-info div > span {
  position: relative;
  z-index: 1;
  display: block;
}

.quick-info strong {
  margin-top: 8px;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.2;
  color: #211b15;
  text-shadow:
    -1px -1px 0 rgba(255, 248, 232, 0.9),
    1px -1px 0 rgba(255, 248, 232, 0.9),
    -1px 1px 0 rgba(255, 248, 232, 0.9),
    1px 1px 0 rgba(255, 248, 232, 0.9),
    0 6px 14px rgba(43, 33, 21, 0.14);
}

.quick-info div > span {
  color: #5f231b;
  font-size: 0.92rem;
  font-weight: 700;
  text-shadow:
    -1px -1px 0 rgba(255, 248, 232, 0.8),
    1px -1px 0 rgba(255, 248, 232, 0.8),
    -1px 1px 0 rgba(255, 248, 232, 0.8),
    1px 1px 0 rgba(255, 248, 232, 0.8);
}

.quick-info::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(37, 32, 25, 0.1)),
    repeating-linear-gradient(105deg, rgba(255, 249, 236, 0.24) 0 1px, transparent 1px 34px);
  opacity: 0.8;
  pointer-events: none;
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info-route .keep-line {
  display: inline-block;
  white-space: nowrap;
}

.quick-swimmer {
  position: absolute;
  z-index: 1;
  display: block;
  width: var(--swimmer-width, 92px);
  aspect-ratio: var(--swimmer-ratio, 3 / 1);
  background: var(--swimmer-image) center / contain no-repeat;
  opacity: var(--swimmer-opacity, 0.78);
  pointer-events: none;
  filter: sepia(0.1) drop-shadow(0 4px 5px rgba(43, 33, 21, 0.16));
  animation: swimRandom var(--swimmer-speed, 12s) linear infinite;
}

.quick-swimmer.ayu {
  --swimmer-image: url("assets/quick-ayu.png");
  --swimmer-ratio: 3.25 / 1;
}

.quick-swimmer.eel {
  --swimmer-image: url("assets/quick-eel.png");
  --swimmer-ratio: 5.1 / 1;
}

.quick-swimmer.eel-3 {
  --swimmer-image: url("assets/quick-eel-2.png");
}

.quick-swimmer.eel-4 {
  --swimmer-image: url("assets/quick-eel-3.png");
}

.quick-swimmer.eel-5 {
  --swimmer-image: url("assets/quick-eel-4.png");
}

.quick-swimmer.shrimp {
  --swimmer-image: url("assets/quick-shrimp.png");
  --swimmer-ratio: 2.35 / 1;
}

.ayu-1 {
  --swimmer-width: 140px;
  --swimmer-speed: 13.5s;
  top: 14px;
  left: -130px;
}

.ayu-2 {
  --swimmer-width: 100px;
  --swimmer-speed: 16.8s;
  top: 58px;
  left: -110px;
  animation-delay: -7.4s;
}

.ayu-3 {
  --swimmer-width: 120px;
  --swimmer-speed: 18.6s;
  top: 82px;
  left: -120px;
  animation-delay: -11.2s;
}

.eel-1 {
  --swimmer-width: 330px;
  --swimmer-speed: 22s;
  top: 36px;
  left: -170px;
  animation-delay: -4.6s;
  opacity: 0.64;
}

.eel-2 {
  --swimmer-width: 270px;
  --swimmer-speed: 26s;
  top: 76px;
  left: -150px;
  animation-delay: -17s;
  opacity: 0.52;
}

.eel-3 {
  --swimmer-width: 300px;
  --swimmer-speed: 24s;
  top: 8px;
  left: -210px;
  animation-delay: -9.5s;
  opacity: 0.5;
}

.eel-4 {
  --swimmer-width: 285px;
  --swimmer-speed: 28s;
  top: 52px;
  left: -190px;
  animation-delay: -21s;
  opacity: 0.46;
}

.eel-5 {
  --swimmer-width: 315px;
  --swimmer-speed: 31s;
  top: 88px;
  left: -230px;
  animation-delay: -13.4s;
  opacity: 0.44;
}

.shrimp-1 {
  --swimmer-width: 74px;
  --swimmer-speed: 15s;
  top: 20px;
  left: -80px;
  animation-delay: -3.2s;
  opacity: 0.7;
}

.shrimp-2 {
  --swimmer-width: 84px;
  --swimmer-speed: 19.4s;
  top: 70px;
  left: -90px;
  animation-delay: -9.8s;
  opacity: 0.62;
}

.shrimp-3 {
  --swimmer-width: 66px;
  --swimmer-speed: 17.2s;
  top: 48px;
  left: -70px;
  animation-delay: -14.8s;
  opacity: 0.58;
}

.reservation-sites {
  width: min(1120px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  margin: var(--section-gap) auto 0;
  padding: 22px;
  border: 1px solid rgba(95, 69, 42, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 238, 0.96), rgba(246, 235, 214, 0.9)),
    radial-gradient(circle at 100% 0, rgba(182, 64, 47, 0.12), transparent 28%),
    repeating-linear-gradient(90deg, rgba(141, 97, 57, 0.055) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow), inset 0 0 0 5px rgba(255, 249, 236, 0.5);
}

.reservation-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(95, 69, 42, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(32, 54, 74, 0.96), rgba(32, 63, 57, 0.9)),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  box-shadow: inset 5px 0 0 rgba(182, 64, 47, 0.5), 0 14px 30px rgba(43, 33, 21, 0.12);
}

.reservation-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.reservation-head .eyebrow {
  color: rgba(255, 255, 255, 0.78);
  text-shadow: none;
}

.reservation-head p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

.reservation-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.reservation-link {
  position: relative;
  display: grid;
  gap: 5px;
  align-content: center;
  min-height: 96px;
  padding: 18px 20px 18px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 245, 228, 0.36);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, #b6402f, #7d241d);
  box-shadow: 0 16px 30px rgba(89, 20, 16, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.reservation-link::after {
  content: "TEL";
  position: absolute;
  right: 16px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.14);
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.reservation-link span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.reservation-link strong {
  color: var(--white);
  font-size: clamp(1.22rem, 2.2vw, 1.72rem);
  line-height: 1.2;
}

.reservation-link:hover,
.reservation-link:focus-visible {
  border-color: rgba(255, 245, 228, 0.72);
  background: linear-gradient(135deg, #c8533e, #8f261f);
  box-shadow: 0 20px 40px rgba(89, 20, 16, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.reservation-link.phone {
  border-color: rgba(255, 245, 228, 0.38);
}

.reservation-link.phone strong {
  color: var(--white);
  font-size: clamp(1.12rem, 1.8vw, 1.48rem);
  white-space: nowrap;
}

.reservation-form-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(95, 69, 42, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 238, 0.98), rgba(247, 238, 218, 0.94)),
    linear-gradient(135deg, rgba(202, 164, 93, 0.09) 25%, transparent 25%) 0 0 / 32px 32px,
    linear-gradient(225deg, rgba(202, 164, 93, 0.08) 25%, transparent 25%) 0 0 / 32px 32px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.reservation-form-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(182, 64, 47, 0.16);
  pointer-events: none;
}

.reservation-form {
  position: relative;
  display: grid;
  gap: 18px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reservation-form-title {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.reservation-form-title span {
  color: var(--vermillion);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reservation-form-title strong {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.3;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
}

.form-grid label span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.form-grid input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(95, 69, 42, 0.28);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 253, 247, 0.95);
  box-shadow: inset 0 2px 4px rgba(43, 33, 21, 0.05);
  font: inherit;
}

.form-grid input:focus {
  border-color: rgba(182, 64, 47, 0.72);
  outline: 3px solid rgba(182, 64, 47, 0.14);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.form-submit {
  justify-self: start;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid rgba(255, 245, 228, 0.38);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, #c8533e, #8f261f),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 12px);
  box-shadow: 0 16px 30px rgba(89, 20, 16, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font: inherit;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-submit::after {
  content: "  >";
  letter-spacing: 0.08em;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: linear-gradient(135deg, #b6402f, #76211a);
  box-shadow: 0 20px 40px rgba(89, 20, 16, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.26);
  transform: translateY(-2px);
}

.form-status {
  min-height: 1.6em;
}

.form-status.is-error {
  color: var(--vermillion);
  font-weight: 900;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: var(--section-gap) 0 0;
}

.section-copy {
  max-width: 610px;
}

.section-copy p,
.section-head + p {
  color: var(--muted);
  line-height: 1.9;
}

.section-head,
.section-copy {
  position: relative;
}

.section-head::before,
.section-copy::before {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--vermillion), var(--sun));
}

.experience-options {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.intro .section-copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.intro .experience-options {
  flex: 1;
  min-height: 0;
}

.experience-options article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 18px;
  border: 1px solid rgba(95, 69, 42, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 238, 0.98), rgba(246, 235, 214, 0.88));
  box-shadow: 0 10px 26px rgba(43, 33, 21, 0.07), inset 4px 0 0 rgba(182, 64, 47, 0.12);
}

.experience-options span,
.experience-options strong {
  display: block;
}

.experience-options span {
  color: var(--vermillion);
  font-size: clamp(1.62rem, 2.7vw, 1.98rem);
  font-weight: 900;
  line-height: 1.16;
}

.experience-options strong {
  margin-top: 4px;
  color: var(--indigo);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.experience-options p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.experience-options ul {
  display: grid;
  gap: 4px;
  margin: 8px 0 0;
  padding-left: 1.25em;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: stretch;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bento-card,
.plan-card {
  border: 1px solid rgba(95, 69, 42, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 238, 0.96), rgba(246, 235, 214, 0.88));
  box-shadow: var(--soft-shadow);
}

.bento-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.bento-card:not(.image-card)::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--vermillion), var(--sun));
}

.bento-grid .bento-card:nth-child(5) {
  min-height: 100%;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card span {
  color: var(--vermillion);
  font-weight: 900;
}

.bento-card p {
  color: var(--muted);
  line-height: 1.8;
}

.bento-card.image-card {
  padding: 0;
}

.bento-card.image-card img {
  height: 100%;
  object-fit: cover;
  filter: sepia(0.06) saturate(0.95);
  transition: transform 900ms var(--ease-out), filter 900ms ease;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 18px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.plan-card.featured {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(32, 54, 74, 0.96), rgba(25, 43, 59, 1)),
    var(--indigo);
  transform: none;
  box-shadow: 0 18px 48px rgba(32, 54, 74, 0.24);
}

.plan-label {
  display: inline-flex;
  margin-bottom: 4px;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: #5f231b;
  background: linear-gradient(180deg, #fff4dc, #ead09a);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.2;
  font-weight: 900;
}

.plan-card.featured .plan-label {
  color: var(--ink);
  background: var(--sun);
}

.price {
  margin-bottom: 0;
  font-size: 1.9rem;
  font-weight: 900;
}

.price span {
  font-size: 0.9rem;
  font-weight: 700;
  color: inherit;
  opacity: 0.72;
}

.price-line {
  display: grid;
  gap: 3px;
  margin: 0;
}

.price-line span {
  color: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0.78;
}

.price-line strong {
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  line-height: 1.25;
  font-weight: 900;
}

.plan-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  color: inherit;
  font-size: 0.92rem;
  opacity: 0.82;
}

.plan-card .caution-text {
  color: var(--vermillion);
  font-weight: 900;
  opacity: 1;
}

.plan-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--vermillion);
  vertical-align: 2px;
}

.price-notice {
  margin-top: 20px;
  padding: 18px 22px;
  border: 2px solid rgba(182, 64, 47, 0.34);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 244, 212, 0.94), rgba(230, 197, 137, 0.42));
  box-shadow: 0 14px 34px rgba(122, 43, 30, 0.12);
}

.price-notice strong {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.price-notice strong span {
  color: var(--vermillion);
}

.cancel-policy {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid rgba(95, 69, 42, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 238, 0.96), rgba(246, 235, 214, 0.9));
  box-shadow: var(--soft-shadow);
}

.cancel-policy h3 {
  margin-bottom: 16px;
}

.cancel-policy dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.cancel-policy dl > div {
  display: grid;
  grid-template-columns: minmax(240px, 300px) auto;
  gap: 18px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 249, 236, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.cancel-policy dt {
  font-weight: 800;
}

.cancel-policy dd {
  margin: 0;
  color: var(--vermillion);
  font-size: 1.2rem;
  font-weight: 900;
  white-space: nowrap;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.map-panel {
  overflow: hidden;
  border: 1px solid rgba(95, 69, 42, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-panel {
  min-height: 430px;
  background: var(--paper);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.route-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: route;
}

.route-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 238, 0.94), rgba(246, 235, 214, 0.84));
  box-shadow: 0 10px 26px rgba(43, 33, 21, 0.07), inset 4px 0 0 rgba(202, 164, 93, 0.2);
}

.route-list span {
  color: var(--vermillion);
  font-weight: 900;
}

.cuisine-wrap {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
  align-items: stretch;
}

.season-visual,
.menu-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.season-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--indigo);
  border: 1px solid rgba(95, 69, 42, 0.24);
}

.season-visual img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: sepia(0.08) saturate(0.92);
  transition: opacity 900ms ease, transform 1100ms var(--ease-out), filter 900ms ease;
}

.season-visual img.is-active {
  opacity: 1;
}

.menu-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 250, 238, 0.96), rgba(246, 235, 214, 0.9));
  border: 1px solid rgba(95, 69, 42, 0.18);
}

.menu-panel .section-head {
  margin-bottom: 18px;
}

.menu-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.season-list {
  display: grid;
  gap: 10px;
}

.menu-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.menu-row span {
  color: var(--muted);
  font-weight: 700;
}

.menu-row strong {
  line-height: 1.45;
}

.menu-panel .menu-row {
  --season-bg: rgba(255, 249, 236, 0.52);
  --season-bg-active: rgba(234, 208, 154, 0.44);
  --season-border: rgba(95, 69, 42, 0.2);
  --season-border-active: rgba(182, 64, 47, 0.44);
  --season-chip: #ead09a;
  --season-chip-text: var(--teal-dark);
  grid-template-columns: 58px 1fr;
  gap: 14px;
  min-height: 70px;
  padding: 16px 18px;
  border: 1px solid var(--season-border);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--season-bg);
  text-align: left;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.season-list .menu-row:nth-child(1) {
  --season-bg: rgba(247, 219, 216, 0.5);
  --season-bg-active: rgba(235, 188, 184, 0.72);
  --season-border: rgba(182, 64, 47, 0.24);
  --season-border-active: rgba(182, 64, 47, 0.52);
  --season-chip: #efd0ca;
  --season-chip-text: #7d241d;
}

.season-list .menu-row:nth-child(2) {
  --season-bg: rgba(216, 230, 221, 0.5);
  --season-bg-active: rgba(171, 204, 190, 0.72);
  --season-border: rgba(54, 111, 100, 0.28);
  --season-border-active: rgba(54, 111, 100, 0.54);
  --season-chip: #c8ded1;
  --season-chip-text: #203f39;
}

.season-list .menu-row:nth-child(3) {
  --season-bg: rgba(234, 208, 154, 0.48);
  --season-bg-active: rgba(202, 164, 93, 0.62);
  --season-border: rgba(141, 97, 57, 0.32);
  --season-border-active: rgba(141, 97, 57, 0.6);
  --season-chip: #ead09a;
  --season-chip-text: #5a3c21;
}

.season-list .menu-row:nth-child(4) {
  --season-bg: rgba(226, 227, 220, 0.68);
  --season-bg-active: rgba(196, 203, 197, 0.82);
  --season-border: rgba(84, 92, 85, 0.28);
  --season-border-active: rgba(84, 92, 85, 0.58);
  --season-chip: #e2e3dc;
  --season-chip-text: #3f4b44;
}

.menu-panel .menu-row span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--season-chip-text);
  background: var(--season-chip);
  font-weight: 900;
}

.menu-panel .menu-row.is-active {
  border-color: var(--season-border-active);
  background: var(--season-bg-active);
  box-shadow: 0 12px 26px rgba(43, 33, 21, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transform: translateX(-4px);
}

.menu-panel .menu-row:hover,
.menu-panel .menu-row:focus-visible {
  border-color: var(--season-border-active);
  background: var(--season-bg-active);
}

.faq {
  max-width: 920px;
}

.accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 250, 238, 0.94);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.accordion button {
  width: 100%;
  padding: 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 250, 238, 0.96);
  text-align: left;
  font: inherit;
  font-weight: 900;
  cursor: var(--boat-cursor), pointer;
  transition: background 180ms ease, color 180ms ease;
}

.accordion button:hover,
.accordion button:focus-visible {
  color: var(--vermillion);
  background: rgba(234, 208, 154, 0.28);
}

.accordion button::after {
  content: "+";
  float: right;
  color: var(--vermillion);
}

.accordion button.is-open::after {
  content: "-";
}

.accordion div {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.8;
  border-bottom: 1px solid var(--line);
}

.accordion div.is-open {
  display: block;
}

.contact {
  width: min(1120px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  grid-template-areas:
    "head head"
    "social info";
  gap: 34px;
  align-items: start;
  margin: var(--section-gap) auto 0;
  padding: 42px;
  min-height: 0;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(32, 54, 74, 0.96), rgba(32, 63, 57, 0.88)),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px),
    url("assets/sakoya-hero.png") center / cover;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.82);
}

.operator-head {
  grid-area: head;
}

.operator-head h2 {
  margin-bottom: 16px;
}

.operator-head h2,
.operator-head .keep-line {
  white-space: nowrap;
}

.operator-head .keep-line {
  display: inline-block;
}

.operator-social {
  display: contents;
}

.social-windows {
  grid-area: social;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  height: 300px;
  min-height: 0;
}

.social-window {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 249, 236, 0.12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2), inset 4px 0 0 rgba(202, 164, 93, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(1.02);
}

.social-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 10px 12px 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 249, 236, 0.14);
}

.social-window-bar span {
  color: var(--white);
  font-weight: 900;
}

.social-window-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--sun);
  font-size: 0.86rem;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.social-window-bar a:hover,
.social-window-bar a:focus-visible {
  background: #ead09a;
  transform: translateY(-1px);
}

.social-window iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
}

.instagram-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-height: 0;
  flex: 1;
  padding: 18px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(145deg, #20364a 0%, #8f261f 48%, #caa45d 100%);
}

.instagram-card span {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 800;
}

.instagram-card strong {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.contact-form {
  grid-area: info;
  display: grid;
  align-content: stretch;
  gap: 8px;
  margin-top: 0;
  height: 300px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 249, 236, 0.14);
  box-shadow: inset 4px 0 0 rgba(182, 64, 47, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px) saturate(1.02);
}

.info-panel .menu-row {
  color: rgba(255, 255, 255, 0.92);
  border-top-color: rgba(255, 255, 255, 0.22);
}

.contact-form .menu-row {
  padding: 10px 0;
}

.info-panel .menu-row:first-child {
  border-top: 0;
}

.info-panel .menu-row span {
  color: rgba(255, 255, 255, 0.72);
}

.info-panel a {
  color: inherit;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 30px 0;
  color: var(--muted);
  text-align: center;
}

.footer p {
  margin: 0;
  font-weight: 900;
}

@media (prefers-reduced-motion: no-preference) {
  .shima-glyphs {
    animation: logoDrift 7200ms var(--ease-out) infinite;
  }

  .hero-title-text,
  .hero-lead {
    animation: heroRise 920ms var(--ease-out) both;
  }

  .hero-lead {
    animation-delay: 120ms;
  }

  .bento-card,
  .plan-card,
  .season-visual,
  .menu-panel {
    opacity: 0;
    transform: translateY(24px) scale(0.988);
    transition: opacity 640ms ease, transform 640ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
  }

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

  .bento-card.is-visible:hover,
  .plan-card.is-visible:hover {
    transform: translateY(-4px);
  }

  .bento-card.is-visible:hover,
  .plan-card.is-visible:hover {
    border-color: rgba(182, 64, 47, 0.24);
    box-shadow: var(--lift-shadow);
  }

  .bento-card.image-card:hover img,
  .season-visual:hover img.is-active {
    transform: scale(1.035);
    filter: sepia(0.04) saturate(1.02) contrast(1.02);
  }

  .menu-panel .menu-row:hover,
  .menu-panel .menu-row:focus-visible {
    transform: translateX(-4px);
    box-shadow: 0 12px 26px rgba(24, 44, 53, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  }
}

@keyframes logoDrift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes swimRandom {
  0% {
    transform: translateX(0) translateY(0) rotate(-2deg);
  }

  22% {
    transform: translateX(calc(25vw + 70px)) translateY(8px) rotate(3deg);
  }

  48% {
    transform: translateX(calc(52vw + 140px)) translateY(-6px) rotate(-1deg);
  }

  73% {
    transform: translateX(calc(78vw + 210px)) translateY(7px) rotate(4deg);
  }

  100% {
    transform: translateX(calc(1120px + 260px)) translateY(0) rotate(-2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash-screen,
  .splash-screen img {
    animation: none;
    transition: none;
  }
}

@media (min-width: 760px) {
  .hero-lead-line.keep-line {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  :root {
    --hero-visual-height: var(--stable-hero-height, 100svh);
    --anchor-offset: 64px;
    --section-gap: 36px;
  }

  .site-header {
    align-items: center;
  }

  #experience,
  #season,
  #price,
  #access,
  #faq {
    scroll-margin-top: calc(var(--section-gap) + 16px - var(--anchor-offset));
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: var(--radius);
    background: var(--indigo);
    cursor: var(--boat-cursor), pointer;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
  }

  .nav-toggle .nav-toggle-label {
    width: auto;
    height: auto;
    color: var(--white);
    background: transparent;
    font-size: 0.56rem;
    font-weight: 900;
    line-height: 1;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(255, 250, 238, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: var(--hero-visual-height);
    padding-top: 132px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 247, 231, 0.96) 0%, rgba(255, 247, 231, 0.82) 48%, rgba(255, 247, 231, 0.12) 100%),
      linear-gradient(0deg, rgba(37, 32, 25, 0.18), transparent 42%);
  }

  .hero-content::before,
  .hero-content::after {
    display: none;
  }

  .quick-info,
  .reservation-sites,
  .intro,
  .plan-grid,
  .split,
  .cuisine-wrap,
  .contact {
    grid-template-columns: 1fr;
  }

  .reservation-head {
    min-height: auto;
  }

  .contact {
    grid-template-areas:
      "head"
      "social"
      "info";
  }

  .operator-head h2 {
    white-space: normal;
  }

  .plan-card.featured {
    transform: none;
  }

  .contact {
    padding: 32px;
    min-height: 0;
  }

  .contact-form {
    height: auto;
    margin-top: 0;
  }

  .social-window iframe,
  .instagram-card {
    height: 300px;
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  :root {
    --section-gap: 30px;
  }

  #contact {
    scroll-margin-top: calc(88px - var(--anchor-offset));
  }

  .splash-screen {
    inset: 0 0 auto;
    height: var(--splash-image-height, var(--hero-visual-height));
  }

  .splash-screen img {
    height: 100%;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand-sub {
    display: none;
  }

  .hero {
    min-height: var(--hero-visual-height);
    align-items: start;
    padding-top: 60px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 30px;
  }

  .hero-title {
    gap: 2px;
  }

  .hero-title-line {
    margin-top: -8px;
  }

  .shima-glyphs {
    width: min(100%, 100vw);
    max-height: 218px;
  }

  .hero-title-text {
    font-size: clamp(1.62rem, 8.4vw, 2.45rem);
    white-space: nowrap;
  }

  .hero-lead {
    line-height: 1.85;
  }

  .quick-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-info-route {
    grid-column: span 2;
  }

  .quick-info div {
    min-height: 94px;
    padding: 18px;
  }

  .ayu-1 {
    --swimmer-width: 96px;
    top: 18px;
  }

  .ayu-2 {
    --swimmer-width: 86px;
    top: 124px;
  }

  .ayu-3 {
    --swimmer-width: 92px;
    top: 222px;
  }

  .eel-1 {
    --swimmer-width: 230px;
    top: 112px;
  }

  .eel-2 {
    --swimmer-width: 215px;
    top: 206px;
  }

  .eel-3 {
    --swimmer-width: 210px;
    top: 42px;
  }

  .eel-4 {
    --swimmer-width: 220px;
    top: 250px;
  }

  .eel-5 {
    --swimmer-width: 230px;
    top: 156px;
  }

  .shrimp-1 {
    top: 24px;
  }

  .shrimp-2 {
    top: 150px;
  }

  .shrimp-3 {
    top: 238px;
  }

  .reservation-sites {
    padding: 20px;
  }

  .reservation-head,
  .reservation-form-panel {
    padding: 20px;
  }

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

  .form-submit {
    width: 100%;
    justify-self: stretch;
  }

  .social-windows {
    grid-template-columns: 1fr;
    gap: 10px;
    height: auto;
    min-height: 0;
  }

  .social-window {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .social-window-bar {
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 249, 236, 0.14);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .social-window iframe,
  .instagram-card {
    display: none;
  }

  .section {
    padding: var(--section-gap) 0 0;
  }

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

  .bento-card.wide {
    grid-column: auto;
  }

  .season-visual {
    min-height: 280px;
  }

  .route-list li,
  .menu-row {
    grid-template-columns: 1fr;
  }

  .cancel-policy dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
  }

  .cancel-policy dd {
    white-space: normal;
  }

  .menu-panel {
    padding: 24px;
  }

  .menu-row {
    justify-items: start;
  }

  .contact {
    width: calc(100% - 16px);
    padding: 24px;
  }

  .footer {
    padding: 24px 0;
  }
}
