/* ==========================================================================
   TANEHATAKE — Futuristic Premium Product Studio
   Palette: void #05070A · chalk #E8F0EA · leaf #3DDC97 · dim #12181A
   Fonts: Space Grotesk + Noto Sans JP
   ========================================================================== */

:root {
  --void: #05070A;
  --chalk: #E8F0EA;
  --leaf: #3DDC97;
  --green: #3DDC97;
  --orange: #f0a04b;
  --red: #e85a4f;
  --dim: #12181A;
  --dim-2: #1A2225;
  --muted: rgba(232, 240, 234, 0.55);
  --line: rgba(232, 240, 234, 0.1);
  --line-strong: rgba(232, 240, 234, 0.18);
  --font-display: "Space Grotesk", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", "Space Grotesk", sans-serif;
  --ease-slow: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
  --container: 72rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--void);
  color: var(--chalk);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul, ol, dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p, figure, blockquote, address {
  margin: 0;
  font-style: normal;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -3rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--chalk);
  color: var(--void);
  font-size: 0.85rem;
  transition: top 0.3s var(--ease-slow);
}

.skip-link:focus {
  top: 0.75rem;
}

.th-container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.mt-3 { margin-top: 0.75rem; }
.mt-12 { margin-top: 3rem; }

/* —— Typography —— */
.th-eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
}

.th-eyebrow--chalk {
  color: rgba(232, 240, 234, 0.5);
}

.th-eyebrow--chalk {
  color: rgba(232, 240, 234, 0.5);
}

.th-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--chalk);
}

.th-display--chalk { color: var(--chalk); }
.th-display--card {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.th-meta {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.th-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--chalk);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.15rem;
  transition: color 0.45s var(--ease-slow), border-color 0.45s var(--ease-slow);
}

.th-link:hover {
  color: var(--leaf);
  border-color: var(--leaf);
}

/* —— Buttons —— */
.th-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background 0.5s var(--ease-slow), color 0.5s var(--ease-slow), border-color 0.5s var(--ease-slow), transform 0.5s var(--ease-slow);
}

.th-btn--chalk {
  background: var(--chalk);
  color: var(--void);
}

.th-btn--chalk:hover {
  background: #fff;
}

.th-btn--ghost {
  background: transparent;
  color: var(--chalk);
  border-color: var(--line-strong);
}

.th-btn--ghost:hover {
  border-color: var(--chalk);
}

.th-btn--leaf {
  background: transparent;
  color: var(--leaf);
  border-color: rgba(61, 220, 151, 0.45);
}

.th-btn--leaf:hover {
  background: rgba(61, 220, 151, 0.08);
  border-color: var(--leaf);
}

.th-btn--line {
  background: transparent;
  color: var(--chalk);
  border-color: var(--line-strong);
}

.th-btn--sm {
  min-height: 2.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

/* —— Reveal —— */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-slow), transform 1.1s var(--ease-slow);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  background: transparent;
  transition: background 0.6s var(--ease-slow), backdrop-filter 0.6s var(--ease-slow), border-color 0.6s var(--ease-slow);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 10, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.site-brand__en {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.site-nav {
  display: none;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.site-nav a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(232, 240, 234, 0.72);
  transition: color 0.4s var(--ease-slow);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--chalk);
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 1.15rem;
}

.nav-toggle__bars span {
  display: block;
  height: 1px;
  background: var(--chalk);
  transition: transform 0.4s var(--ease-slow), opacity 0.4s;
}

@media (min-width: 960px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
}

/* —— Drawer —— */
.th-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  pointer-events: none;
}

.th-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.th-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.45s var(--ease-slow);
}

.th-drawer.is-open .th-drawer__backdrop {
  opacity: 1;
}

.th-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 22rem);
  height: 100%;
  background: var(--dim);
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease-slow);
}

.th-drawer.is-open .th-drawer__panel {
  transform: none;
}

.th-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.th-drawer__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.th-drawer__close {
  font-size: 0.8rem;
  color: var(--muted);
}

.th-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.th-drawer__nav a {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.th-drawer__phone {
  margin-top: auto;
  padding-top: 2rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--leaf);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 10% -20% auto 40%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(61, 220, 151, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 2rem 4rem;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
}

.hero__lede {
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  justify-self: end;
  width: 100%;
}

.hero__light {
  position: absolute;
  width: 120%;
  height: 45%;
  top: 28%;
  left: -10%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(232, 240, 234, 0.04) 35%,
    rgba(232, 240, 234, 0.12) 50%,
    rgba(61, 220, 151, 0.05) 58%,
    transparent 78%
  );
  filter: blur(18px);
  pointer-events: none;
  will-change: transform;
  animation: light-sweep 10s var(--ease-slow) infinite alternate;
}

@keyframes light-sweep {
  from { opacity: 0.45; transform: translateX(-6%) scaleX(0.96); }
  to { opacity: 0.95; transform: translateX(6%) scaleX(1.04); }
}

.hero__figure {
  position: relative;
  width: min(100%, 28rem);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--dim);
}

.hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 900px) {
  .hero__figure {
    width: min(100%, 34rem);
    margin-right: -2vw;
  }
}

/* —— Featured sticky —— */
.featured-sticky {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--void);
}

.featured-sticky__grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .featured-sticky__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
  }

  .featured-sticky__visual {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }
}

.featured-sticky__visual figure {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--dim);
}

.featured-sticky__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-sticky__sub {
  margin: 0.75rem 0 2.5rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 22rem;
}

.spec-reveal {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
  border-top: 1px solid var(--line);
}

.spec-reveal li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.spec-reveal__key {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf);
  padding-top: 0.15rem;
}

.spec-reveal__val {
  color: rgba(232, 240, 234, 0.78);
  font-weight: 300;
  font-size: 0.95rem;
}

.featured-sticky__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* —— Category strip —— */
.cat-strip {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cat-strip .section-head {
  margin-bottom: 2rem;
}

.cat-strip__track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0 var(--gutter) 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--dim-2) transparent;
}

.cat-strip__track::-webkit-scrollbar {
  height: 4px;
}

.cat-strip__track::-webkit-scrollbar-thumb {
  background: var(--dim-2);
}

.cat-tile {
  position: relative;
  flex: 0 0 min(78vw, 18rem);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--dim);
}

@media (min-width: 900px) {
  .cat-tile {
    flex-basis: min(28vw, 20rem);
  }
}

.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-slow);
}

.cat-tile:hover img {
  transform: scale(1.05);
}

.cat-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(5, 7, 10, 0.85) 0%, transparent 55%);
}

.cat-tile__jp {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
}

.cat-tile__en {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* —— Section heads —— */
.section-head {
  margin-bottom: 2.5rem;
}

.section-head__lede {
  margin-top: 0.85rem;
  max-width: 28rem;
  color: var(--muted);
  font-weight: 300;
}

.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-head--light .th-display {
  color: var(--chalk);
}

/* —— Arrivals swiper —— */
.arrivals {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--dim);
}

.arrivals-swiper {
  overflow: visible;
  padding-bottom: 1rem;
}

.arrivals-swiper .swiper-slide {
  height: auto;
}

.arrival-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--void);
}

.arrival-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--dim-2);
}

.arrival-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-slow);
}

.arrival-card:hover .arrival-card__media img {
  transform: scale(1.04);
}

.arrival-card__body {
  padding: 1.25rem 1.15rem 1.5rem;
}

.arrival-card__cat {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.5rem;
}

.arrival-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.arrival-card__sub {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}

.arrival-card__price {
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.arrivals-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.arrivals-nav__btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line-strong);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--chalk);
  transition: border-color 0.4s, color 0.4s, background 0.4s;
}

.arrivals-nav__btn:hover {
  border-color: var(--leaf);
  color: var(--leaf);
}

/* —— Showcase —— */
.showcase {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.showcase__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .showcase__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }

  .showcase__item--1 {
    grid-column: 1 / 8;
  }

  .showcase__item--2 {
    grid-column: 8 / 13;
    margin-top: 4rem;
  }

  .showcase__item--3 {
    grid-column: 3 / 11;
  }
}

.showcase__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--dim);
  margin-bottom: 1.15rem;
}

.showcase__item--1 .showcase__media {
  aspect-ratio: 5 / 4;
}

.showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.showcase__desc {
  margin-top: 0.5rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.92rem;
  max-width: 28rem;
}

.showcase__price {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  color: var(--leaf);
  font-size: 0.9rem;
}

/* —— Editorial compare —— */
.compare-editorial {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--dim);
}

.compare-editorial__grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

@media (min-width: 768px) {
  .compare-editorial__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.compare-card {
  background: var(--void);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.compare-card__line {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.75rem;
}

.compare-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.compare-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.compare-card__metrics div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.compare-card__metrics dt {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.compare-card__metrics dd {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: right;
}

/* —— Lifestyle —— */
.lifestyle {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.lifestyle__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .lifestyle__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(10rem, auto);
    gap: 0.75rem;
  }

  .lifestyle__item--1 { grid-column: 1 / 4; grid-row: 1 / 3; }
  .lifestyle__item--2 { grid-column: 4 / 7; }
  .lifestyle__item--3 { grid-column: 4 / 7; }
  .lifestyle__item--4 { grid-column: 1 / 3; }
  .lifestyle__item--5 { grid-column: 3 / 5; }
  .lifestyle__item--6 { grid-column: 5 / 7; }
}

.lifestyle__item {
  position: relative;
  overflow: hidden;
  background: var(--dim);
  min-height: 11rem;
}

.lifestyle__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 11rem;
  transition: transform 1.3s var(--ease-slow);
}

.lifestyle__item:hover img {
  transform: scale(1.04);
}

.lifestyle__item figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--chalk);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

/* —— Tech story —— */
.tech-story {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #030507;
  border-top: 1px solid var(--line);
}

.tech-story__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1rem;
}

.tech-step {
  display: grid;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 700px) {
  .tech-step {
    grid-template-columns: 6rem 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.tech-step__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(61, 220, 151, 0.35);
  line-height: 1;
}

.tech-step__en {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--leaf);
  margin-bottom: 0.5rem;
}

.tech-step__jp {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.tech-step__text {
  max-width: 36rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
}

/* —— Reviews —— */
.reviews {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.reviews__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  padding: 1.75rem 1.5rem;
  background: var(--dim);
  border-left: 2px solid rgba(61, 220, 151, 0.35);
}

.review-card__quote {
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.review-card__meta {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  font-size: 0.8rem;
  color: var(--muted);
}

.review-card__meta cite {
  font-style: normal;
  font-family: var(--font-display);
  color: var(--chalk);
  letter-spacing: 0.06em;
}

/* —— Studio CTA —— */
.studio-cta {
  padding: clamp(4rem, 12vw, 8rem) 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(61, 220, 151, 0.08), transparent 50%),
    var(--dim);
  text-align: center;
}

.studio-cta__inner {
  max-width: 36rem;
}

.studio-cta .th-eyebrow {
  color: rgba(232, 240, 234, 0.45);
}

.studio-cta__lede {
  margin: 1.25rem auto 2rem;
  color: var(--muted);
  font-weight: 300;
}

.studio-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--void);
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.site-footer__top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2rem;
  }
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.site-footer__jp {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.site-footer__tagline {
  margin-top: 1rem;
  max-width: 16rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer__label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__links a {
  font-size: 0.9rem;
  color: rgba(232, 240, 234, 0.75);
  transition: color 0.35s;
}

.site-footer__links a:hover {
  color: var(--leaf);
}

.site-footer__address {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.site-footer__address a:hover {
  color: var(--chalk);
}

.site-footer__hours {
  margin-top: 0.75rem;
  font-size: 0.8rem;
}

.site-footer__bar {
  border-top: 1px solid var(--line);
  padding: 1.15rem 0;
}

.site-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: rgba(232, 240, 234, 0.4);
  letter-spacing: 0.04em;
}

/* —— Inner pages —— */
.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
  border-bottom: 1px solid var(--line);
}

.page-hero__lede {
  margin-top: 1rem;
  max-width: 34rem;
  color: var(--muted);
  font-weight: 300;
}

.th-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.product-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.product-card {
  background: var(--dim);
  display: flex;
  flex-direction: column;
}

.product-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--dim-2);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-slow);
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 1.35rem 1.25rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__sub {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.product-card__desc {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(232, 240, 234, 0.7);
  flex: 1;
}

.product-card__specs {
  margin-top: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.78rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.product-card__specs div {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.5rem;
}

.product-card__specs dt {
  color: var(--leaf);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

.product-card__specs dd {
  color: var(--muted);
}

.product-card__price {
  margin-top: 1.15rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* Categories page */
.cat-list {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 8vw, 5rem);
}

.cat-block {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 800px) {
  .cat-block {
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
  }

  .cat-block--flip .cat-block__media {
    order: 2;
  }
}

.cat-block__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dim);
}

.cat-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-block__desc {
  margin: 0.85rem 0 1rem;
  color: var(--muted);
  font-weight: 300;
}

.cat-block__hint {
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(232, 240, 234, 0.5);
  line-height: 1.7;
  border-left: 2px solid rgba(61, 220, 151, 0.35);
  padding-left: 1rem;
}

/* About / articles / contact shared */
.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.about-grid article {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.about-grid p:last-child {
  margin-top: 0.75rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.92rem;
}

.articles-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  background: var(--dim);
  overflow: hidden;
}

.article-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__body {
  padding: 1.25rem;
}

.article-card__date {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--leaf);
}

.article-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
}

.article-card__excerpt {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.contact-info p {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 0.35rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--dim);
  border: 1px solid var(--line);
  color: var(--chalk);
  font: inherit;
  border-radius: 0;
  transition: border-color 0.35s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(61, 220, 151, 0.5);
}

.contact-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-alert {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.form-alert--ok {
  background: rgba(61, 220, 151, 0.1);
  color: var(--leaf);
}

.form-alert--err {
  background: rgba(220, 80, 80, 0.12);
  color: #f0a0a0;
}

/* Focus */
:focus-visible {
  outline: 1px solid var(--leaf);
  outline-offset: 3px;
}

/* Prevent horizontal overflow from swiper */
.page-home,
.site-tanehatake {
  overflow-x: hidden;
}

.arrivals .th-container {
  overflow: hidden;
}

/* Marquee / FAQ / accents */
.th-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #051a12, #1a3d2a 40%, #3d1a12 100%);
  padding: 0.85rem 0;
}

.th-marquee__track {
  display: flex;
  width: max-content;
  animation: th-marquee 38s linear infinite;
}

.th-marquee__item {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--chalk);
}

.th-marquee__sep {
  margin-inline: 0.85rem;
  color: var(--orange);
}

@keyframes th-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.review-card {
  border-top: 3px solid var(--red);
}

.th-faq {
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--line);
}

.th-faq__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .th-faq__grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.th-faq__item {
  border-bottom: 1px solid var(--line);
}

.th-faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  text-align: left;
  font-size: 0.95rem;
  color: var(--chalk);
}

.th-faq__btn span:last-child {
  color: var(--orange);
}

.th-faq__panel {
  padding: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.th-faq__item.is-open .th-faq__btn span:last-child {
  color: var(--red);
  transform: rotate(45deg);
}

.about-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-split {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
  }
}

.about-split img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .th-marquee__track { animation: none; }
}

/* Banner · stats · alternating */
.th-section--mist {
  background: linear-gradient(180deg, #eef3ef 0%, #e6ece7 100%);
  color: #12181a;
}
.th-section--paper {
  background: #f7f8f6;
  color: #12181a;
}

/* Light sections: force readable dark text (body default is chalk-on-void) */
.th-section--paper .th-display,
.th-section--mist .th-display,
.th-section--paper .featured-sticky__price,
.th-section--mist .th-stat__num {
  color: #0a0f0c;
}

.th-section--paper .th-eyebrow,
.th-section--mist .th-eyebrow {
  color: #c45f12;
}

.th-section--paper .featured-sticky__sub,
.th-section--paper .spec-reveal__val,
.th-section--mist .th-stat__label,
.th-section--paper .th-lead,
.th-section--mist .th-lead {
  color: #3a4240;
}

.th-section--paper .spec-reveal,
.th-section--paper .spec-reveal li {
  border-color: rgba(18, 24, 22, 0.14);
}

.th-section--paper .spec-reveal__key {
  color: #1a8f5a;
}

.th-section--paper .th-btn--ghost,
.th-section--paper .th-btn--outline {
  color: #0a0f0c;
  border-color: rgba(18, 24, 22, 0.35);
}

.th-section--paper .th-btn--leaf,
.th-section--paper .th-btn--outline-leaf {
  color: #fff;
  border-color: #0d6b45;
  background: #0d6b45;
}

.th-section--paper .th-btn--leaf:hover,
.th-section--paper .th-btn--outline-leaf:hover {
  background: #095536;
  color: #fff;
  border-color: #095536;
}

/* Featured block on paper: keep light panel readable */
.featured-sticky.th-section--paper {
  background: #f7f8f6;
}

.featured-sticky.th-section--paper .featured-sticky__content {
  color: #12181a;
}
.th-banner {
  position: relative;
  min-height: clamp(16rem, 40vw, 22rem);
  display: grid;
  align-items: end;
  color: #f4f7f4;
  overflow: hidden;
}
.th-banner__media { position: absolute; inset: 0; }
.th-banner__media img { width: 100%; height: 100%; object-fit: cover; }
.th-banner__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,28,22,.28), rgba(18,28,22,.78));
}
.th-banner__content { position: relative; z-index: 1; padding: 5.5rem 0 2.5rem; }
.th-banner__title {
  margin-top: .55rem;
  font-family: var(--th-display, "Space Grotesk", sans-serif);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}
.th-banner__lead {
  margin-top: .8rem;
  max-width: 36rem;
  font-size: .92rem;
  font-weight: 300;
  color: rgba(244,247,244,.82);
  line-height: 1.75;
}
.th-eyebrow--light { color: rgba(244,247,244,.75); }
.th-crumb {
  display: flex; flex-wrap: wrap; gap: .45rem; align-items: center;
  margin-bottom: 1rem; font-size: .72rem; letter-spacing: .08em;
  color: rgba(244,247,244,.7);
}
.th-crumb a { color: inherit; text-decoration: none; }
.th-crumb a:hover { color: #fff; }
.th-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.25rem 1.5rem;
}
@media (min-width: 768px) {
  .th-stats { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.th-stat__num {
  font-family: var(--th-display, "Space Grotesk", sans-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 600;
  color: var(--leaf, #3d6b4f);
}
.th-stat__label {
  margin-top: .35rem;
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--mute, #6a726c);
}
.product-card,
.about-grid article {
  transition: transform .45s ease;
}
.product-card:hover,
.about-grid article:hover {
  transform: translateY(-3px);
}

