/* sakunami.online — Layout 12: Fullscreen Narrative Slides */
:root {
  --paper: #f3efe8;
  --paper-2: #ebe5db;
  --ink: #1a2a35;
  --tide: #2d5f6e;
  --tide-deep: #1e4552;
  --sakura: #c97b6a;
  --sakura-soft: #e8c4bb;
  --foam: #e4f0ee;
  --white: #faf9f7;
  --muted: #6a7a82;
  --font-serif: 'Zen Old Mincho', 'Hiragino Mincho ProN', serif;
  --font-sans: 'Outfit', 'Hiragino Sans', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dock-h: 4.25rem;
  --rail-w: 3rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--tide); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sakura); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; }
em { font-style: normal; color: var(--sakura); }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 0.5rem 1rem; background: var(--ink); color: var(--white);
}
.skip-link:focus { left: 0; }

.sn-micro {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-sans);
}
.sn-display {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.sn-display--page { font-size: clamp(2rem, 5vw, 3.2rem); }
.sn-display--sm { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.sn-display__accent {
  display: inline-block;
  background: linear-gradient(120deg, var(--tide), var(--sakura));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sn-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin: 0 0 0.75rem;
}
.sn-lead { font-size: 1.05rem; max-width: 36ch; color: var(--muted); margin: 0; }
.sn-inline {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--sakura);
  text-decoration: none;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 2rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
  font-family: var(--font-sans);
}
.btn:hover { transform: translateY(-2px); }
.btn-tide { background: var(--tide); color: var(--white); }
.btn-sakura { background: var(--sakura); color: var(--white); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-line { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost { background: var(--paper-2); color: var(--ink); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.88rem; }
.btn-block { width: 100%; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Dock navbar */
.sn-dock {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0.65rem 1rem;
  transition: transform 0.35s var(--ease), background 0.35s;
}
.sn-dock.is-scrolled .sn-dock__inner {
  background: rgba(243, 239, 232, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(26, 42, 53, 0.08);
}
.sn-dock.is-hidden { transform: translateY(-110%); }
.sn-dock__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  transition: background 0.35s;
}
.sn-wordmark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.sn-wordmark em { color: var(--sakura); }
.sn-wordmark__tld { font-size: 0.7rem; color: var(--muted); font-family: var(--font-sans); }
.sn-wordmark__wave {
  width: 1.4rem; height: 1.4rem;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--tide), var(--sakura));
  transform: rotate(-45deg);
}
.sn-dock__nav {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 0.25rem;
}
.sn-dock__link {
  padding: 0.4rem 0.85rem;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  border-radius: 2rem;
  transition: color 0.2s, background 0.2s;
}
.sn-dock__link:hover, .sn-dock__link.is-active {
  color: var(--ink);
  background: var(--white);
}
.sn-dock__actions { display: flex; gap: 0.5rem; margin-left: auto; }
.sn-pill {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(26, 42, 53, 0.12);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  text-decoration: none;
  position: relative;
}
.sn-pill__badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--sakura);
  color: var(--white);
  font-size: 0.65rem;
  min-width: 1.1rem;
  height: 1.1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sn-pill__bars { display: flex; flex-direction: column; gap: 5px; }
.sn-pill__bars i {
  display: block; width: 14px; height: 1.5px;
  background: var(--ink);
}
.sn-drawer {
  position: fixed; inset: 0; z-index: 950;
  pointer-events: none;
}
.sn-drawer.is-open { pointer-events: auto; }
.sn-drawer__panel {
  position: absolute; top: 0; right: 0;
  width: min(88vw, 320px);
  height: 100%;
  background: var(--ink);
  color: var(--white);
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.sn-drawer.is-open .sn-drawer__panel { transform: none; }
.sn-drawer__title { font-family: var(--font-serif); font-size: 1.4rem; margin: 0.5rem 0 1.5rem; }
.sn-drawer__links { list-style: none; padding: 0; margin: 0 0 2rem; }
.sn-drawer__links a {
  display: block;
  padding: 0.65rem 0;
  color: var(--foam);
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sn-drawer__addr { font-style: normal; font-size: 0.9rem; color: var(--sakura-soft); }
.sn-drawer__addr a { color: var(--foam); }
.sn-scrim {
  position: fixed; inset: 0; z-index: 940;
  background: rgba(26, 42, 53, 0.45);
}
body.menu-open { overflow: hidden; }

/* Slide rail (right) */
.slide-rail {
  position: fixed;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.slide-rail__dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.slide-rail__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--tide);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.slide-rail__dot.is-active {
  background: var(--sakura);
  border-color: var(--sakura);
  transform: scale(1.35);
}
.slide-rail__count {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--tide);
  writing-mode: vertical-rl;
  font-weight: 600;
}

/* Fullscreen slide deck */
.page-home .sn-main { padding: 0; }
.slide-deck {
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
.slide-anchor {
  display: block;
  height: 0;
  scroll-snap-align: start;
}
.slide-panel {
  min-height: 100vh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--dock-h) + 2rem) 1.5rem 3rem;
  padding-right: calc(1.5rem + var(--rail-w));
  overflow: hidden;
}
.slide-panel__inner { max-width: 40rem; position: relative; z-index: 2; }
.slide-panel__diag {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 40%;
  background: linear-gradient(135deg, transparent 40%, var(--foam) 40%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.7;
  z-index: 1;
}

.slide-panel--opener { background: var(--paper); }
.opener__drift { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.drift-petal {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 60% 40% 50% 50%;
  background: var(--sakura-soft);
  opacity: 0.25;
  animation: drift 12s ease-in-out infinite;
}
.drift-petal--a { top: 15%; right: 10%; }
.drift-petal--b { bottom: 20%; left: 5%; animation-delay: -4s; width: 80px; height: 80px; }
.drift-line {
  position: absolute;
  bottom: 30%; left: 20%;
  width: 40%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--tide), transparent);
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(12px, -18px) rotate(8deg); }
}
.opener__scroll { margin-top: 2rem; }

.slide-panel--vision {
  padding: 0;
  flex-direction: row;
  align-items: stretch;
}
.vision__frame {
  flex: 1.2;
  margin: 0;
  position: relative;
  min-height: 100vh;
}
.vision__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100vh;
}
.vision__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 45%, var(--paper) 72%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%);
}
.vision__caption {
  flex: 0.8;
  padding: calc(var(--dock-h) + 2rem) 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}

.slide-panel--narrative { background: var(--ink); color: var(--foam); }
.slide-panel--narrative .sn-heading em { color: var(--sakura-soft); }
.slide-panel--narrative a { color: var(--sakura-soft); }
.narrative-pin {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  max-width: 64rem;
  width: 100%;
  margin: 0 auto;
}
.narrative-pin__sticky { position: sticky; top: calc(var(--dock-h) + 1rem); align-self: start; }
.narrative-pin__scroll { max-height: 70vh; overflow-y: auto; padding-right: 0.5rem; }
.narrative-block { margin-bottom: 1.5rem; }
.narrative-block p { color: rgba(228, 240, 238, 0.88); }
.narrative-fig { margin: 1rem 0; border-radius: 4px; overflow: hidden; }
.narrative-fig__img { width: 100%; }

.slide-panel--compass { background: var(--foam); }
.compass-wrap { max-width: 56rem; margin: 0 auto; width: 100%; }
.compass-stage {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0;
}
.compass-node {
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: 50%;
  width: 5.5rem; height: 5.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, transform 0.25s;
}
.compass-node.is-active {
  border-color: var(--sakura);
  transform: scale(1.08);
}
.compass-node__ring {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--tide);
  margin-bottom: 0.25rem;
}
.compass-node__name { font-size: 0.72rem; font-family: var(--font-serif); }
.compass-panes { position: relative; min-height: 280px; }
.compass-pane {
  display: none;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.compass-pane.is-active { display: grid; animation: fadePane 0.5s var(--ease); }
@keyframes fadePane { from { opacity: 0; } to { opacity: 1; } }
.compass-pane__fig { margin: 0; border-radius: 8px; overflow: hidden; }
.compass-pane__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.slide-panel--ribbon { background: var(--paper-2); }
.ribbon-head { max-width: 56rem; margin: 0 auto 1rem; width: 100%; }
.port-ribbon {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 1rem 1rem;
  scroll-snap-type: x proximity;
}
.port-ribbon__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding-bottom: 0.5rem;
}
.port-card {
  width: 260px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 42, 53, 0.1);
  transition: transform 0.35s var(--ease);
}
.port-card:hover { transform: translateY(-6px) rotate(-0.5deg); }
.port-card__fig { margin: 0; position: relative; }
.port-card__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.port-card__days {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 2rem;
}
.port-card h3 { margin: 0.75rem 1rem 0.25rem; font-size: 1.1rem; }
.port-card p { margin: 0 1rem 1rem; font-size: 0.88rem; color: var(--muted); }

.slide-panel--lab { background: var(--ink); color: var(--foam); }
.wave-lab { max-width: 52rem; margin: 0 auto; width: 100%; }
.wave-lab__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}
.wave-lab__controls input[type="range"] {
  flex: 1;
  min-width: 200px;
  accent-color: var(--sakura);
}
.wave-lab__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  transform: skewY(var(--lab-skew, 0deg));
  transition: transform 0.3s var(--ease);
}
.wave-tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}
.wave-tile__img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.wave-tile__veil {
  position: absolute; inset: 0;
  background: var(--tide-deep);
  opacity: 0.3;
  pointer-events: none;
}
.wave-lab__caption { font-size: 0.9rem; color: var(--sakura-soft); margin-top: 1rem; }

.slide-panel--metrics { background: var(--tide-deep); color: var(--white); }
.metrics-stack { max-width: 48rem; margin: 0 auto; text-align: center; }
.metrics-floats {
  position: relative;
  height: 280px;
  margin-top: 2rem;
}
.metric-island {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  text-align: left;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.metric-island:nth-child(1) { top: 0; left: 5%; }
.metric-island:nth-child(2) { top: 40px; right: 8%; z-index: 2; }
.metric-island:nth-child(3) { bottom: 60px; left: 15%; z-index: 3; }
.metric-island:nth-child(4) { bottom: 0; right: 20%; }
.metric-island__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--sakura-soft);
}
.metric-island__label { font-size: 0.85rem; }
.metric-island__sub { display: block; margin-top: 0.25rem; }

.slide-panel--flow { background: var(--paper); }
.flow-deck { max-width: 42rem; margin: 0 auto; width: 100%; }
.flow-deck__stage { position: relative; min-height: 220px; }
.flow-cards { position: relative; }
.flow-card {
  display: none;
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(26, 42, 53, 0.1);
  border-left: 4px solid var(--sakura);
}
.flow-card.is-active { display: block; animation: fadePane 0.4s var(--ease); }
.flow-card__n {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  color: var(--tide);
  opacity: 0.35;
  display: block;
  line-height: 1;
}
.flow-deck__nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  justify-content: center;
}
.flow-dot {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid var(--tide);
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--tide);
  transition: background 0.25s, color 0.25s;
}
.flow-dot.is-active { background: var(--tide); color: var(--white); }

.slide-panel--voices { background: var(--white); }
.voices-head { max-width: 40rem; margin: 0 auto 1.5rem; }
.voice-stack { max-width: 36rem; margin: 0 auto; position: relative; }
.voice-slip {
  margin: 0 0 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  border-radius: 0 20px 20px 0;
  border-left: 3px solid var(--sakura);
  transform: translateX(calc(var(--i, 0) * 12px));
  box-shadow: 4px 8px 24px rgba(26, 42, 53, 0.06);
}
.voice-slip footer { margin-top: 0.75rem; font-size: 0.82rem; color: var(--muted); }
.voice-slip cite { font-style: normal; font-weight: 500; }

.slide-panel--depart {
  background: linear-gradient(160deg, var(--tide) 0%, var(--ink) 55%);
  color: var(--white);
}
.depart-panel { max-width: 52rem; margin: 0 auto; }
.depart-panel .sn-lead { color: rgba(255,255,255,0.8); }
.depart-panel__offers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.depart-offer {
  display: flex;
  gap: 0.75rem;
  background: rgba(255,255,255,0.08);
  padding: 0.75rem;
  border-radius: 10px;
  align-items: center;
}
.depart-offer figure { margin: 0; flex-shrink: 0; width: 72px; border-radius: 6px; overflow: hidden; }
.depart-offer h3 { margin: 0; font-size: 0.95rem; }
.depart-panel__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Inner pages */
.sn-main { padding: calc(var(--dock-h) + 1.5rem) 1.25rem 3rem; max-width: 72rem; margin: 0 auto; }
.inner-hero { margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--paper-2); }
.inner-hero--slant {
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid var(--sakura);
}
.inner-hero__lead { max-width: 42ch; color: var(--muted); }

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}
.about-story__fig { position: relative; margin: 0; }
.about-story__stamp {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.7rem;
  padding: 0.35rem 0.65rem;
  letter-spacing: 0.08em;
}
.mission-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--paper-2);
  border-bottom: 1px solid var(--paper-2);
}
.mission-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.value-ribbons {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
.value-ribbons li {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: 0 24px 24px 0;
  border-left: 4px solid var(--tide);
}
.time-ribbon {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  border-left: 2px solid var(--sakura-soft);
  padding-left: 1.5rem;
}
.time-ribbon__item { margin-bottom: 1.75rem; position: relative; }
.time-ribbon__year {
  position: absolute;
  left: -3.5rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--sakura);
}
.team-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.cta-band {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--foam);
  border-radius: 20px;
  margin-top: 2rem;
}

.shop-hero { margin-bottom: 1.5rem; }
.filter-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.filter-chip {
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  border: 1px solid var(--paper-2);
  background: var(--white);
  cursor: pointer;
  font-size: 0.88rem;
  transition: background 0.2s, border-color 0.2s;
}
.filter-chip.is-active {
  background: var(--tide);
  color: var(--white);
  border-color: var(--tide);
}
.shop-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.shop-tile {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 42, 53, 0.08);
  transition: transform 0.3s var(--ease);
}
.shop-tile:hover { transform: translateY(-4px); }
.shop-tile__link { text-decoration: none; color: inherit; }
.shop-tile__fig { margin: 0; position: relative; }
.shop-tile__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.shop-tile__cat {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.68rem;
  padding: 0.2rem 0.5rem;
  border-radius: 2rem;
}
.shop-tile__body { padding: 1rem 1rem 0.5rem; }
.shop-tile__body h2 { font-size: 1.05rem; margin: 0 0 0.35rem; }
.shop-tile__body p { font-size: 0.85rem; color: var(--muted); margin: 0; }
.shop-tile__price { font-weight: 600; color: var(--tide); margin-top: 0.5rem; }
.shop-tile__cart { margin: 0 1rem 1rem; width: calc(100% - 2rem); }
.book-steps {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
.book-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
}
.book-steps span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--sakura);
  flex-shrink: 0;
}
.book-steps h3 { margin: 0 0 0.25rem; font-size: 1rem; }

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.faq-tab {
  padding: 0.5rem 1rem;
  border: none;
  background: var(--paper-2);
  border-radius: 2rem;
  cursor: pointer;
  font-size: 0.9rem;
}
.faq-tab.is-active { background: var(--ink); color: var(--white); }
.faq-panel { display: none; margin-bottom: 2rem; }
.faq-panel.is-active { display: block; }
.faq-accordion { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: var(--white);
  border-radius: 10px;
  padding: 0 1rem;
  border: 1px solid var(--paper-2);
}
.faq-item summary {
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--tide); }
.faq-item p { margin: 0 0 1rem; font-size: 0.92rem; color: var(--muted); }
.faq-cta { text-align: center; padding: 2rem; }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.contact-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 14px;
  margin-bottom: 1rem;
}
.contact-card address { font-style: normal; }
.contact-form {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 14px;
}
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; font-size: 0.88rem; margin-bottom: 0.35rem; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--paper-2);
  border-radius: 8px;
  background: var(--paper);
}
.form-success {
  background: var(--foam);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--tide);
}
.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}
.cart-list { list-style: none; padding: 0; margin: 0; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--paper-2);
}
.cart-item__img { border-radius: 8px; object-fit: cover; width: 100px; height: 75px; }
.cart-qty { display: flex; align-items: center; gap: 0.35rem; }
.cart-qty button {
  width: 2rem; height: 2rem;
  border: 1px solid var(--paper-2);
  background: var(--white);
  border-radius: 6px;
  cursor: pointer;
}
.cart-remove { border: none !important; background: none !important; color: var(--muted); font-size: 0.78rem; }
.cart-summary {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  position: sticky;
  top: calc(var(--dock-h) + 1rem);
}
.cart-totals { margin: 0 0 1rem; }
.cart-totals div {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
}
.cart-totals__grand {
  font-weight: 600;
  font-size: 1.15rem;
  border-top: 1px solid var(--paper-2);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}
.cart-coupon__row { display: flex; gap: 0.5rem; margin-top: 0.35rem; }
.cart-coupon input { flex: 1; padding: 0.5rem; border: 1px solid var(--paper-2); border-radius: 8px; }
.cart-empty { text-align: center; padding: 3rem; }

/* Policy */
.policy-doc {
  max-width: 42rem;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.policy-doc section { margin-bottom: 2rem; }
.policy-doc h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--paper-2);
}
.policy-doc h2:first-of-type { border-top: none; padding-top: 0; }
.policy-doc h3 { font-size: 1.05rem; margin: 1.25rem 0 0.5rem; }
.policy-doc ul { padding-left: 1.25rem; }
.policy-doc li { margin-bottom: 0.35rem; }
.policy-meta { color: var(--muted); font-size: 0.88rem; }

/* Footer crest */
.sn-crest {
  background: var(--ink);
  color: var(--foam);
  margin-top: 0;
  position: relative;
}
.sn-crest__wave { display: block; width: 100%; height: 48px; color: var(--paper); margin-top: -1px; }
.sn-crest__grid {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 2rem;
}
.sn-crest__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
}
.sn-crest__logo em { color: var(--sakura-soft); }
.sn-crest__manifest p { font-size: 0.9rem; opacity: 0.85; max-width: 28ch; }
.sn-crest__strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-content: flex-start;
}
.sn-crest__strip a {
  color: var(--foam);
  text-decoration: none;
  font-size: 0.82rem;
}
.sn-crest__strip a:hover { color: var(--sakura-soft); }
.sn-crest__sep { opacity: 0.4; }
.sn-crest__contact { font-style: normal; font-size: 0.82rem; opacity: 0.8; }
.sn-crest__contact a { color: var(--foam); }
.sn-crest__bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  opacity: 0.7;
}
.sn-rise {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sn-rise:hover { background: var(--tide); }

/* Responsive */
@media (min-width: 768px) {
  .sn-dock__nav { display: flex; }
}
@media (max-width: 900px) {
  .slide-panel--vision { flex-direction: column; }
  .vision__frame { min-height: 50vh; }
  .vision__img { min-height: 50vh; }
  .narrative-pin { grid-template-columns: 1fr; }
  .narrative-pin__scroll { max-height: none; }
  .compass-pane.is-active { grid-template-columns: 1fr; }
  .wave-lab__grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-floats { height: 360px; }
  .about-story__grid, .mission-cols, .team-split, .contact-split, .cart-layout {
    grid-template-columns: 1fr;
  }
  .sn-crest__grid { grid-template-columns: 1fr; }
  .slide-rail { display: none; }
  .slide-panel { padding-right: 1.5rem; }
}
@media (max-width: 600px) {
  .time-ribbon__year { position: static; display: block; margin-bottom: 0.25rem; }
  .time-ribbon { padding-left: 0; border-left: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .drift-petal { animation: none; }
  html { scroll-behavior: auto; }
}
