/* =========================================================
   Maison Shiori — base styles
   Wabi-sabi modern: warm paper, sumi ink, vermillion + indigo
   ========================================================= */

:root {
  /* Paper tones */
  --paper:        #f3ecdf;
  --paper-warm:   #ede4d2;
  --paper-deep:   #e4d8bf;
  --paper-darker: #d8c9aa;

  /* Ink */
  --sumi:    #15120e;
  --ink:     #221d16;
  --body:    #3a322a;
  --muted:   #8b7e69;
  --whisper: #b3a589;
  --rule:    #c9bda3;
  --rule-soft: #d9cdb4;

  /* Accents (kept narrow + desaturated) */
  --vermilion: #ad3a2c;     /* 朱 shu-iro */
  --vermilion-deep: #8c2d22;
  --indigo:    #243a5c;     /* 紺 kon-iro */
  --indigo-deep: #182942;

  /* Fonts */
  --font-display: "Newsreader", ui-serif, Georgia, serif;
  --font-body:    "Manrope", -apple-system, system-ui, sans-serif;
  --font-jp:      "Shippori Mincho B1", "Newsreader", serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Layout */
  --gutter: clamp(20px, 4vw, 56px);
  --max:    1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  text-wrap: pretty;
  position: relative;
  overflow-x: hidden;
}

/* Subtle paper grain across the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0 0.04 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.7;
  mix-blend-mode: multiply;
}

#root { position: relative; z-index: 2; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--vermilion); color: var(--paper); }

/* ---------- Type ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.018em;
  line-height: 0.98;
  color: var(--sumi);
}
.display em { font-style: italic; font-weight: 300; color: var(--ink); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .num { color: var(--vermilion); margin-right: 8px; }

.lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--body);
  letter-spacing: -0.005em;
}

.body-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
  max-width: 56ch;
}

.kanji {
  font-family: var(--font-jp);
  font-weight: 500;
  color: var(--vermilion);
}

.label-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Container ---------- */

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  width: 100%;
}

/* ---------- Buttons / links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 22px;
  border-radius: 999px;
  transition: all 240ms ease;
  cursor: pointer;
  position: relative;
}
.btn .arr { transition: transform 240ms ease; display: inline-block; }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary {
  background: var(--sumi);
  color: var(--paper);
}
.btn-primary:hover { background: var(--vermilion-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
  padding: 13px 21px;
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(0,0,0,0.02); }

.link-quiet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 4px;
  transition: border-color 240ms, color 240ms;
}
.link-quiet:hover { border-color: var(--vermilion); color: var(--vermilion); }
.link-quiet .arr { transition: transform 240ms; }
.link-quiet:hover .arr { transform: translateX(3px); }

/* ---------- Brand mark (hanko) ---------- */

.hanko {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vermilion);
  color: var(--paper);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 19px;
  line-height: 1;
  position: relative;
  flex-shrink: 0;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,240,220,0.18),
    0 0 0 0.5px rgba(173,58,44,0.4);
}
/* slight ink-impression effect */
.hanko::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
  opacity: 0.35;
  pointer-events: none;
}
.hanko span { position: relative; z-index: 1; transform: translateY(0.5px); }

/* ---------- Logo ---------- */

.logo { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.005em;
  color: var(--sumi);
}
.logo-name em { font-style: italic; font-weight: 300; }
.logo-sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Nav ---------- */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
  border-bottom: 1px solid color-mix(in oklab, var(--rule) 60%, transparent);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--body);
  position: relative;
  padding: 6px 0;
  transition: color 200ms;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--vermilion);
  transition: right 240ms ease;
}
.nav-link:hover { color: var(--sumi); }
.nav-link:hover::after { right: 0; }
.nav-link .num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--whisper);
  margin-right: 8px;
  letter-spacing: 0.1em;
}

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-jp {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ---------- Hero ---------- */

.hero {
  padding: clamp(56px, 8vw, 110px) 0 clamp(72px, 10vw, 140px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  position: relative;
}
.hero-left { position: relative; padding-bottom: 12px; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--vermilion); }

.hero-title {
  font-size: clamp(56px, 8.4vw, 124px);
}
.hero-title .line { display: block; }
.hero-title em { color: var(--vermilion); }

.hero-jp {
  font-family: var(--font-jp);
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-top: 28px;
  display: inline-block;
}
.hero-jp .red { color: var(--vermilion); }

.hero-intro {
  margin-top: 40px;
  max-width: 38ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-right {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5.2;
  position: relative;
  transform: translateY(-24px);
}

.hero-caption {
  position: absolute;
  left: 0;
  bottom: -56px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Vertical Japanese accent floating in hero */
.hero-vertical {
  position: absolute;
  right: -8px;
  top: 8%;
  writing-mode: vertical-rl;
  font-family: var(--font-jp);
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--muted);
}

/* Page index in hero */
.hero-folio {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-folio .bar { width: 36px; height: 1px; background: var(--rule); }

.hero-marquee {
  margin-top: clamp(48px, 7vw, 92px);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero-marquee .cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-marquee .cell .v {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--sumi);
  letter-spacing: -0.01em;
}
.hero-marquee .cell .v sup {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--vermilion);
  margin-right: 2px;
  vertical-align: super;
  letter-spacing: 0.05em;
}

/* ---------- Placeholder image ---------- */

.ph {
  width: 100%;
  height: 100%;
  background: var(--paper-deep);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule-soft);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.ph::before {
  /* paper texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.14 0 0 0 0 0.10 0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.85;
}
.ph::after {
  /* subtle vignette wash */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(34,29,22,0.16) 100%);
  pointer-events: none;
}
.ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 600ms ease;
  filter: saturate(0.92) contrast(1.02);
}
.ph-img.loaded { opacity: 1; }

.ph .cap {
  position: relative;
  z-index: 3;
  margin: 16px;
  padding: 6px 10px;
  background: rgba(243,236,223,0.88);
  backdrop-filter: blur(3px);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.ph .cap .sq { width: 8px; height: 8px; background: var(--vermilion); }

/* Inner artistic suggestion: horizon, circle, etc. */
.ph .horizon {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink), transparent);
  opacity: 0.4;
  z-index: 1;
}
.ph .moon {
  position: absolute;
  width: 26%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,250,240,0.7), rgba(255,250,240,0) 70%);
  z-index: 1;
}
.ph .sumi-mountain {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background:
    radial-gradient(60% 100% at 30% 100%, rgba(34,29,22,0.55) 0%, rgba(34,29,22,0) 60%),
    radial-gradient(50% 100% at 75% 100%, rgba(34,29,22,0.45) 0%, rgba(34,29,22,0) 65%);
  z-index: 1;
}
.ph .vstripe {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--rule), transparent);
  z-index: 1;
}

/* ---------- Section frame ---------- */

.section {
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(48px, 7vw, 88px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: var(--sumi);
  max-width: 18ch;
}
.section-head h2 em { color: var(--vermilion); font-style: italic; font-weight: 300; }
.section-head .meta { text-align: right; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.section-head .meta .jp { font-family: var(--font-jp); font-size: 14px; letter-spacing: 0.18em; color: var(--ink); }

/* ---------- Approche ---------- */

.approach {
  background: var(--paper-warm);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pillar {
  background: var(--paper-warm);
  padding: 48px 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  min-height: 360px;
}
.pillar .pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--vermilion);
}
.pillar .pillar-jp {
  font-family: var(--font-jp);
  font-size: 28px;
  font-weight: 500;
  color: var(--sumi);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 4px;
}
.pillar .pillar-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  color: var(--sumi);
  letter-spacing: -0.01em;
  margin-top: 8px;
}
.pillar .pillar-title em { font-style: italic; font-weight: 300; }
.pillar .pillar-body { font-size: 14.5px; line-height: 1.65; color: var(--body); }
.pillar .pillar-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding-top: 24px;
  border-top: 1px dashed var(--rule);
}
.pillar .pillar-tags li {
  list-style: none;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.approach-quote {
  margin-top: clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.approach-quote .who { display: flex; flex-direction: column; gap: 6px; }
.approach-quote blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.25;
  color: var(--sumi);
  letter-spacing: -0.005em;
}
.approach-quote blockquote::before {
  content: "« ";
  color: var(--vermilion);
  font-style: normal;
}
.approach-quote blockquote::after {
  content: " »";
  color: var(--vermilion);
  font-style: normal;
}

/* ---------- Itinéraires ---------- */

.itineraries-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 36px) clamp(20px, 3vw, 32px);
}
.itinerary {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  group: hover;
}
.itinerary .ph-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.itinerary .ph-wrap > .ph {
  transition: transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.itinerary:hover .ph-wrap > .ph { transform: scale(1.025); }

.itinerary.it-1 { grid-column: 1 / span 7; }
.itinerary.it-1 .ph-wrap { aspect-ratio: 16 / 11; }
.itinerary.it-2 { grid-column: 8 / span 5; align-self: end; }
.itinerary.it-2 .ph-wrap { aspect-ratio: 4 / 5; }
.itinerary.it-3 { grid-column: 1 / span 5; margin-top: clamp(24px, 4vw, 48px); }
.itinerary.it-3 .ph-wrap { aspect-ratio: 4 / 5; }
.itinerary.it-4 { grid-column: 6 / span 7; margin-top: clamp(24px, 4vw, 48px); }
.itinerary.it-4 .ph-wrap { aspect-ratio: 16 / 11; }

.it-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 4px;
}
.it-meta .num { color: var(--vermilion); }
.it-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--sumi);
}
.it-title em { font-style: italic; font-weight: 300; }
.it-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
  max-width: 50ch;
}
.it-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.it-foot .price { color: var(--sumi); font-weight: 500; }
.it-foot .arrow {
  display: inline-flex;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  align-items: center;
  justify-content: center;
  transition: all 240ms ease;
}
.itinerary:hover .it-foot .arrow {
  background: var(--sumi);
  color: var(--paper);
  border-color: var(--sumi);
}

/* ---------- Galerie ---------- */

.gallery {
  background: var(--paper-warm);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 70px;
  gap: 16px;
}
.gallery-grid .g {
  position: relative;
  overflow: hidden;
}
.gallery-grid .g .ph { transition: transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1); }
.gallery-grid .g:hover .ph { transform: scale(1.03); }

.g1 { grid-column: 1 / span 5; grid-row: span 5; }
.g2 { grid-column: 6 / span 4; grid-row: span 4; }
.g3 { grid-column: 10 / span 3; grid-row: span 5; }
.g4 { grid-column: 6 / span 4; grid-row: span 3; }
.g5 { grid-column: 1 / span 4; grid-row: span 4; margin-top: 24px; }
.g6 { grid-column: 5 / span 5; grid-row: span 5; margin-top: 24px; }
.g7 { grid-column: 10 / span 3; grid-row: span 4; margin-top: 24px; }

.gallery-foot {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
}
.gallery-foot .quiet {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  max-width: 32ch;
}

/* ---------- Footer / CTA ---------- */

.cta {
  background: var(--sumi);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.91 0 0 0 0 0.83 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
  opacity: 0.5;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  padding-bottom: clamp(60px, 8vw, 100px);
  border-bottom: 1px solid rgba(243,236,223,0.18);
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.cta-title em { color: #e0a094; font-style: italic; font-weight: 300; }
.cta-jp {
  font-family: var(--font-jp);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(243,236,223,0.55);
  margin-bottom: 22px;
}
.cta-actions { display: flex; flex-direction: column; gap: 28px; }
.cta-actions .lead { color: rgba(243,236,223,0.78); }

.btn-light {
  background: var(--paper);
  color: var(--sumi);
}
.btn-light:hover { background: var(--vermilion); color: var(--paper); }

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 56px;
}
.foot-col { display: flex; flex-direction: column; gap: 14px; }
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,236,223,0.55);
  margin-bottom: 6px;
}
.foot-col a, .foot-col p {
  font-size: 14px;
  color: rgba(243,236,223,0.85);
  line-height: 1.7;
  transition: color 200ms, border-color 200ms;
}
.foot-col a {
  align-self: flex-start;
  width: fit-content;
  border-bottom: 1px solid transparent;
}
.foot-col a:hover { color: var(--paper); border-bottom-color: var(--vermilion); }

.foot-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(243,236,223,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(243,236,223,0.45);
  text-transform: uppercase;
}

/* Small sakura blossom motif (5 ellipses) used as section accents */
.sakura-mark {
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  opacity: 0.85;
}
.sakura-mark ellipse { fill: var(--vermilion); opacity: 0.55; }
.sakura-mark circle  { fill: var(--vermilion); }

/* Add a tiny sakura beside the hanko on hover */
.logo:hover .hanko {
  transform: rotate(-6deg);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}

/* ---------- Floating side label ---------- */

.side-label {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--whisper);
  z-index: 30;
  pointer-events: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { aspect-ratio: 4/3; transform: none; }
  .hero-caption { position: relative; bottom: auto; left: auto; margin-top: 12px; }
  .hero-vertical { display: none; }
  .hero-marquee { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-quote { grid-template-columns: 1fr; }
  .itineraries-grid { grid-template-columns: 1fr; }
  .itineraries-grid .itinerary { grid-column: 1 / -1 !important; margin-top: 0 !important; }
  .itineraries-grid .itinerary .ph-wrap { aspect-ratio: 4/3 !important; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 60px; }
  .g1 { grid-column: span 6; grid-row: span 4; }
  .g2 { grid-column: span 3; grid-row: span 3; }
  .g3 { grid-column: span 3; grid-row: span 3; }
  .g4 { grid-column: span 3; grid-row: span 3; margin-top: 0; }
  .g5 { grid-column: span 3; grid-row: span 3; margin-top: 0; }
  .g6 { grid-column: span 6; grid-row: span 4; margin-top: 0; }
  .g7 { display: none; }
  .cta-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .side-label { display: none; }
  .section-head { grid-template-columns: 1fr; }
  .section-head .meta { text-align: left; align-items: flex-start; }
}

@media (max-width: 600px) {
  .foot-grid { grid-template-columns: 1fr; }
}
