/* ============================================================
   HEAD2TOE — Cuts & Picks
   Design System: "The Modern Wabi-Sabi"
   Earthy minimalism · Editorial typography · Zen precision
   ============================================================ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,300;1,6..72,400;1,6..72,500;1,6..72,600&family=Work+Sans:wght@300;400;500;600&display=swap');

/* ─── Design Tokens ─── */
:root {
  /* Colors */
  --primary:                 #615e5c;
  --primary-dim:             #555250;
  --on-primary:              #ffffff;
  --secondary:               #67645f;
  --on-secondary:            #ffffff;
  --surface:                 #fffbff;
  --surface-dim:             #e6e2d9;
  --surface-container-lowest:#ffffff;
  --surface-container-low:   #fdf9f4;
  --surface-container:       #f5f1e9;
  --surface-container-high:  #efe9e1;
  --surface-container-highest:#ece8df;
  --surface-variant:         #ece8df;
  --on-surface:              #393832;
  --on-surface-variant:      #4d4b44;
  --outline:                 #7e7b73;
  --outline-variant:         #bcb9b1;
  --error:                   #a54731;

  /* Typography */
  --font-serif: 'Newsreader', 'Georgia', serif;
  --font-sans:  'Work Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Elevation */
  --shadow-ambient: 0px 20px 40px rgba(57, 56, 50, 0.06);
  --ghost-border:   rgba(188, 185, 177, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.4s;
}

/* ─── Loading Screen ─── */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #393832;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Mirrors .nav-container so the logo lands in the exact same spot */
.loader-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.75rem var(--space-md);
}

.loader-logo {
  height: 90px;
  width: auto;
  display: block;
  opacity: 0;
  transform: translateY(-20px);
  animation: loaderSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.loader-words {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-word {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: rgba(255, 251, 255, 0.8);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.loader-word.exit-up {
  opacity: 0;
  transform: translateY(-20px);
}

.loader-counter {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 12vw, 8rem);
  color: #fffbff;
  font-variant-numeric: tabular-nums;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.loader-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(78, 75, 68, 0.5);
}

.loader-fill {
  height: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, #7e7b73 0%, #615e5c 100%);
  box-shadow: 0 0 8px rgba(126, 123, 115, 0.35);
  transition: transform 0.1s linear;
}

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

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

@media (min-width: 768px) {
  .loader-counter {
    bottom: 3rem;
    right: 3rem;
  }
}

/* Match the nav container's padding at the desktop breakpoint */
@media (min-width: 1024px) {
  .loader-topbar {
    padding: 0.75rem var(--space-xl);
  }
}

/* Prevent scroll during load */
body.is-loading {
  overflow: hidden;
}

#pageContent {
  opacity: 0;
  transition: opacity 0.7s ease-out;
}

#pageContent.visible {
  opacity: 1;
}

/* ─── Reset ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--on-surface);
  background-color: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ────────────────────────────────────────────────────────────
   NAVIGATION
   ──────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(255, 251, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(255, 251, 255, 0.95);
  box-shadow: var(--shadow-ambient);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.75rem var(--space-md);
}

/* Logo */
.nav-logo img {
  height: 90px;
  width: auto;
  display: block;
}


/* Desktop links */
.nav-links {
  display: none;
  gap: var(--space-lg);
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--duration) var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--on-surface);
  transition: width var(--duration) var(--ease-out);
}

.nav-links a:hover { color: var(--on-surface); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--on-surface); }

/* Right side actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Instagram icon link */
.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--on-surface-variant);
  transition: color var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.nav-social:hover {
  color: var(--on-surface);
  transform: scale(1.1);
}

/* BOOK NOW button */
.btn-book {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-surface);
  border: 1px solid var(--on-surface);
  padding: 0.55rem 1.4rem;
  transition: background var(--duration) var(--ease-out),
              color var(--duration) var(--ease-out);
}

.btn-book:hover {
  background: var(--on-surface);
  color: var(--surface);
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 28px;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--on-surface);
  transition: transform var(--duration) var(--ease-out),
              opacity var(--duration) var(--ease-out);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100dvh;
  background: rgba(255, 251, 255, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--on-surface);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.5s; }

/* ────────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: 110px;
  background: var(--surface-container-low);
  overflow: hidden;
}

/* ── Mobile hero (static layout, no scroll effect) ── */
.hero-mobile {
  display: block;
}

.hero-mobile-image {
  width: 100%;
  overflow: hidden;
}

.hero-mobile-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(12%) contrast(1.02);
}

.hero-mobile-logo {
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  text-align: center;
}

.hero-mobile-logo img {
  width: 80%;
  max-width: 340px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* ── Scroll-animation stage (ContainerScroll, vanilla port) — hidden on mobile ── */
.scroll-stage {
  display: none;
  min-height: 118vh;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding: 0.5rem;
}

.scroll-inner {
  width: 100%;
  position: relative;
  padding: 1rem 0 0;
  perspective: 1000px;
}

/* Title (wordmark) — translateY driven by JS on scroll */
.scroll-title {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  will-change: transform;
}

.hero-eyebrow {
  margin-top: var(--space-md);
  line-height: 0;
}

.hero-eyebrow img {
  width: 70%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.hero-wordmark {
  margin: 0 auto;
  line-height: 0;
}

.hero-wordmark img {
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Card — rotateX + scale driven by JS on scroll */
.scroll-card {
  max-width: 64rem;
  width: 100%;
  height: 30rem;
  margin: var(--space-xl) auto 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: -14px 18px 50px rgba(57, 56, 50, 0.16);
  transform-style: preserve-3d;
  transform: rotateX(20deg) scale(1.05);
  will-change: transform;
}

.scroll-card-inner {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  background: var(--surface-container);
}

.scroll-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(12%) contrast(1.02);
}

/* Remaining hero content, below the image */
.hero-belowcontent {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}

.hero-description {
  max-width: 520px;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--on-surface);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dim));
  color: var(--on-primary);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-ambient);
}

.btn-tertiary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--on-surface);
  position: relative;
  padding-bottom: 4px;
}

.btn-tertiary::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--on-surface);
  transition: height 0.2s ease-in-out;
}

.btn-tertiary:hover::after { height: 2px; }

/* Scroll-stage — tablet/desktop sizing */
@media (min-width: 768px) {
  .hero-mobile   { display: none; }
  .scroll-stage  { display: flex; min-height: 128vh; padding: 1rem 5rem; }
  .scroll-inner  { padding: 2rem 0 0; }
  .scroll-card   { height: 40rem; }
}

/* ────────────────────────────────────────────────────────────
   ABOUT — Two-column split
   ──────────────────────────────────────────────────────────── */
.about {
  background: var(--surface);
  padding: var(--space-3xl) var(--space-md);
  overflow: clip;
  overflow-clip-margin: 2rem;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
}

.about-text { max-width: 500px; }

.about-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--outline);
  margin-bottom: var(--space-xs);
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: var(--on-surface);
  margin-bottom: var(--space-md);
}

.about-body {
  font-size: 0.8125rem;
  line-height: 1.8;
  color: var(--on-surface-variant);
  margin-bottom: var(--space-sm);
}

/* About image — floating offset with Japanese asymmetry */
.about-image {
  position: relative;
  overflow: visible;
  aspect-ratio: 4 / 5;
  transform: rotate(1.5deg) translate(1rem, -1.5rem);
  z-index: 1;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0.75rem;
  left: -0.75rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--outline-variant);
  z-index: -1;
  opacity: 0.4;
}

.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(0.97);
  transition: transform 0.8s var(--ease-out);
}

.about-image:hover img { transform: scale(1.03); }

/* ────────────────────────────────────────────────────────────
   GALLERY — Editorial asymmetric grid (matches original design)
   ──────────────────────────────────────────────────────────── */
.gallery {
  background: var(--surface-container-low);
  padding: var(--space-3xl) var(--space-md);
  overflow: clip;
  overflow-clip-margin: 2rem;
}

.gallery-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--on-surface);
}

.gallery-title em { font-style: italic; }

.gallery-byline {
  max-width: 300px;
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--on-surface-variant);
}

/* Fragment rows — Japanese scattered composition */
.fragment-row {
  display: grid;
  gap: var(--space-lg);
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--space-md) 0;
}

.fragment-row-top {
  grid-template-columns: 1fr;
  margin-bottom: var(--space-xl);
}

.fragment-row-bottom {
  grid-template-columns: 1fr;
}

.fragment-card {
  position: relative;
  overflow: hidden;
  background: var(--surface-container);
  box-shadow: -6px 10px 30px rgba(57, 56, 50, 0.08);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

.fragment-card:hover {
  box-shadow: -8px 14px 40px rgba(57, 56, 50, 0.13);
}

.fragment-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
  filter: grayscale(12%) contrast(0.97);
}

.fragment-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1);
}

/* Mobile: stacked with subtle offsets */
.fragment-sm  {
  aspect-ratio: 3 / 4;
  width: 75%;
  transform: rotate(-1.8deg);
}
.fragment-md  {
  aspect-ratio: 4 / 3;
  width: 85%;
  margin-left: auto;
  transform: rotate(0.8deg) translateY(-1rem);
}
.fragment-lg  {
  aspect-ratio: 4 / 3;
  width: 90%;
  transform: rotate(-0.5deg) translateX(0.5rem);
}
.fragment-wide-left  {
  aspect-ratio: 3 / 2;
  width: 88%;
  transform: rotate(1.2deg);
}
.fragment-wide-right {
  aspect-ratio: 3 / 2;
  width: 78%;
  margin-left: auto;
  transform: rotate(-1.5deg) translateY(-0.75rem);
}

/* ── Mobile only (<640px): clean uniform 2-column grid ── */
@media (max-width: 639px) {
  .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    align-items: start;
  }
  /* header spans the full width above the grid */
  .gallery-header { grid-column: 1 / -1; }
  /* dissolve the row wrappers so all cards flow into one continuous grid */
  .fragment-row { display: contents; }
  /* equalise every card: same size, straightened, no offsets */
  .fragment-sm,
  .fragment-md,
  .fragment-lg,
  .fragment-wide-left,
  .fragment-wide-right {
    width: 100%;
    margin: 0;
    transform: none;
    aspect-ratio: 4 / 5;
  }
}

/* ────────────────────────────────────────────────────────────
   SERVICES — Dark band
   ──────────────────────────────────────────────────────────── */
.services {
  background: var(--on-surface);
  color: var(--on-primary);
  padding: var(--space-3xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.services-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.services-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 400;
  color: var(--on-primary);
  line-height: 1;
}

.services-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--on-primary);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--duration) var(--ease-out);
}

.services-cta:hover { background: rgba(255, 255, 255, 0.18); }

/* Individual service row */
.service-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: baseline;
  gap: var(--space-md);
  padding: 1.5rem 0;
  transition: padding-left 0.2s var(--ease-out);
}

.service-row + .service-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-row:hover { padding-left: 0.5rem; }

.service-idx {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
}

.service-info { display: flex; flex-direction: column; gap: 0.15rem; }

.service-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--on-primary);
}

.service-desc {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

/* ────────────────────────────────────────────────────────────
   SHOP — Two panels
   ──────────────────────────────────────────────────────────── */
.shop {
  background: var(--surface-container-low);
  padding: var(--space-3xl) var(--space-md);
}

.shop-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.shop-header { margin-bottom: var(--space-2xl); }

.shop-pre {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--on-surface-variant);
  margin-bottom: 0.25rem;
}

.shop-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--on-surface);
  line-height: 1;
}

.shop-note {
  margin-top: var(--space-sm);
  max-width: 38ch;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--on-surface-variant);
  font-weight: 500;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

/* Shop panels — offset Japanese composition */
.shop-panel {
  background: var(--surface-container-lowest);
  overflow: visible;
}

.shop-panel:first-child {
  transform: rotate(-0.8deg);
}

.shop-panel:last-child {
  transform: rotate(0.6deg) translateY(-0.5rem);
}

.shop-panel-img {
  width: 100%;
  overflow: hidden;
  box-shadow: -6px 8px 24px rgba(57, 56, 50, 0.08);
}

.shop-panel:first-child .shop-panel-img {
  margin: 0 auto;
}

.shop-panel-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(15%);
  transition: transform 0.7s var(--ease-out), filter 0.4s;
}

.shop-panel:hover .shop-panel-img img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.shop-panel-text {
  padding: 1.25rem 1.75rem 1.75rem;
}

.shop-panel-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--on-surface);
  margin: 0 0 0.5rem;
  line-height: 1;
}

.shop-panel-desc {
  font-size: 0.75rem;
  color: var(--on-surface-variant);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tag-soon {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--outline);
  border: 1px solid var(--ghost-border);
  padding: 0.35rem 0.9rem;
}

/* ────────────────────────────────────────────────────────────
   CONTACT & HOURS
   ──────────────────────────────────────────────────────────── */
.contact {
  background: var(--surface);
  padding: var(--space-3xl) var(--space-md);
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-header { margin-bottom: var(--space-2xl); }

.contact-header .label-sm {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--outline);
  margin-bottom: 0.25rem;
}

.contact-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 400;
  color: var(--on-surface);
  line-height: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.contact-block h3 {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--outline);
  margin-bottom: var(--space-md);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-item a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  font-weight: 400;
  width: fit-content;
  transition: color var(--duration) var(--ease-out);
}

.contact-item a:hover { color: var(--on-surface); }

.hours-list { display: flex; flex-direction: column; }

.hours-row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--on-surface-variant);
}

.hours-row + .hours-row {
  border-top: 1px solid var(--ghost-border);
}

.hours-row:first-child {
  border-top: 1px solid var(--ghost-border);
}

.hours-row:last-child {
  border-bottom: 1px solid var(--ghost-border);
}

.hours-day { color: var(--outline); }
.hours-time { color: var(--on-surface-variant); }
.hours-time.closed { color: var(--outline); font-style: italic; }

/* Google Maps embed */
.contact-map {
  margin-top: var(--space-2xl);
  overflow: hidden;
  background: var(--surface-container);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 350px;
  filter: grayscale(25%) contrast(0.95);
  transition: filter 0.5s var(--ease-out);
}

.contact-map:hover iframe {
  filter: grayscale(0%) contrast(1);
}

/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface-container-highest);
  padding: var(--space-lg) var(--space-md);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-surface);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.footer-links a {
  font-size: 0.6875rem;
  color: var(--on-surface-variant);
  letter-spacing: 0.06em;
  transition: color var(--duration) var(--ease-out);
}

.footer-links a:hover { color: var(--on-surface); }

.footer-copy {
  font-size: 0.625rem;
  color: var(--outline);
  letter-spacing: 0.05em;
}

/* ────────────────────────────────────────────────────────────
   SCROLL REVEAL
   ──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.47s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE — Tablet  ≥ 640px
   ──────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .about-inner     { grid-template-columns: 1fr 1fr; }
  .gallery-header  { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .fragment-row-top    { grid-template-columns: 1fr 1fr 1fr; }
  .fragment-row-bottom { grid-template-columns: 1fr 1fr; }

  /* Japanese scatter — tablet */
  .fragment-sm {
    width: 100%;
    transform: rotate(-2.2deg) translateY(1.5rem);
  }
  .fragment-md {
    width: 100%;
    margin-left: 0;
    transform: rotate(1deg) translateY(-0.5rem);
  }
  .fragment-lg {
    width: 100%;
    transform: rotate(-0.6deg) translate(-0.5rem, 1rem);
  }
  .fragment-wide-left {
    width: 100%;
    transform: rotate(0.8deg) translateY(0.5rem);
  }
  .fragment-wide-right {
    width: 100%;
    transform: rotate(-1.8deg) translateY(-1rem);
  }

  .shop-grid       { grid-template-columns: 1fr 1fr; }
  .contact-grid    { grid-template-columns: 1fr 1fr; }
  .footer-inner    { flex-direction: row; justify-content: space-between; text-align: left; }
  .contact-map iframe { height: 400px; }
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE — Desktop  ≥ 1024px
   ──────────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  /* 3-column grid so the menu is centred on the page, aligned with the hero */
  .nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.75rem var(--space-xl);
  }
  .nav-logo    { justify-self: start; }
  .nav-links   { display: flex; justify-self: center; }
  .nav-actions { justify-self: end; }
  .menu-toggle { display: none; }

  /* About */
  .about { padding: var(--space-4xl) var(--space-xl); }

  /* Gallery — Japanese scattered composition (desktop) */
  .gallery { padding: var(--space-4xl) var(--space-xl); }
  .fragment-row-top {
    grid-template-columns: 0.9fr 1.3fr 1.8fr;
    gap: var(--space-xl);
    align-items: start;
  }
  .fragment-sm  {
    aspect-ratio: 3 / 4;
    transform: rotate(-2.5deg) translate(-0.5rem, 2rem);
  }
  .fragment-md  {
    aspect-ratio: auto;
    transform: rotate(1.2deg) translateY(-1rem);
  }
  .fragment-lg  {
    aspect-ratio: auto;
    transform: rotate(-0.7deg) translate(0.75rem, 1.5rem);
  }
  .fragment-row-bottom {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-lg);
  }
  .fragment-wide-left  {
    aspect-ratio: 16 / 10;
    transform: rotate(0.9deg) translateX(-0.5rem);
  }
  .fragment-wide-right {
    aspect-ratio: 4 / 3;
    transform: rotate(-2deg) translate(0.5rem, -1.5rem);
  }

  /* Services */
  .services { padding: var(--space-4xl) var(--space-xl); }

  /* Shop */
  .shop { padding: var(--space-4xl) var(--space-xl); }

  /* Contact */
  .contact { padding: var(--space-3xl) var(--space-xl); }
  .contact-map iframe { height: 450px; }

  .site-footer { padding: var(--space-lg) var(--space-xl); }
}

