@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&family=Noto+Sans+JP:wght@300;400;500&display=swap');

:root{
  --ink: #141414;
  --ink-soft: #3a3a3a;
  --paper: #f4f1ea;
  --paper-deep: #ece7db;
  --line: #d9d3c3;
  --seal: #8a2c22;
  --muted: #7a7264;
  --max-w: 1180px;
  --serif: 'Shippori Mincho', 'Noto Serif JP', Georgia, serif;
  --sans: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; }
.wrap{ max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

body.intro-locked{ overflow: hidden; height: 100%; }

/* ---------- Intro video overlay ---------- */
.intro-overlay{
  position: fixed; inset: 0; z-index: 1000;
  background: var(--paper) url('../images/intro-overlay-bg.jpg') center / cover no-repeat;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.intro-overlay video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.intro-overlay.is-hidden{ opacity: 0; pointer-events: none; }

.intro-brand{
  position: absolute; z-index: 2; top: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
}
.intro-brand img{ width: 46px; height: 46px; object-fit: contain; }
.intro-brand span{
  font-family: var(--serif); font-weight: 600; font-size: 15px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--ink);
}
.intro-brand .intro-tagline{
  font-family: var(--sans); font-weight: 400; font-size: 10.5px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted); margin-top: -4px;
}

.intro-skip{
  position: absolute; z-index: 2; bottom: 44px; left: 50%; transform: translateX(-50%);
  background: var(--ink); border: 1px solid var(--ink);
  color: var(--paper); font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 12px 30px; border-radius: 999px; cursor: pointer;
  transition: all 0.2s ease;
}
.intro-skip:hover{ background: #000; border-color: #000; }

.intro-stamp{
  position: absolute; z-index: 2; bottom: 32px; right: 32px;
  width: 58px; height: auto; opacity: 0.92;
  pointer-events: none;
}

/* Ink-splatter accents on the intro overlay — desktop only. Three corner
   clusters (top-right, bottom-right, bottom-left) that fade in once,
   each at its own staggered moment, and then stay put for a subtle
   ambient effect while the overlay is up. Sits above the video/
   background but below the brand mark, stamp, and skip button
   (z-index 2). */
.intro-splatters{ position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.intro-splatters img{
  position: absolute; height: auto; opacity: 0;
  animation: splatter-fade 1.8s ease-in-out forwards;
}
.intro-splatters .splatter-1{ top: -50px; right: -40px; width: 240px; animation-delay: 0.3s; }
.intro-splatters .splatter-2{ bottom: -60px; right: -50px; width: 340px; animation-delay: 1.4s; }
.intro-splatters .splatter-3{ bottom: -50px; left: -40px; width: 260px; animation-delay: 2.5s; }

@keyframes splatter-fade{
  0% { opacity: 0; }
  100% { opacity: 0.85; }
}

@media (max-width: 720px){
  .intro-splatters{ display: none; }
}

/* Site-wide seal — same corner spot as the intro overlay's stamp, but
   fixed to the viewport so it stays put on every page as you scroll.
   Desktop only; on mobile the seal only appears during the intro. */
.site-stamp{
  position: fixed; z-index: 900; bottom: 32px; right: 32px;
  width: 58px; height: auto; opacity: 0.92;
  pointer-events: none;
}
@media (max-width: 720px){
  .site-stamp{ width: 32px; bottom: 16px; right: 16px; }
}

@media (max-width: 720px){
  .intro-brand{ top: 24px; }
  .intro-brand img{ width: 36px; height: 36px; }
  .intro-brand span{ font-size: 12px; letter-spacing: 2px; }
  .intro-brand .intro-tagline{ font-size: 9px; letter-spacing: 1px; }
  .intro-skip{ bottom: 26px; padding: 10px 24px; font-size: 10px; }
  .intro-stamp{
    width: 58px; right: auto; bottom: 84px;
    left: 50%; transform: translateX(-50%);
  }

  /* On narrow/tall screens, object-fit:cover was zooming the (landscape)
     video in aggressively to fill the portrait frame. Instead, size the
     video's own box to match its real 16:9 aspect ratio (rather than an
     arbitrary square-ish box) so there's no internal letterboxing —
     the overlay's paper-color background shows through around it since
     that space is simply outside the video element entirely. */
  .intro-overlay video{
    inset: auto; top: 50%; left: 48%;
    transform: translate(-50%, -50%);
    width: 250%; aspect-ratio: 16 / 9; height: auto;
    object-fit: cover;
    -webkit-mask-image: radial-gradient(ellipse 68% 68% at center, #000 55%, transparent 100%);
    mask-image: radial-gradient(ellipse 68% 68% at center, #000 55%, transparent 100%);
    -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  }
}

/* ---------- Header ---------- */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,241,234,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap{
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.brand{ display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img{ width: 38px; height: 38px; object-fit: contain; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .en{
  font-family: var(--serif); font-size: 19px; letter-spacing: 2px; font-weight: 600;
  text-transform: uppercase; color: var(--ink);
}
.brand-text .jp{ font-size: 11px; letter-spacing: 3px; color: var(--muted); margin-top: 2px; }

.main-nav ul{ list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
.main-nav a{
  text-decoration: none; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink); position: relative; padding-bottom: 4px;
}
.main-nav a::after{
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--seal); transition: width .25s ease;
}
.main-nav a:hover::after{ width: 100%; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 56px 24px 4px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--paper);
  overflow: hidden;
}
.hero-waves{ position: absolute; inset: 0; z-index: 0; }
.hero-waves svg{ width: 100%; height: 100%; display: block; }
.hero-waves .wave{ fill: none; stroke: #141414; stroke-linecap: round; }
.hero-waves .wave-1{ stroke: var(--seal); animation: drift-a 9s ease-in-out infinite; }
.hero-waves .wave-4{ animation: drift-a 18s ease-in-out infinite reverse; }

.hero-waves .flow-mid-1{ animation: flow-1 10s ease-in-out infinite; }
.hero-waves .flow-mid-2{ animation: flow-2 13s ease-in-out infinite; }
.hero-waves .flow-mid-3{ animation: flow-3 16.5s ease-in-out infinite; }
.hero-waves .flow-thin-1{ animation: flow-4 8s ease-in-out infinite; }
.hero-waves .flow-thin-2{ animation: flow-5 11.5s ease-in-out infinite; }

@keyframes drift-a{
  0%,100%{ transform: translateX(-42px) translateY(0px); }
  50%{ transform: translateX(42px) translateY(16px); }
}
@keyframes flow-1{
  0%,100%{ transform: translate(-38px,-16px); }
  50%{ transform: translate(42px,6px); }
}
@keyframes flow-2{
  0%,100%{ transform: translate(32px,8px); }
  50%{ transform: translate(-46px,-10px); }
}
@keyframes flow-3{
  0%,100%{ transform: translate(-26px,13px); }
  50%{ transform: translate(36px,-8px); }
}
@keyframes flow-4{
  0%,100%{ transform: translate(26px,-10px); }
  50%{ transform: translate(-42px,10px); }
}
@keyframes flow-5{
  0%,100%{ transform: translate(-32px,10px); }
  50%{ transform: translate(38px,-13px); }
}
@media (prefers-reduced-motion: reduce){
  .hero-waves .wave{ animation: none !important; }
}

.hero::before{
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(244,241,234,0.15) 0%, rgba(244,241,234,0.55) 70%);
}
.hero-inner{ position: relative; z-index: 2; padding: 0 24px; }

/* ---------- Pottery banner ---------- */
.pottery-banner{
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  background: var(--paper);
  padding: 0;
  overflow: hidden;
}
.pottery-banner img{
  width: 100%;
  height: auto;
  display: block;
}
.hero-kicker{
  font-size: 12px; letter-spacing: 5px; text-transform: uppercase; color: var(--seal);
  margin-bottom: 12px; font-weight: 500;
}
.hero h1{
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: 4px; margin: 0 0 14px;
  text-transform: uppercase;
}
.hero-jp{ font-size: 15px; letter-spacing: 6px; color: var(--ink-soft); margin: 0 0 18px; }
.hero p.sub{
  max-width: 560px; margin: 0 auto 24px; color: var(--ink-soft); font-size: 16px;
}
.btn{
  display: inline-block; padding: 14px 36px; border: 1px solid var(--ink);
  text-decoration: none; text-transform: uppercase; letter-spacing: 2px; font-size: 12px;
  color: var(--ink); transition: all .25s ease; background: transparent;
}
.btn:hover{ background: var(--ink); color: var(--paper); }
.btn-dark{ background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark:hover{ background: transparent; color: var(--ink); }

.divider{
  width: 100%; max-width: 480px; height: 24px; margin: 0 auto;
  background: url('../images/divider-brush.svg') center / contain no-repeat;
  opacity: 0.8;
}

/* ---------- Section headings ---------- */
.section{ padding: 96px 0; }
.section-head{ text-align: center; margin-bottom: 56px; }
.section-kicker{
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--seal);
  margin-bottom: 12px;
}
.section-head h2{
  font-family: var(--serif); font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 2px; margin: 0 0 18px; text-transform: uppercase;
}
.section-head p{ color: var(--muted); max-width: 560px; margin: 0 auto; }

.btn-pill{
  display: inline-block; margin-top: 26px;
  background: var(--ink); color: var(--paper); border: 1px solid var(--ink);
  border-radius: 999px; padding: 11px 28px; font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; font-family: var(--sans);
  transition: all .2s ease;
}
.btn-pill:hover{ background: transparent; color: var(--ink); }

/* ---------- Shop ---------- */
#shop{ background: var(--paper); padding-top: 24px; scroll-margin-top: 84px; position: relative; overflow: hidden; }
#shop-page{ background: var(--paper); padding-top: 56px; }

.product-card{ position: relative; z-index: 1; }

/* Decorative brush-character watermark (homepage "New in the Gallery").
   Sits as a plain sibling of .wrap inside #shop (see index.html), so it
   can be positioned relative to the full-width section and reach the
   true page edge — a CSS Grid item confined to the max-width .wrap
   couldn't do that. Desktop: pinned behind the cards on the left edge
   of the website, cropped ~7% off. Mobile: on top of the cards, pinned
   to the right edge, also cropped ~7% off. */
.shop-character{
  position: absolute;
  left: 0;
  top: 420px;
  transform: translate(-27%, 165px);
  z-index: 0;
  width: 300px; height: auto; opacity: 0.92;
  pointer-events: none;
}

@media (max-width: 720px){
  .shop-character{
    left: auto;
    right: 0;
    top: auto;
    bottom: 40px;
    transform: translate(20%, -293px);
    z-index: 5;
    width: 30.7vw;
  }
}

.filter-bar{
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 20px;
}
.filter-pill{
  border: 1px solid var(--line); background: transparent; color: var(--ink-soft);
  padding: 9px 20px; border-radius: 999px; font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; transition: all .2s ease; font-family: var(--sans);
}
.filter-pill:hover{ border-color: var(--ink); color: var(--ink); }
.filter-pill.is-active{ background: var(--ink); border-color: var(--ink); color: var(--paper); }

.result-count{
  text-align: center; font-size: 12px; letter-spacing: 1px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 44px;
}

.product-grid{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 34px 24px;
}
.product-card{
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden;
  text-decoration: none; color: inherit;
  animation: fade-up .5s ease both; animation-delay: var(--delay, 0ms);
}
@keyframes fade-up{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}
.product-image{
  aspect-ratio: 1 / 1; overflow: hidden; background: var(--paper-deep);
}
.product-image img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-image img{ transform: scale(1.05); }

.product-info-top{ padding: 20px 22px 4px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-category{
  font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--seal); margin: 0;
}
.product-title{
  font-family: var(--serif); font-size: 17px; line-height: 1.3; margin: 0; letter-spacing: .3px;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  line-clamp: 2; overflow: hidden; text-overflow: ellipsis;
}
.product-desc{
  font-size: 13.5px; color: var(--muted); margin: 0;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  line-clamp: 2; overflow: hidden; text-overflow: ellipsis;
}
.product-footer{
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px 22px; border-top: 1px solid var(--line);
}
.product-price{ font-family: var(--serif); font-size: 17px; }
.btn-inquire{
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px; color: var(--ink);
  transition: opacity .2s ease;
}
.btn-inquire:hover{ opacity: .55; }

.empty-state{
  text-align: center; padding: 60px 20px; color: var(--muted); font-family: var(--serif); font-size: 18px;
}

/* ---------- Product Detail Page ---------- */
.back-link{
  display: inline-block; margin-bottom: 32px; font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; color: var(--ink-soft);
  border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: color .2s ease, border-color .2s ease;
}
.back-link:hover{ color: var(--ink); border-color: var(--ink); }

.product-detail-grid{
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start;
}
.product-gallery{
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.product-gallery img{
  width: 100%; height: auto; display: block;
  background: var(--paper-deep);
}
.product-gallery img.tile-main{
  grid-column: span 2;
}
.product-detail-info .product-category{ margin-bottom: 6px; }
.pd-title{
  font-family: var(--serif); font-size: clamp(26px, 3.4vw, 38px); letter-spacing: 1px;
  margin: 0 0 14px;
}
.pd-price{ font-family: var(--serif); font-size: 22px; margin: 0 0 22px; }
.pd-desc{ color: var(--ink-soft); margin: 0 0 32px; }
.pd-not-found{ text-align: center; padding: 40px 20px; font-family: var(--serif); font-size: 20px; color: var(--muted); }

@media (max-width: 820px){
  .product-detail-grid{ grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Stories / Journal ---------- */
.story-grid{
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 34px 28px;
}
.story-card{
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: box-shadow .25s ease;
}
.story-card:hover{ box-shadow: 0 10px 28px rgba(20,20,20,0.1); }
.story-cover{ aspect-ratio: 16 / 9; overflow: hidden; background: var(--paper-deep); }
.story-cover img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.story-card:hover .story-cover img{ transform: scale(1.05); }
.story-info{ padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.story-date{
  font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--seal); margin: 0;
}
.story-title{ font-family: var(--serif); font-size: 20px; margin: 0; letter-spacing: .5px; }
.story-excerpt{ font-size: 13.5px; color: var(--muted); margin: 0; flex: 1; }
.story-readmore{
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-top: 10px;
  padding-top: 14px; border-top: 1px solid var(--line); color: var(--ink);
}

.article-hero{ aspect-ratio: 16 / 9; overflow: hidden; margin-bottom: 40px; background: var(--paper-deep); }
.article-hero img{ width: 100%; height: 100%; object-fit: cover; }
.article-meta{ text-align: center; margin-bottom: 44px; }
.article-date{
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--seal); margin: 0 0 14px;
}
.article-title{
  font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); letter-spacing: 1px; margin: 0;
}
.article-body{ max-width: 720px; margin: 0 auto; color: var(--ink-soft); }
.article-body p{ margin: 0 0 22px; font-size: 16px; line-height: 1.85; }
.article-body figure{ margin: 36px 0; }
.article-body figure img{ width: 100%; aspect-ratio: 16/10; object-fit: cover; }
/* Uncropped variant — for including a banner/portrait image at its full,
   natural aspect ratio somewhere in the article body, rather than forced
   into the 16:10 crop above (which cuts off faces on portrait photos). */
.article-body figure.figure-full{ text-align: center; }
.article-body figure.figure-full img{
  width: auto; height: auto; max-width: 100%; max-height: 640px;
  aspect-ratio: auto; object-fit: contain; margin: 0 auto;
}
.article-body figcaption{
  font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; letter-spacing: .3px;
}
.story-not-found{
  text-align: center; padding: 40px 20px; font-family: var(--serif); font-size: 20px; color: var(--muted);
}

@media (max-width: 720px){
  .story-grid{ grid-template-columns: 1fr; gap: 22px; }
  .article-body p{ font-size: 15px; }
}

/* ---------- About ---------- */
#about{
  position: relative;
  background: var(--paper-deep);
  scroll-margin-top: 84px;
}
.about-inner{
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-art{ display: flex; justify-content: center; }
.about-art img{ width: 100%; max-width: 340px; height: auto; display: block; }

/* Photo collage replacing the single illustration in "Our Story" — a wide
   shot on top, three narrower shots below, separated by thin torn-paper
   strips (reusing the site's torn-edge SVG filter technique at a much
   smaller scale suited to these thin dividers). */
.story-collage{ width: 100%; max-width: 620px; }
.collage-top img{ width: 100%; max-width: none; height: 320px; object-fit: cover; display: block; }
.collage-divider-h{
  height: 10px; background: var(--paper);
  filter: url(#collage-tear-h);
}
.collage-bottom{ display: flex; align-items: stretch; }
.collage-cell{ flex: 1; min-width: 0; }
.collage-cell img{ width: 100%; max-width: none; height: 240px; object-fit: cover; display: block; }
.collage-divider-v{
  width: 8px; flex-shrink: 0; background: var(--paper);
  filter: url(#collage-tear-v);
}

@media (max-width: 480px){
  .collage-top img{ height: 220px; }
  .collage-cell img{ height: 150px; }
}
.about-copy h2{
  font-family: var(--serif); font-size: clamp(26px, 3.4vw, 36px); letter-spacing: 1.5px;
  margin: 0 0 20px; text-transform: uppercase;
}
.about-copy p{ color: var(--ink-soft); margin: 0 0 16px; }
.about-copy .signoff{ font-family: var(--serif); font-style: italic; color: var(--seal); margin-top: 24px; }

@media (max-width: 820px){
  .about-inner{ grid-template-columns: 1fr; }
  .about-art{ order: -1; }
}

/* ---------- Transition banner (into Purchasing) ---------- */
.transition-banner{
  position: relative;
  width: 100%;
  height: clamp(280px, 38vw, 520px);
  overflow: hidden;
  line-height: 0;
  scroll-margin-top: 84px;
}
.transition-banner img{
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.torn-edge{
  position: absolute; z-index: 2; top: 0; left: -6%;
  width: 112%; height: 40px;
  background: var(--paper);
  filter: url(#torn-edge-filter);
  pointer-events: none;
}
@media (max-width: 720px){
  .torn-edge{ height: 15px; filter: url(#torn-edge-filter-mobile); }
}
.transition-banner::after{
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 60%;
  background: linear-gradient(to bottom, rgba(20,20,20,0) 0%, var(--ink) 96%);
  pointer-events: none;
}

@media (max-width: 720px){
  .transition-banner{ height: clamp(220px, 60vw, 360px); }
}

/* ---------- Contact strip ---------- */
.contact-strip{
  background: var(--ink); color: var(--paper); text-align: center; padding: 80px 24px;
}
.contact-strip .section-kicker{ color: #c98f7f; }
.contact-strip h2{
  font-family: var(--serif); font-size: clamp(26px, 3.6vw, 38px); letter-spacing: 1.5px;
  margin: 14px 0 18px; text-transform: uppercase;
}
.contact-strip p{ color: #cfc9bb; max-width: 520px; margin: 0 auto 30px; }
.contact-strip a.email{
  font-family: var(--serif); font-size: 20px; color: var(--paper); text-decoration: none;
  border-bottom: 1px solid rgba(244,241,234,0.4); padding-bottom: 4px;
}
.contact-strip a.email:hover{ border-color: var(--paper); }

/* ---------- Footer ---------- */
.site-footer{
  background: url('../images/footer-texture.svg') center / cover no-repeat;
  color: #cfc9bb; padding: 64px 0 28px;
}
.footer-inner{
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 48px;
}
.footer-brand .brand-text .en{ color: var(--paper); }
.footer-brand .brand-text .jp{ color: #9a9384; }
.footer-brand p{ max-width: 280px; font-size: 13px; color: #a39c8c; margin-top: 14px; }
.footer-col h4{
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #a39c8c;
  margin: 0 0 16px;
}
.footer-col ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a{ text-decoration: none; font-size: 13.5px; color: #cfc9bb; }
.footer-col a:hover{ color: var(--paper); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-size: 11.5px; color: #7d7768; letter-spacing: .5px;
}

/* ---------- Utility ---------- */
.center{ text-align: center; }

/* ---------- Mobile ---------- */
@media (max-width: 720px){
  .wrap{ padding: 0 20px; }

  .site-header .wrap{
    flex-direction: column; gap: 12px; padding-top: 14px; padding-bottom: 14px;
  }
  .main-nav ul{ gap: 20px; flex-wrap: wrap; justify-content: center; }
  .main-nav a{ font-size: 11.5px; }

  .hero{ padding: 40px 18px 4px; }
  .pottery-banner img{ width: 124%; max-width: 124%; margin-left: -12%; }

  /* The hero SVG gets scaled/cropped differently on narrow, tall mobile
     viewports, which dampens the wave motion — push amplitude further
     here so the flowing lines stay clearly visible. */
  @keyframes drift-a{
    0%,100%{ transform: translateX(-70px) translateY(0px); }
    50%{ transform: translateX(70px) translateY(26px); }
  }
  @keyframes flow-1{
    0%,100%{ transform: translate(-60px,-26px); }
    50%{ transform: translate(66px,10px); }
  }
  @keyframes flow-2{
    0%,100%{ transform: translate(50px,13px); }
    50%{ transform: translate(-72px,-16px); }
  }
  @keyframes flow-3{
    0%,100%{ transform: translate(-42px,20px); }
    50%{ transform: translate(56px,-13px); }
  }
  @keyframes flow-4{
    0%,100%{ transform: translate(42px,-16px); }
    50%{ transform: translate(-66px,16px); }
  }
  @keyframes flow-5{
    0%,100%{ transform: translate(-50px,16px); }
    50%{ transform: translate(60px,-20px); }
  }
  .hero-kicker{ font-size: 10.5px; letter-spacing: 3px; margin-bottom: 14px; }
  .hero h1{ letter-spacing: 2px; margin-bottom: 14px; }
  .hero-jp{ font-size: 13px; letter-spacing: 4px; margin-bottom: 20px; }
  .hero p.sub{ font-size: 14.5px; margin-bottom: 26px; }
  .btn{ padding: 12px 28px; font-size: 11px; }

  .section{ padding: 56px 0; }
  #shop{ padding-top: 18px; }
  .section-head{ margin-bottom: 40px; }

  .filter-bar{ gap: 8px; }
  .filter-pill{ padding: 7px 14px; font-size: 11px; }

  .product-grid{ gap: 22px 16px; grid-template-columns: repeat(2, 1fr); }

  .contact-strip{ padding: 56px 20px; }

  .footer-inner{ flex-direction: column; text-align: center; gap: 32px; }
  .footer-brand p{ margin-left: auto; margin-right: auto; }
  .footer-col ul{ align-items: center; }
  .footer-bottom{ flex-direction: column; text-align: center; gap: 8px; }

  .product-detail-grid{ gap: 24px; }
  .product-gallery{ gap: 8px; }
}

@media (max-width: 420px){
  .hero h1{ font-size: 32px; }
  .brand-text .en{ font-size: 16px; }
  .brand img{ width: 32px; height: 32px; }

  .product-grid{ gap: 16px 10px; }
  .product-info-top{ padding: 12px 14px 2px; gap: 4px; }
  .product-title{ font-size: 14.5px; }
  .product-category{ font-size: 9.5px; }
  .product-desc{ font-size: 11.5px; }
  .product-footer{ padding: 10px 14px 14px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .product-price{ font-size: 14px; }
  .btn-inquire{ font-size: 9.5px; }
}
