/* gaijinguides.online — Layout 60: Floating Modular Sections */
:root {
  --gg-washi: #f5f0e6;
  --gg-paper: #ebe4d4;
  --gg-moss: #3d5a45;
  --gg-moss-light: #5a7a62;
  --gg-terra: #c45c3e;
  --gg-terra-dark: #a34830;
  --gg-indigo: #2c3545;
  --gg-ink: #1a1f28;
  --gg-sand: #d4c4a8;
  --gg-white: #faf8f4;
  --gg-shadow: rgba(44, 53, 69, 0.12);
  --gg-shadow-deep: rgba(44, 53, 69, 0.22);
  --gg-serif: 'Noto Serif JP', serif;
  --gg-sans: 'Outfit', sans-serif;
  --gg-mono: 'IBM Plex Mono', monospace;
  --gg-radius: 20px;
  --gg-radius-sm: 12px;
  --gg-nav-h: 72px;
  --gg-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--gg-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gg-indigo);
  background: var(--gg-washi);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gg-moss); text-decoration: none; transition: color 0.25s var(--gg-ease); }
a:hover { color: var(--gg-terra); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  padding: 0.5rem 1rem; background: var(--gg-moss); color: #fff;
}
.skip-link:focus { top: 1rem; }

.gg-micro {
  font-family: var(--gg-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gg-moss-light);
}

/* ── Sticky Isle Nav ── */
.gg-isle {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 900; width: calc(100% - 2rem); max-width: 1100px;
  transition: top 0.35s var(--gg-ease), box-shadow 0.35s;
}
.gg-isle.is-scrolled { top: 0.5rem; }
.gg-isle__hull {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.65rem 1.25rem;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(61, 90, 69, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 32px var(--gg-shadow), 0 2px 8px rgba(196, 92, 62, 0.06);
}
.gg-isle__brand {
  display: flex; align-items: center; gap: 0.65rem;
  color: var(--gg-indigo); text-decoration: none;
}
.gg-isle__brand:hover { color: var(--gg-indigo); }
.gg-isle__mark {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gg-moss); color: var(--gg-washi);
  border-radius: 50%; font-family: var(--gg-serif); font-size: 0.9rem;
}
.gg-isle__name { display: flex; flex-direction: column; line-height: 1.15; }
.gg-isle__name em { font-style: normal; font-size: 0.65rem; letter-spacing: 0.08em; color: var(--gg-moss-light); }
.gg-isle__name strong { font-weight: 600; font-size: 0.95rem; }
.gg-isle__nav { display: flex; gap: 0.25rem; }
.gg-isle__link {
  padding: 0.45rem 0.85rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 500; color: var(--gg-indigo);
  transition: background 0.25s, color 0.25s;
}
.gg-isle__link:hover, .gg-isle__link.is-active {
  background: var(--gg-moss); color: var(--gg-washi);
}
.gg-isle__tools { display: flex; align-items: center; gap: 0.35rem; }
.gg-tool {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gg-indigo); transition: background 0.25s;
  position: relative;
}
.gg-tool:hover { background: var(--gg-paper); }
.gg-badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--gg-terra); color: #fff;
  font-size: 0.6rem; font-weight: 600; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}
.gg-burger { display: none; flex-direction: column; gap: 5px; width: 38px; height: 38px; align-items: center; justify-content: center; }
.gg-burger span { width: 18px; height: 2px; background: var(--gg-indigo); border-radius: 2px; transition: 0.3s; }

/* Search overlay */
.gg-search {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(26, 31, 40, 0.5);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: calc(var(--gg-nav-h) + 2rem);
  opacity: 0; visibility: hidden; transition: 0.35s;
}
.gg-search.is-open { opacity: 1; visibility: visible; }
.gg-search__panel {
  width: min(560px, 92vw);
  background: var(--gg-white); border-radius: var(--gg-radius);
  padding: 2rem; box-shadow: 0 24px 64px var(--gg-shadow-deep);
  transform: translateY(-20px); transition: transform 0.35s var(--gg-ease);
}
.gg-search.is-open .gg-search__panel { transform: translateY(0); }
.gg-search__panel input {
  width: 100%; padding: 0.85rem 0; border: none; border-bottom: 2px solid var(--gg-paper);
  font-size: 1.1rem; background: transparent; outline: none;
}
.gg-search__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem; color: var(--gg-indigo);
}
.gg-search__hits { list-style: none; margin-top: 1rem; }
.gg-search__hits a {
  display: block; padding: 0.65rem 0; border-bottom: 1px solid var(--gg-paper);
}

/* Mobile drawer */
.gg-drawer {
  position: fixed; top: 0; right: 0; width: min(320px, 88vw); height: 100vh;
  z-index: 960; transform: translateX(100%); transition: transform 0.4s var(--gg-ease);
}
.gg-drawer.is-open { transform: translateX(0); }
.gg-drawer__sheet {
  height: 100%; background: var(--gg-white); padding: 2rem 1.5rem;
  box-shadow: -8px 0 40px var(--gg-shadow-deep);
}
.gg-drawer__title { font-family: var(--gg-serif); font-size: 1.4rem; margin: 0.5rem 0 1.5rem; }
.gg-drawer__nav { display: flex; flex-direction: column; gap: 0.25rem; }
.gg-drawer__nav a {
  padding: 0.85rem 0; font-size: 1.05rem; font-weight: 500;
  border-bottom: 1px solid var(--gg-paper); color: var(--gg-indigo);
}
.gg-drawer__addr { margin-top: 2rem; font-style: normal; font-size: 0.85rem; opacity: 0.75; }
.gg-scrim {
  position: fixed; inset: 0; z-index: 955;
  background: rgba(26, 31, 40, 0.4);
}

/* Buttons */
.gg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem; border-radius: 999px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.02em;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.gg-btn:hover { transform: translateY(-2px); }
.gg-btn--terra { background: var(--gg-terra); color: #fff; box-shadow: 0 6px 20px rgba(196, 92, 62, 0.35); }
.gg-btn--terra:hover { background: var(--gg-terra-dark); color: #fff; box-shadow: 0 10px 28px rgba(196, 92, 62, 0.4); }
.gg-btn--ghost { border: 1.5px solid var(--gg-moss); color: var(--gg-moss); background: transparent; }
.gg-btn--ghost:hover { background: var(--gg-moss); color: var(--gg-washi); }
.gg-btn--light { background: var(--gg-washi); color: var(--gg-indigo); }
.gg-btn--outline-light { border: 1.5px solid rgba(245, 240, 230, 0.6); color: var(--gg-washi); }
.gg-btn--outline-light:hover { background: rgba(245, 240, 230, 0.15); color: var(--gg-washi); }
.gg-btn--sm { padding: 0.55rem 1.15rem; font-size: 0.78rem; }
.gg-link { font-weight: 600; font-size: 0.88rem; border-bottom: 1px solid currentColor; }

.gg-main { padding-top: calc(var(--gg-nav-h) + 1rem); }

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

/* ── S1: Constellation Hero ── */
.gg-constellation {
  min-height: 92vh; padding: 3rem 1.5rem 5rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.gg-constellation__canvas {
  position: relative; width: min(1200px, 100%); min-height: 560px;
}
.gg-mod {
  background: var(--gg-white);
  border-radius: var(--gg-radius);
  box-shadow: 0 16px 48px var(--gg-shadow), 0 4px 12px rgba(61, 90, 69, 0.06);
  border: 1px solid rgba(61, 90, 69, 0.08);
}
.gg-mod--hero {
  position: relative; z-index: 3;
  max-width: 520px; padding: 2.5rem 2rem;
  margin-left: 0;
}
.gg-constellation__title {
  font-family: var(--gg-serif); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; line-height: 1.25; color: var(--gg-ink); margin: 0.75rem 0 1rem;
}
.gg-constellation__title em { font-style: normal; color: var(--gg-terra); }
.gg-constellation__lead { font-size: 0.95rem; opacity: 0.85; margin-bottom: 1.75rem; max-width: 420px; }
.gg-constellation__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.gg-mod--img {
  position: absolute; top: -2rem; right: 0; z-index: 2;
  width: min(340px, 42vw); overflow: hidden; padding: 0;
  transform: rotate(2deg);
}
.gg-constellation__photo { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 7/9; }
.gg-mod--chip {
  position: absolute; bottom: 2rem; right: 28%; z-index: 4;
  padding: 0.65rem 1rem; display: flex; gap: 0.75rem;
  font-family: var(--gg-mono); font-size: 0.65rem; letter-spacing: 0.1em;
  transform: rotate(-3deg);
}
.gg-mod--stat {
  position: absolute; top: 40%; left: 52%; z-index: 5;
  padding: 1rem 1.25rem; text-align: center;
  transform: rotate(-1.5deg);
}
.gg-mod--stat strong { display: block; font-family: var(--gg-serif); font-size: 1.5rem; color: var(--gg-moss); }
.gg-mod--stat span { font-size: 0.72rem; opacity: 0.7; }
.gg-float { animation: ggFloat 6s ease-in-out infinite; }
.gg-float--2 { animation-delay: -2s; }
.gg-float--3 { animation-delay: -4s; }
.gg-float--4 { animation-delay: -1s; }
@keyframes ggFloat {
  0%, 100% { transform: translateY(0) rotate(var(--gg-rot, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--gg-rot, 0deg)); }
}
.gg-float--2 { --gg-rot: 2deg; }
.gg-float--3 { --gg-rot: -3deg; }
.gg-float--4 { --gg-rot: -1.5deg; }

/* ── S2: Horizontal Scroll ── */
.gg-scrollzone { padding: 4rem 0 5rem; overflow: hidden; }
.gg-scrollzone__head { padding: 0 1.5rem 2rem; max-width: 600px; }
.gg-scrollzone__head h2 {
  font-family: var(--gg-serif); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600; margin-top: 0.5rem;
}
.gg-scrollzone__head em { font-style: normal; color: var(--gg-terra); }
.gg-scrollzone__track {
  display: flex; gap: 1.5rem; padding: 1rem 1.5rem 2rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.gg-scrollzone__card {
  flex: 0 0 min(320px, 78vw); scroll-snap-align: start;
  background: var(--gg-white); border-radius: var(--gg-radius);
  overflow: hidden; box-shadow: 0 12px 36px var(--gg-shadow);
  transform: translateY(var(--gg-off, 0));
  transition: transform 0.4s var(--gg-ease);
}
.gg-scrollzone__card:hover { transform: translateY(calc(var(--gg-off, 0) - 8px)); }
.gg-scrollzone__card--a { --gg-off: 0; }
.gg-scrollzone__card--b { --gg-off: 16px; }
.gg-scrollzone__card--c { --gg-off: -8px; }
.gg-scrollzone__card--d { --gg-off: 24px; }
.gg-scrollzone__card--e { --gg-off: 8px; }
.gg-scrollzone__card--f { --gg-off: -12px; }
.gg-scrollzone__card figure { aspect-ratio: 4/5; overflow: hidden; }
.gg-scrollzone__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gg-scrollzone__card:hover img { transform: scale(1.05); }
.gg-scrollzone__body { padding: 1.25rem 1.5rem 1.5rem; }
.gg-scrollzone__tag {
  font-family: var(--gg-mono); font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--gg-terra); text-transform: uppercase;
}
.gg-scrollzone__body h3 { font-family: var(--gg-serif); font-size: 1.35rem; margin: 0.35rem 0 0.5rem; }
.gg-scrollzone__body p { font-size: 0.88rem; opacity: 0.8; margin-bottom: 0.75rem; }

/* ── S3: Culture Compass ── */
.gg-compass { padding: 5rem 1.5rem; background: var(--gg-paper); }
.gg-compass__head { max-width: 640px; margin-bottom: 2.5rem; }
.gg-compass__head h2 {
  font-family: var(--gg-serif); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0.5rem 0 0.75rem;
}
.gg-compass__head em { font-style: normal; color: var(--gg-moss); }
.gg-compass__sub { font-size: 0.92rem; opacity: 0.8; }
.gg-compass__stage { max-width: 1100px; margin: 0 auto; }
.gg-compass__orbit {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem;
}
.gg-compass__node {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.1rem; border-radius: 999px;
  background: var(--gg-white); border: 1.5px solid transparent;
  font-size: 0.85rem; font-weight: 500;
  transition: all 0.3s var(--gg-ease);
}
.gg-compass__node:hover, .gg-compass__node.is-active {
  border-color: var(--gg-moss); background: var(--gg-moss); color: var(--gg-washi);
}
.gg-compass__icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gg-paper); display: flex; align-items: center; justify-content: center;
  font-family: var(--gg-serif); font-size: 0.75rem;
}
.gg-compass__node.is-active .gg-compass__icon { background: rgba(255,255,255,0.2); color: #fff; }
.gg-compass__panels { position: relative; min-height: 360px; }
.gg-compass__panel {
  display: none; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
  animation: ggFadeIn 0.5s var(--gg-ease);
}
.gg-compass__panel.is-active { display: grid; }
@keyframes ggFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.gg-compass__visual { border-radius: var(--gg-radius); overflow: hidden; box-shadow: 0 16px 40px var(--gg-shadow); }
.gg-compass__visual img { width: 100%; aspect-ratio: 13/10; object-fit: cover; }
.gg-compass__detail h3 { font-family: var(--gg-serif); font-size: 1.75rem; margin-bottom: 0.75rem; }
.gg-compass__detail p { opacity: 0.85; margin-bottom: 1.25rem; }

/* ── S4: Diary Storytelling ── */
.gg-diary { padding: 5rem 1.5rem; max-width: 1100px; margin: 0 auto; }
.gg-diary__head { margin-bottom: 3rem; }
.gg-diary__head h2 { font-family: var(--gg-serif); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-top: 0.5rem; }
.gg-diary__head em { font-style: normal; color: var(--gg-terra); }
.gg-diary__strip {
  display: grid; grid-template-columns: 140px 1fr 280px; gap: 2rem;
  align-items: center; margin-bottom: 3rem;
  padding: 2rem; background: var(--gg-white);
  border-radius: var(--gg-radius); box-shadow: 0 12px 40px var(--gg-shadow);
}
.gg-diary__strip--flip { direction: rtl; }
.gg-diary__strip--flip > * { direction: ltr; }
.gg-diary__day { font-family: var(--gg-mono); font-size: 0.75rem; color: var(--gg-terra); letter-spacing: 0.08em; }
.gg-diary__place { display: block; font-family: var(--gg-serif); font-size: 1.1rem; font-weight: 600; margin-top: 0.25rem; }
.gg-diary__content h3 { font-family: var(--gg-serif); font-size: 1.25rem; margin-bottom: 0.5rem; }
.gg-diary__content p { font-size: 0.9rem; opacity: 0.85; }
.gg-diary__frame { border-radius: var(--gg-radius-sm); overflow: hidden; transform: rotate(var(--gg-drot, 1deg)); }
.gg-diary__strip--flip .gg-diary__frame { --gg-drot: -1.5deg; }

/* ── S5: Experimental Mosaic ── */
.gg-mosaic {
  padding: 5rem 1.5rem; background: var(--gg-indigo); color: var(--gg-washi);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}
.gg-mosaic__head { max-width: 500px; margin-bottom: 2.5rem; }
.gg-mosaic__head h2 { font-family: var(--gg-serif); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-top: 0.5rem; }
.gg-mosaic__head em { font-style: normal; color: var(--gg-terra); }
.gg-mosaic__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem;
  max-width: 1100px; margin: 0 auto 2rem;
}
.gg-mosaic__tile { overflow: hidden; border-radius: var(--gg-radius-sm); }
.gg-mosaic__tile img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; transition: transform 0.5s, filter 0.5s; }
.gg-mosaic__tile:hover img { transform: scale(1.08); filter: brightness(1.1); }
.gg-mosaic__tile--1 { transform: translateY(20px) rotate(-2deg); clip-path: polygon(0 8%, 100% 0, 92% 100%, 0 92%); }
.gg-mosaic__tile--2 { transform: translateY(-12px) rotate(1.5deg); clip-path: polygon(8% 0, 100% 4%, 100% 100%, 0 96%); }
.gg-mosaic__tile--3 { transform: translateY(8px); clip-path: polygon(0 0, 100% 6%, 94% 100%, 4% 100%); }
.gg-mosaic__tile--4 { transform: translateY(-20px) rotate(-1deg); clip-path: polygon(4% 4%, 100% 0, 100% 96%, 0 100%); }
.gg-mosaic__tile--5 { transform: translateY(16px) rotate(2deg); clip-path: polygon(0 0, 96% 4%, 100% 100%, 6% 96%); }
.gg-mosaic__tile--6 { transform: translateY(-8px); clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 94%); }
.gg-mosaic__caption { max-width: 640px; font-size: 0.92rem; opacity: 0.75; line-height: 1.7; }

/* ── S6: Service Islands ── */
.gg-services { padding: 5rem 1.5rem; }
.gg-services__head { max-width: 500px; margin-bottom: 2.5rem; }
.gg-services__head h2 { font-family: var(--gg-serif); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-top: 0.5rem; }
.gg-services__head em { font-style: normal; color: var(--gg-moss); }
.gg-services__field {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.gg-services__isle {
  background: var(--gg-white); border-radius: var(--gg-radius);
  overflow: hidden; box-shadow: 0 14px 40px var(--gg-shadow);
  transform: translateY(var(--gg-sy, 0)) rotate(var(--gg-sr, 0deg));
  transition: transform 0.4s var(--gg-ease), box-shadow 0.4s;
}
.gg-services__isle:hover { transform: translateY(calc(var(--gg-sy, 0) - 10px)) rotate(var(--gg-sr, 0deg)); box-shadow: 0 20px 50px var(--gg-shadow-deep); }
.gg-services__isle--1 { --gg-sy: 0; --gg-sr: -0.5deg; }
.gg-services__isle--2 { --gg-sy: 20px; --gg-sr: 0.8deg; }
.gg-services__isle--3 { --gg-sy: -10px; --gg-sr: -0.3deg; }
.gg-services__isle--4 { --gg-sy: 14px; --gg-sr: 0.5deg; }
.gg-services__isle figure { aspect-ratio: 4/5; overflow: hidden; }
.gg-services__isle img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gg-services__isle:hover img { transform: scale(1.06); }
.gg-services__body { padding: 1.25rem 1.35rem 1.5rem; }
.gg-services__cat { font-family: var(--gg-mono); font-size: 0.62rem; letter-spacing: 0.1em; color: var(--gg-terra); }
.gg-services__body h3 { font-family: var(--gg-serif); font-size: 1.1rem; margin: 0.35rem 0 0.5rem; }
.gg-services__body p { font-size: 0.82rem; opacity: 0.75; margin-bottom: 1rem; }
.gg-services__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.gg-services__price { font-weight: 700; font-size: 0.95rem; color: var(--gg-moss); }
.gg-services__more { text-align: center; margin-top: 2.5rem; }

/* ── S7: Stats Drift ── */
.gg-stats { padding: 4rem 1.5rem; }
.gg-stats__drift {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
  max-width: 1000px; margin: 0 auto;
}
.gg-stats__mod {
  flex: 0 1 200px; padding: 1.75rem 1.5rem;
  background: var(--gg-white); border-radius: var(--gg-radius);
  text-align: center; box-shadow: 0 10px 32px var(--gg-shadow);
  transform: translateY(var(--gg-sty, 0));
}
.gg-stats__mod--1 { --gg-sty: 0; }
.gg-stats__mod--2 { --gg-sty: 18px; }
.gg-stats__mod--3 { --gg-sty: -10px; }
.gg-stats__mod--4 { --gg-sty: 12px; }
.gg-stats__mod strong { display: block; font-family: var(--gg-serif); font-size: 2rem; color: var(--gg-terra); }
.gg-stats__mod span { display: block; font-size: 0.85rem; font-weight: 500; margin: 0.35rem 0; }
.gg-stats__mod small { font-family: var(--gg-mono); font-size: 0.62rem; opacity: 0.55; }

/* ── S8: Testimonials Orbit ── */
.gg-orbit { padding: 5rem 1.5rem; background: linear-gradient(180deg, var(--gg-washi) 0%, var(--gg-paper) 100%); }
.gg-orbit__head { max-width: 400px; margin-bottom: 2.5rem; }
.gg-orbit__head h2 { font-family: var(--gg-serif); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-top: 0.5rem; }
.gg-orbit__head em { font-style: normal; color: var(--gg-terra); }
.gg-orbit__ring {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.gg-orbit__card {
  padding: 1.75rem; background: var(--gg-white);
  border-radius: var(--gg-radius); box-shadow: 0 12px 36px var(--gg-shadow);
  transform: translateX(var(--gg-ox, 0)) rotate(var(--gg-or, 0deg));
  border-left: 3px solid var(--gg-moss);
}
.gg-orbit__card--1 { --gg-ox: 0; --gg-or: -0.4deg; }
.gg-orbit__card--2 { --gg-ox: 12px; --gg-or: 0.6deg; margin-top: 24px; }
.gg-orbit__card--3 { --gg-ox: -8px; --gg-or: -0.2deg; margin-top: -12px; }
.gg-orbit__card p { font-size: 0.92rem; font-style: italic; opacity: 0.9; margin-bottom: 1rem; line-height: 1.7; }
.gg-orbit__card footer { font-family: var(--gg-mono); font-size: 0.68rem; opacity: 0.6; }

/* ── S9: Process Chain ── */
.gg-process { padding: 5rem 1.5rem; max-width: 1100px; margin: 0 auto; }
.gg-process__head h2 { font-family: var(--gg-serif); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 0.5rem 0 2.5rem; }
.gg-process__head em { font-style: normal; color: var(--gg-moss); }
.gg-process__chain {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.gg-process__step {
  padding: 1.5rem; background: var(--gg-white);
  border-radius: var(--gg-radius); box-shadow: 0 8px 28px var(--gg-shadow);
  transform: translateY(var(--gg-py, 0));
}
.gg-process__step:nth-child(1) { --gg-py: 0; }
.gg-process__step:nth-child(2) { --gg-py: 20px; }
.gg-process__step:nth-child(3) { --gg-py: -8px; }
.gg-process__step:nth-child(4) { --gg-py: 16px; }
.gg-process__num { font-family: var(--gg-mono); font-size: 0.72rem; color: var(--gg-terra); letter-spacing: 0.1em; }
.gg-process__step h3 { font-family: var(--gg-serif); font-size: 1.15rem; margin: 0.5rem 0 0.35rem; }
.gg-process__step p { font-size: 0.82rem; opacity: 0.8; }

/* ── S10: Conversion Raft ── */
.gg-raft { padding: 4rem 1.5rem 6rem; }
.gg-raft__hull {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center;
  padding: 3rem; background: var(--gg-moss); color: var(--gg-washi);
  border-radius: var(--gg-radius); box-shadow: 0 24px 60px rgba(61, 90, 69, 0.35);
  transform: rotate(-0.3deg);
}
.gg-raft__copy h2 {
  font-family: var(--gg-serif); font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35; margin: 0.5rem 0 1rem;
}
.gg-raft__copy em { font-style: normal; color: var(--gg-sand); }
.gg-raft__copy p { opacity: 0.85; font-size: 0.92rem; }
.gg-raft__actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.gg-raft__note { font-family: var(--gg-mono); font-size: 0.68rem; opacity: 0.65; margin-top: 0.5rem; }

/* ── Inner Pages ── */
.gg-page-head { padding: 3rem 1.5rem 2rem; }
.gg-page-head__mod {
  max-width: 640px; margin: 0 auto;
  padding: 2.5rem; background: var(--gg-white);
  border-radius: var(--gg-radius); box-shadow: 0 16px 48px var(--gg-shadow);
  transform: rotate(-0.2deg);
}
.gg-page-head__mod h1 {
  font-family: var(--gg-serif); font-size: clamp(2rem, 4.5vw, 2.8rem);
  line-height: 1.25; margin: 0.75rem 0 1rem;
}
.gg-page-head__mod em { font-style: normal; color: var(--gg-terra); }
.gg-content { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem 5rem; }

.gg-story__lead { font-family: var(--gg-serif); font-size: 1.15rem; line-height: 1.8; margin-bottom: 2rem; color: var(--gg-ink); }
.gg-story__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.gg-story__cols p { font-size: 0.92rem; opacity: 0.85; }
.gg-figure { margin: 3rem 0; border-radius: var(--gg-radius); overflow: hidden; box-shadow: 0 16px 48px var(--gg-shadow); }
.gg-figure figcaption { padding: 1rem 1.25rem; font-size: 0.82rem; opacity: 0.7; background: var(--gg-white); }

.gg-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 3rem 0; }
.gg-values__mod {
  padding: 1.75rem; background: var(--gg-white); border-radius: var(--gg-radius);
  box-shadow: 0 10px 32px var(--gg-shadow);
  transform: translateY(var(--gg-vy, 0));
}
.gg-values__mod:nth-child(1) { --gg-vy: 0; }
.gg-values__mod:nth-child(2) { --gg-vy: 16px; }
.gg-values__mod:nth-child(3) { --gg-vy: -8px; }
.gg-values__mod h3 { font-family: var(--gg-serif); font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--gg-moss); }
.gg-values__mod p { font-size: 0.88rem; opacity: 0.8; }

.gg-mission { margin: 4rem 0; padding: 2.5rem; background: var(--gg-paper); border-radius: var(--gg-radius); }
.gg-mission h2 { font-family: var(--gg-serif); font-size: 1.75rem; margin: 0.5rem 0 1rem; }
.gg-mission h2 span { color: var(--gg-terra); }
.gg-section-title { font-family: var(--gg-serif); font-size: 1.5rem; margin: 3rem 0 1.5rem; }

.gg-timeline { display: flex; flex-direction: column; gap: 1rem; }
.gg-timeline__item {
  display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem;
  padding: 1.5rem; background: var(--gg-white); border-radius: var(--gg-radius-sm);
  box-shadow: 0 6px 24px var(--gg-shadow);
}
.gg-timeline__item time { font-family: var(--gg-mono); font-size: 0.85rem; color: var(--gg-terra); font-weight: 600; }
.gg-timeline__item h3 { font-family: var(--gg-serif); font-size: 1.05rem; margin-bottom: 0.35rem; }
.gg-timeline__item p { font-size: 0.85rem; opacity: 0.8; }

.gg-team { margin: 4rem 0; }
.gg-team h2 { font-family: var(--gg-serif); font-size: 1.75rem; margin: 0.5rem 0 1.5rem; }
.gg-team h2 span { color: var(--gg-moss); }
.gg-team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gg-team__card { padding: 1.5rem; background: var(--gg-white); border-radius: var(--gg-radius-sm); box-shadow: 0 8px 24px var(--gg-shadow); }
.gg-team__card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--gg-moss); }
.gg-team__card p { font-size: 0.82rem; opacity: 0.8; }

.gg-cta-raft {
  margin-top: 3rem; padding: 2.5rem; text-align: center;
  background: var(--gg-moss); color: var(--gg-washi); border-radius: var(--gg-radius);
}
.gg-cta-raft h2 { font-family: var(--gg-serif); font-size: 1.5rem; margin-bottom: 0.75rem; }
.gg-cta-raft p { opacity: 0.85; margin-bottom: 1.25rem; font-size: 0.92rem; }
.gg-cta-raft .gg-btn--terra { background: var(--gg-washi); color: var(--gg-moss); }

/* ── About Page — Passage Chronicle ── */
.page-about .gg-main { padding-bottom: 0; }

.ab-passage {
  display: grid; grid-template-columns: 72px 1fr min(340px, 32vw);
  gap: 2rem 2.5rem; max-width: 1200px; margin: 0 auto;
  padding: 2rem 1.5rem 4rem; align-items: start;
}
.ab-passage__rail {
  position: sticky; top: calc(var(--gg-nav-h) + 2rem);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  height: fit-content;
}
.ab-passage__kanji {
  font-family: var(--gg-serif); font-size: 3rem; font-weight: 700;
  color: var(--gg-moss); writing-mode: vertical-rl; letter-spacing: 0.15em;
}
.ab-passage__line {
  width: 2px; height: 120px;
  background: linear-gradient(180deg, var(--gg-terra), transparent);
}
.ab-passage__head h1 {
  font-family: var(--gg-serif); font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.25; margin: 0.65rem 0 1rem;
}
.ab-passage__head em { font-style: normal; color: var(--gg-terra); }
.ab-passage__deck { font-size: 0.95rem; opacity: 0.82; max-width: 520px; margin-bottom: 2.5rem; }
.ab-passage__chapter {
  padding: 1.75rem 0; border-top: 1px solid var(--gg-paper);
}
.ab-passage__chapter:first-of-type { border-top: none; padding-top: 0; }
.ab-passage__num {
  font-family: var(--gg-mono); font-size: 0.68rem; color: var(--gg-terra);
  letter-spacing: 0.12em; display: block; margin-bottom: 0.5rem;
}
.ab-passage__chapter h2 {
  font-family: var(--gg-serif); font-size: 1.35rem; margin-bottom: 0.65rem;
}
.ab-passage__chapter p { font-size: 0.92rem; opacity: 0.85; line-height: 1.75; max-width: 560px; }
.ab-passage__photo {
  position: sticky; top: calc(var(--gg-nav-h) + 2rem);
  border-radius: var(--gg-radius); overflow: hidden;
  box-shadow: 0 20px 56px var(--gg-shadow-deep);
  transform: rotate(1.5deg);
}
.ab-passage__photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.ab-passage__photo figcaption {
  padding: 0.75rem 1rem; background: var(--gg-white); text-align: center;
}

.ab-manifesto {
  padding: 4rem 1.5rem; background: var(--gg-indigo); color: var(--gg-washi);
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  text-align: center;
}
.ab-manifesto__quote {
  max-width: 720px; margin: 0 auto 1.5rem;
  font-family: var(--gg-serif); font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  line-height: 1.55; font-weight: 600;
}
.ab-manifesto__quote span { color: var(--gg-sand); }
.ab-manifesto__note {
  max-width: 520px; margin: 0 auto; font-size: 0.9rem; opacity: 0.72; line-height: 1.7;
}

.ab-values { padding: 5rem 1.5rem; max-width: 800px; margin: 0 auto; }
.ab-values__head h2 {
  font-family: var(--gg-serif); font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 0.5rem;
}
.ab-values__head em { font-style: normal; color: var(--gg-moss); }
.ab-values__stack { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.ab-values__card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem 1.75rem; background: var(--gg-white);
  border-radius: var(--gg-radius); box-shadow: 0 10px 32px var(--gg-shadow);
  transform: translateX(var(--gg-vx, 0));
  border-left: 3px solid var(--gg-moss);
  transition: transform 0.35s var(--gg-ease), box-shadow 0.35s;
}
.ab-values__card:hover { transform: translateX(calc(var(--gg-vx, 0) + 8px)); box-shadow: 0 14px 40px var(--gg-shadow-deep); }
.ab-values__card--1 { --gg-vx: 0; }
.ab-values__card--2 { --gg-vx: 32px; }
.ab-values__card--3 { --gg-vx: 16px; }
.ab-values__card--4 { --gg-vx: 48px; }
.ab-values__glyph {
  flex-shrink: 0; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gg-paper); border-radius: 50%;
  font-family: var(--gg-serif); font-size: 1rem; color: var(--gg-moss);
}
.ab-values__card h3 { font-family: var(--gg-serif); font-size: 1.05rem; margin-bottom: 0.3rem; }
.ab-values__card p { font-size: 0.85rem; opacity: 0.8; }

.ab-mission {
  position: relative; max-width: 1100px; margin: 0 auto;
  padding: 5rem 1.5rem; min-height: 420px;
}
.ab-mission__panel {
  position: relative; z-index: 2; max-width: 480px;
  padding: 2.5rem; background: var(--gg-moss); color: var(--gg-washi);
  border-radius: var(--gg-radius); box-shadow: 0 20px 56px rgba(61, 90, 69, 0.35);
  transform: rotate(-0.8deg);
}
.ab-mission__panel h2 {
  font-family: var(--gg-serif); font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.35; margin: 0.5rem 0 1rem;
}
.ab-mission__panel em { font-style: normal; color: var(--gg-sand); }
.ab-mission__panel p { font-size: 0.9rem; opacity: 0.88; line-height: 1.7; }
.ab-mission__img {
  position: absolute; top: 2rem; right: 1.5rem; z-index: 1;
  width: min(52%, 520px); border-radius: var(--gg-radius);
  overflow: hidden; box-shadow: 0 24px 64px var(--gg-shadow-deep);
  transform: rotate(1.2deg);
}
.ab-mission__img img { width: 100%; aspect-ratio: 13/10; object-fit: cover; }

.ab-milestones { padding: 4rem 0 5rem; overflow: hidden; background: var(--gg-paper); }
.ab-milestones__head { padding: 0 1.5rem 2rem; max-width: 500px; }
.ab-milestones__head h2 {
  font-family: var(--gg-serif); font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 0.5rem;
}
.ab-milestones__head em { font-style: normal; color: var(--gg-terra); }
.ab-milestones__track {
  display: flex; gap: 1.25rem; padding: 0.5rem 1.5rem 1.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
}
.ab-milestones__card {
  flex: 0 0 min(300px, 78vw); scroll-snap-align: start;
  background: var(--gg-white); border-radius: var(--gg-radius);
  overflow: hidden; box-shadow: 0 12px 36px var(--gg-shadow);
}
.ab-milestones__card figure { aspect-ratio: 3/2; overflow: hidden; }
.ab-milestones__card img { width: 100%; height: 100%; object-fit: cover; }
.ab-milestones__meta {
  display: flex; align-items: baseline; gap: 0.65rem;
  padding: 1rem 1.25rem 0;
}
.ab-milestones__meta time {
  font-family: var(--gg-serif); font-size: 1.5rem; font-weight: 700; color: var(--gg-terra);
}
.ab-milestones__meta span {
  font-family: var(--gg-mono); font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--gg-moss-light); text-transform: uppercase;
}
.ab-milestones__card h3 {
  font-family: var(--gg-serif); font-size: 1.05rem;
  padding: 0.35rem 1.25rem 0;
}
.ab-milestones__card p {
  font-size: 0.82rem; opacity: 0.75; padding: 0.35rem 1.25rem 1.25rem;
}

.ab-crew { padding: 5rem 1.5rem; max-width: 1100px; margin: 0 auto; }
.ab-crew__head h2 {
  font-family: var(--gg-serif); font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 0.5rem;
}
.ab-crew__head em { font-style: normal; color: var(--gg-moss); }
.ab-crew__bento {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem;
  margin-top: 2.5rem;
}
.ab-crew__tile {
  background: var(--gg-white); border-radius: var(--gg-radius);
  overflow: hidden; box-shadow: 0 12px 36px var(--gg-shadow);
  transform: translateY(var(--gg-cy, 0));
}
.ab-crew__tile--1 { grid-column: span 5; --gg-cy: 0; }
.ab-crew__tile--2 { grid-column: span 7; --gg-cy: 24px; }
.ab-crew__tile--3 { grid-column: span 6; --gg-cy: -12px; }
.ab-crew__tile--4 { grid-column: span 6; --gg-cy: 16px; }
.ab-crew__tile figure { aspect-ratio: 16/10; overflow: hidden; }
.ab-crew__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ab-crew__tile:hover img { transform: scale(1.04); }
.ab-crew__body { padding: 1.15rem 1.35rem 1.35rem; }
.ab-crew__role {
  font-family: var(--gg-mono); font-size: 0.62rem; letter-spacing: 0.12em;
  color: var(--gg-terra); text-transform: uppercase;
}
.ab-crew__body h3 { font-family: var(--gg-serif); font-size: 1.1rem; margin: 0.3rem 0 0.4rem; }
.ab-crew__body p { font-size: 0.82rem; opacity: 0.78; }

.ab-studio { padding: 0 1.5rem 4rem; max-width: 1100px; margin: 0 auto; }
.ab-studio__card {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
  background: var(--gg-white); border-radius: var(--gg-radius);
  overflow: hidden; box-shadow: 0 16px 48px var(--gg-shadow);
}
.ab-studio__info { padding: 2.5rem; }
.ab-studio__info h2 {
  font-family: var(--gg-serif); font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0.5rem 0 1.25rem;
}
.ab-studio__info em { font-style: normal; color: var(--gg-terra); }
.ab-studio__info address { font-style: normal; font-size: 0.88rem; line-height: 1.75; opacity: 0.85; }
.ab-studio__info a { color: var(--gg-moss); }
.ab-studio__note { margin-top: 1.25rem; font-size: 0.82rem; opacity: 0.65; }
.ab-studio__visual img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }

.ab-cta { padding: 0 1.5rem 5rem; max-width: 720px; margin: 0 auto; }
.ab-cta__mod {
  text-align: center; padding: 2.75rem 2rem;
  background: var(--gg-paper); border-radius: var(--gg-radius);
  border: 1.5px dashed var(--gg-sand);
  transform: rotate(0.4deg);
}
.ab-cta__mod h2 {
  font-family: var(--gg-serif); font-size: clamp(1.35rem, 3vw, 1.85rem); margin-bottom: 0.65rem;
}
.ab-cta__mod em { font-style: normal; color: var(--gg-terra); }
.ab-cta__mod > p { font-size: 0.88rem; opacity: 0.75; margin-bottom: 1.5rem; }
.ab-cta__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Shop / Services */
.gg-filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.gg-filter {
  padding: 0.5rem 1.1rem; border-radius: 999px; font-size: 0.82rem; font-weight: 500;
  background: var(--gg-white); border: 1.5px solid var(--gg-paper); color: var(--gg-indigo);
  transition: all 0.25s;
}
.gg-filter:hover, .gg-filter.is-active { background: var(--gg-moss); border-color: var(--gg-moss); color: var(--gg-washi); }
.gg-shop-field {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem;
}
.gg-shop-isle {
  background: var(--gg-white); border-radius: var(--gg-radius); overflow: hidden;
  box-shadow: 0 12px 36px var(--gg-shadow);
  transform: translateY(var(--gg-shy, 0));
  transition: transform 0.35s, box-shadow 0.35s;
}
.gg-shop-isle:hover { transform: translateY(calc(var(--gg-shy, 0) - 8px)); box-shadow: 0 18px 48px var(--gg-shadow-deep); }
.gg-shop-isle--1 { --gg-shy: 0; }
.gg-shop-isle--2 { --gg-shy: 14px; }
.gg-shop-isle--3 { --gg-shy: -6px; }
.gg-shop-isle--4 { --gg-shy: 10px; }
.gg-shop-isle__img { aspect-ratio: 4/5; overflow: hidden; }
.gg-shop-isle__img img { width: 100%; height: 100%; object-fit: cover; }
.gg-shop-isle { padding-bottom: 1.25rem; }
.gg-shop-isle__cat { display: block; padding: 0 1.25rem; font-family: var(--gg-mono); font-size: 0.62rem; color: var(--gg-terra); letter-spacing: 0.08em; margin-top: 1rem; }
.gg-shop-isle h3 { padding: 0 1.25rem; font-family: var(--gg-serif); font-size: 1.05rem; margin: 0.35rem 0; }
.gg-shop-isle__desc { padding: 0 1.25rem; font-size: 0.82rem; opacity: 0.75; margin-bottom: 1rem; }
.gg-shop-isle__foot { padding: 0 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.gg-shop-isle__price { font-weight: 700; color: var(--gg-moss); }
.gg-shop-isle.is-hidden { display: none; }

/* FAQ */
.gg-faq-wrap { max-width: 760px; margin: 0 auto; }
.gg-faq-cat { font-family: var(--gg-serif); font-size: 1.2rem; margin: 2.5rem 0 1rem; color: var(--gg-moss); }
.gg-faq-item { margin-bottom: 0.5rem; border-radius: var(--gg-radius-sm); overflow: hidden; background: var(--gg-white); box-shadow: 0 4px 16px var(--gg-shadow); }
.gg-faq-q {
  width: 100%; text-align: left; padding: 1.15rem 1.5rem;
  font-size: 0.95rem; font-weight: 600; color: var(--gg-indigo);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.25s;
}
.gg-faq-q::after { content: '+'; font-size: 1.2rem; color: var(--gg-terra); transition: transform 0.3s; }
.gg-faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.gg-faq-q:hover { background: var(--gg-paper); }
.gg-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--gg-ease); }
.gg-faq-a p { padding: 0 1.5rem 1.25rem; font-size: 0.88rem; opacity: 0.85; line-height: 1.7; }
.gg-faq-item.is-open .gg-faq-a { max-height: 400px; }

/* Contact */
.gg-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; margin-bottom: 3rem; }
.gg-contact-info {
  padding: 2rem; background: var(--gg-white); border-radius: var(--gg-radius);
  box-shadow: 0 12px 36px var(--gg-shadow);
}
.gg-contact-info h2 { font-family: var(--gg-serif); font-size: 1.35rem; margin-bottom: 1.25rem; }
.gg-contact-info dl div { margin-bottom: 1rem; }
.gg-contact-info dt { font-family: var(--gg-mono); font-size: 0.68rem; letter-spacing: 0.08em; color: var(--gg-moss-light); margin-bottom: 0.2rem; }
.gg-contact-info dd { font-size: 0.92rem; }
.gg-contact-note { margin-top: 1.5rem; font-size: 0.82rem; opacity: 0.75; line-height: 1.6; }
.gg-form {
  padding: 2rem; background: var(--gg-white); border-radius: var(--gg-radius);
  box-shadow: 0 12px 36px var(--gg-shadow);
}
.gg-form label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.35rem; margin-top: 1rem; }
.gg-form label:first-of-type { margin-top: 0; }
.gg-form input, .gg-form select, .gg-form textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--gg-paper);
  border-radius: var(--gg-radius-sm); font-family: inherit; font-size: 0.92rem;
  background: var(--gg-washi); transition: border-color 0.25s;
}
.gg-form input:focus, .gg-form select:focus, .gg-form textarea:focus {
  outline: none; border-color: var(--gg-moss);
}
.gg-form textarea { min-height: 140px; resize: vertical; }
.gg-form .gg-btn { margin-top: 1.5rem; width: 100%; }
.gg-map { border-radius: var(--gg-radius); overflow: hidden; box-shadow: 0 12px 36px var(--gg-shadow); }
.gg-map iframe { width: 100%; height: 360px; border: 0; display: block; }

/* Cart */
.gg-cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
.gg-cart-empty { padding: 3rem; text-align: center; background: var(--gg-white); border-radius: var(--gg-radius); box-shadow: 0 8px 28px var(--gg-shadow); }
.gg-cart-summary {
  padding: 1.75rem; background: var(--gg-white); border-radius: var(--gg-radius);
  box-shadow: 0 12px 36px var(--gg-shadow); position: sticky; top: calc(var(--gg-nav-h) + 1.5rem);
}
.gg-cart-summary h2 { font-family: var(--gg-serif); font-size: 1.15rem; margin-bottom: 1.25rem; }
.gg-cart-row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.88rem; border-bottom: 1px solid var(--gg-paper); }
.gg-cart-row--total { font-weight: 700; font-size: 1.05rem; border: none; padding-top: 1rem; color: var(--gg-moss); }
.gg-coupon { display: flex; gap: 0.5rem; margin: 1.25rem 0 0.5rem; }
.gg-coupon input { flex: 1; padding: 0.6rem 0.85rem; border: 1.5px solid var(--gg-paper); border-radius: var(--gg-radius-sm); font-size: 0.85rem; }
.gg-coupon button { padding: 0.6rem 1rem; background: var(--gg-paper); border-radius: var(--gg-radius-sm); font-size: 0.82rem; font-weight: 600; }
.gg-coupon-msg { font-size: 0.78rem; min-height: 1.2rem; margin-bottom: 0.75rem; }
.gg-coupon-msg.is-ok { color: var(--gg-moss); }
.gg-coupon-msg.is-err { color: var(--gg-terra); }
.gg-cart-note { font-size: 0.72rem; opacity: 0.6; margin-top: 1rem; line-height: 1.5; }
.gg-cart__list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.gg-cart-item {
  display: grid; grid-template-columns: 100px 1fr; gap: 1.25rem;
  padding: 1.25rem; background: var(--gg-white); border-radius: var(--gg-radius-sm);
  box-shadow: 0 6px 20px var(--gg-shadow);
}
.gg-cart-item img { border-radius: var(--gg-radius-sm); object-fit: cover; aspect-ratio: 4/5; }
.gg-cart-item h3 { font-family: var(--gg-serif); font-size: 1rem; margin-bottom: 0.25rem; }
.gg-cart-item p { font-size: 0.78rem; opacity: 0.7; margin-bottom: 0.75rem; }
.gg-qty { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.gg-qty button { width: 28px; height: 28px; border-radius: 50%; background: var(--gg-paper); font-size: 1rem; }
.gg-cart-item__remove { font-size: 0.75rem; color: var(--gg-terra); text-decoration: underline; }
.gg-cart-item__price { font-weight: 700; color: var(--gg-moss); margin-top: 0.5rem; }

/* Modal */
.gg-modal {
  position: fixed; inset: 0; z-index: 980;
  background: rgba(26, 31, 40, 0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: 0.35s;
}
.gg-modal.is-open { opacity: 1; visibility: visible; }
.gg-modal__box {
  background: var(--gg-white); padding: 2.5rem; border-radius: var(--gg-radius);
  max-width: 440px; width: 92vw; text-align: center;
  box-shadow: 0 24px 64px var(--gg-shadow-deep);
}
.gg-modal__box h2 { font-family: var(--gg-serif); font-size: 1.35rem; margin-bottom: 0.75rem; }
.gg-modal__box p { font-size: 0.88rem; opacity: 0.85; margin-bottom: 1.5rem; }

/* Policy */
.gg-policy { max-width: 760px; margin: 0 auto; padding: 2rem 1.5rem 5rem; }
.gg-policy h1 { font-family: var(--gg-serif); font-size: 2rem; margin-bottom: 0.5rem; }
.gg-policy-updated { font-family: var(--gg-mono); font-size: 0.75rem; opacity: 0.6; margin-bottom: 2rem; }
.gg-policy h2 { font-family: var(--gg-serif); font-size: 1.25rem; margin: 2rem 0 0.75rem; color: var(--gg-moss); }
.gg-policy h3 { font-size: 1rem; margin: 1.25rem 0 0.5rem; }
.gg-policy p { font-size: 0.92rem; opacity: 0.88; margin-bottom: 1rem; line-height: 1.75; }
.gg-policy ul { margin: 0.75rem 0 1rem 1.5rem; }
.gg-policy li { font-size: 0.9rem; opacity: 0.85; margin-bottom: 0.4rem; line-height: 1.6; }

/* Footer Harbor */
.gg-harbor {
  position: relative; margin-top: 5rem;
  background: var(--gg-ink); color: var(--gg-washi);
}
.gg-harbor__cut {
  height: 64px; margin-top: -1px;
  background: var(--gg-ink);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.page-about .gg-harbor__cut { background: var(--gg-washi); }
.page-about .gg-harbor { margin-top: 0; }

.gg-harbor__deck {
  max-width: 1180px; margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 3rem; align-items: start;
}
.gg-harbor__brand {
  display: flex; align-items: center; gap: 0.85rem;
  color: var(--gg-washi); text-decoration: none; margin-bottom: 1rem;
}
.gg-harbor__brand:hover { color: var(--gg-washi); }
.gg-harbor__mark {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gg-terra); border-radius: 14px;
  font-family: var(--gg-serif); font-size: 1.15rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(196, 92, 62, 0.4);
}
.gg-harbor__word { display: flex; flex-direction: column; line-height: 1.2; }
.gg-harbor__word strong { font-size: 1.15rem; font-weight: 600; letter-spacing: 0.01em; }
.gg-harbor__word em { font-style: normal; font-size: 0.72rem; opacity: 0.55; margin-top: 0.15rem; }
.gg-harbor__tagline {
  font-family: var(--gg-serif); font-size: 1.05rem; opacity: 0.85;
  margin-bottom: 0.75rem; color: var(--gg-sand);
}
.gg-harbor__pitch { font-size: 0.85rem; opacity: 0.6; line-height: 1.7; max-width: 360px; }

.gg-harbor__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.gg-harbor__isle {
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 240, 230, 0.08);
  border-radius: var(--gg-radius-sm);
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--gg-ease);
}
.gg-harbor__isle:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 240, 230, 0.14);
  transform: translateY(-4px);
}
.gg-harbor__beacon {
  padding: 1.35rem 1.25rem;
  background: rgba(196, 92, 62, 0.12);
  border: 1px solid rgba(196, 92, 62, 0.35);
  border-radius: var(--gg-radius-sm);
  font-style: normal;
  transition: transform 0.3s var(--gg-ease), box-shadow 0.3s;
}
.gg-harbor__beacon:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(196, 92, 62, 0.2);
}
.gg-harbor__label {
  font-family: var(--gg-mono); font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.45; margin-bottom: 0.85rem;
}
.gg-harbor__isle ul { list-style: none; }
.gg-harbor__isle li { margin-bottom: 0.45rem; }
.gg-harbor__isle a {
  color: rgba(245, 240, 230, 0.72); font-size: 0.84rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.gg-harbor__isle a:hover { color: var(--gg-washi); padding-left: 4px; }
.gg-harbor__addr { font-size: 0.8rem; opacity: 0.75; line-height: 1.6; margin-bottom: 0.5rem; }
.gg-harbor__phone {
  display: block; font-size: 1.05rem; font-weight: 600;
  color: var(--gg-sand) !important; margin-bottom: 0.35rem;
}
.gg-harbor__beacon a { color: rgba(245, 240, 230, 0.8); font-size: 0.84rem; }
.gg-harbor__beacon a:hover { color: var(--gg-washi); }
.gg-harbor__hours { margin-top: 0.65rem; font-size: 0.72rem; opacity: 0.5; }

.gg-harbor__keel {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding: 1.15rem 1.5rem;
  border-top: 1px solid rgba(245, 240, 230, 0.08);
  font-size: 0.72rem; opacity: 0.45;
}
.gg-harbor__meta { font-family: var(--gg-mono); letter-spacing: 0.06em; }
.gg-harbor__top {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1rem 0.55rem 0.75rem;
  background: var(--gg-moss); color: var(--gg-washi);
  border-radius: 999px; font-size: 0.72rem; font-weight: 600;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(61, 90, 69, 0.4);
}
.gg-harbor__top:hover {
  transform: translateY(-3px); background: var(--gg-terra);
  box-shadow: 0 8px 24px rgba(196, 92, 62, 0.35);
}

/* Toast */
.gg-toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px);
  padding: 0.85rem 1.5rem; background: var(--gg-indigo); color: var(--gg-washi);
  border-radius: 999px; font-size: 0.85rem; z-index: 990;
  box-shadow: 0 8px 32px var(--gg-shadow-deep);
  opacity: 0; transition: transform 0.4s var(--gg-ease), opacity 0.4s;
  pointer-events: none;
}
.gg-toast.is-show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Responsive */
@media (max-width: 1024px) {
  .gg-constellation__canvas { min-height: auto; }
  .gg-mod--img { position: relative; top: auto; right: auto; width: 100%; max-width: 400px; margin: 2rem auto 0; transform: none; }
  .gg-mod--chip, .gg-mod--stat { display: none; }
  .gg-compass__panel { grid-template-columns: 1fr; }
  .gg-diary__strip { grid-template-columns: 1fr; }
  .gg-diary__strip--flip { direction: ltr; }
  .gg-mosaic__grid { grid-template-columns: repeat(3, 1fr); }
  .gg-process__chain { grid-template-columns: repeat(2, 1fr); }
  .gg-raft__hull { grid-template-columns: 1fr; }
  .gg-story__cols, .gg-values, .gg-team__grid { grid-template-columns: 1fr; }
  .gg-contact-grid, .gg-cart-layout { grid-template-columns: 1fr; }
  .ab-passage { grid-template-columns: 56px 1fr; }
  .ab-passage__photo { display: none; }
  .ab-mission__img { position: relative; top: auto; right: auto; width: 100%; margin-top: 1.5rem; }
  .ab-mission { min-height: auto; padding-bottom: 3rem; }
  .ab-crew__tile { grid-column: span 12 !important; --gg-cy: 0 !important; }
  .ab-studio__card { grid-template-columns: 1fr; }
  .ab-values__card { --gg-vx: 0 !important; }
  .gg-harbor__deck { grid-template-columns: 1fr; gap: 2rem; }
  .gg-harbor__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .gg-isle__nav { display: none; }
  .gg-burger { display: flex; }
  .gg-mosaic__grid { grid-template-columns: repeat(2, 1fr); }
  .gg-process__chain { grid-template-columns: 1fr; }
  .gg-harbor__grid { grid-template-columns: 1fr; }
  .gg-mod--hero { padding: 1.75rem 1.25rem; }
  .ab-passage { grid-template-columns: 1fr; }
  .ab-passage__rail { position: static; flex-direction: row; justify-content: flex-start; margin-bottom: 1rem; }
  .ab-passage__kanji { writing-mode: horizontal-tb; font-size: 2rem; }
  .ab-passage__line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gg-terra), transparent); }
}

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