/* ════════════════════════════════════════════════════
   [UpcycleLino] × WIFE&HUSBAND 2026 Spring
   style.css  v2
   ════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  /* ベース配色 — コーヒーベージュ統一 */
  --bg:          #ffffff;   /* メインベージュ */
  --bg-warm:     #ffffff;   /* やや濃いベージュ（アクセント面） */
  --bg-dark:     #1c1814;   /* 濃茶黒 */

  --text-primary:  #1c1814;
  --text-mid:      #5a4f3e;
  --text-muted:    #9a8e7c;
  --text-light:    #c8bcac;

  --coffee:        #7a5c3a;
  --coffee-light:  #c09060;
  --border:        #e0d8cc;

  /* ヘッダー */
  --header-h:      60px;

  /* タイポグラフィ */
  --font-sans:     'Lato', 'Noto Sans JP', sans-serif;
  --font-jp:       'Noto Sans JP', sans-serif;

  --transition:    0.3s ease;
  --slide-easing:  0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol { list-style: none; }


/* ── RESPONSIVE LINE BREAK HELPERS ── */
.br-pc   { display: block; }
.br-sp   { display: none; }
.sp-only { display: none; }

@media (max-width: 700px) {
  .br-pc   { display: none; }
  .br-sp   { display: block; }
  .sp-only { display: inline; }
}

/* ── UTILITIES ── */
.label-tag {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 1rem;
}

.section-label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.text-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity var(--transition);
}
.text-link:hover { opacity: 0.55; }


/* ════════════════════════════════════════════════════
   STICKY HEADER
   ════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  /* 初期：ヒーロー上 = 完全透明 */
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition);
}

/* スクロールしたら薄白幕 */
.site-header.scrolled {
  background: rgba(247, 243, 238, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(224, 216, 204, 0.5);
}

.header-inner {
  width: 100%;
  padding: 0 2rem 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.header-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo {
  height: 16px;
  width: auto;
  transition: opacity var(--transition);
}

/* ヒーロー上：白ロゴ表示 / 濃色ロゴ非表示 */
.logo-dark  { opacity: 0; position: absolute; pointer-events: none; }
.logo-white { opacity: 1; position: static; }

/* スクロール後：濃色ロゴ表示 / 白ロゴ非表示 */
.site-header.scrolled .logo-dark  { opacity: 1; position: static; pointer-events: auto; }
.site-header.scrolled .logo-white { opacity: 0; position: absolute; pointer-events: none; }

/* ナビ */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-link:hover { color: #fff; }

/* スクロール後はテキスト色を暗く */
.site-header.scrolled .nav-link {
  color: var(--text-mid);
}
.site-header.scrolled .nav-link:hover {
  color: var(--text-primary);
}

.nav-shop {
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85) !important;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.nav-shop:hover {
  background: rgba(255,255,255,0.15);
}

.site-header.scrolled .nav-shop {
  border-color: var(--border);
  color: var(--text-primary) !important;
}
.site-header.scrolled .nav-shop:hover {
  background: var(--bg-warm);
}


/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-slides {
  display: flex;
  width: 600%;
  height: 100%;
  will-change: transform;
  transition: transform var(--slide-easing);
}

.hero-slide {
  position: relative;
  width: calc(100% / 6);
  height: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: #2a2018;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(15,10,5,0.62) 100%);
  pointer-events: none;
}

.hero-title-overlay {
  position: absolute;
  bottom: 5.5rem;
  left: 4rem;
  z-index: 10;
  color: #fff;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.8rem;
}

.hero-main-title {
  font-family: var(--font-jp);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  transition: color var(--transition);
  font-family: var(--font-sans);
}
.hero-arrow:hover { color: #fff; }
.hero-arrow.prev  { left: 1rem; }
.hero-arrow.next  { right: 1rem; }

/* Dot nav */
.hero-nav {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), width var(--transition);
}
.hero-dot.active {
  background: rgba(255,255,255,0.88);
  width: 44px;
}


/* ════════════════════════════════════════════════════
   INTRO
   ════════════════════════════════════════════════════ */
.intro-section {
  background: var(--bg);
  padding: 7rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-text-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem 6rem;
  align-items: start;
  width: 100%;
  padding: 0;
}

/* label-tag はグリッド外に出して上に配置 */
.intro-text-col > .label-tag {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.intro-heading {
  font-family: var(--font-jp);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  color: var(--text-primary);
}

.intro-body {
  font-family: var(--font-jp);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-mid);
}
.intro-body + .intro-body { margin-top: 1.2rem; }

/* bodyを右カラムとしてまとめるラッパー */
.intro-body-col {
  display: flex;
  flex-direction: column;
}

.intro-photo-col { display: none; }
.intro-photo-img { display: none; }


/* ════════════════════════════════════════════════════
   DATE STRIP
   ════════════════════════════════════════════════════ */
.date-strip {
  background: var(--bg-warm);
  color: var(--text-primary);
  padding: 1.8rem 5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.date-strip-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.date-strip-date {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.date-strip-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════
   ITEMS
   ════════════════════════════════════════════════════ */
.items-section {
  padding: 7rem 0 6rem;
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.section-title {
  font-family: var(--font-jp);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.item-card {
  background: var(--bg);
  overflow: hidden;
}

.item-photo-wrap {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.item-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--bg-warm);
}

.item-info {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.item-number {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.item-name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.item-name-jp {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.item-desc {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  margin: 0.7rem 0 1rem;
}

.item-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
}
.item-size  { color: var(--text-muted); }
.item-price { color: var(--text-primary); font-weight: 400; }

.item-colors {
  display: flex;
  gap: 7px;
  margin-top: 0.9rem;
}

.color-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
}
.color-offwhite { background: #f5f0e6; border: 1px solid #ccc; }
.color-black    { background: #1c1814; }
.color-moca     { background: #b08060; }


/* ════════════════════════════════════════════════════
   LIMITED / ETHICAL DYE
   ════════════════════════════════════════════════════ */
.limited-section {
  background: var(--bg-warm);
  padding: 7rem 0 0;
  color: var(--text-primary);
}

/* 中央テキストヘッダー */
.limited-header {
  max-width: 640px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
  text-align: center;
}

.limited-header .kyoto-badge {
  margin-bottom: 1rem;
}

.limited-header .label-tag {
  text-align: center;
}

.kyoto-badge {
  display: inline-block;
  background: rgba(122, 92, 58, 0.12);
  color: var(--coffee);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.38rem 1rem;
  margin-bottom: 1.2rem;
}

.limited-section .label-tag { color: var(--coffee); }

.limited-heading {
  font-family: var(--font-jp);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.limited-body {
  font-family: var(--font-jp);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-mid);
  margin-bottom: 0;
  text-align: left;
}

/* limited内のitem-gridはbg-warmに合わせる */
.items-grid--limited {
  background: var(--border);
}
.items-grid--limited .item-card {
  background: var(--bg-warm);
}

/* 限定注記行 */
.limited-note-row {
  padding: 2.5rem 2rem 4rem;
  text-align: center;
}

.limited-note {
  font-family: var(--font-jp);
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.8;
}


/* ── SHOP BUTTON ── */
.item-shop-btn {
  display: block;
  margin-top: 1.4rem;
  padding: 0.72rem 0;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  color: var(--text-primary);
  background: transparent;
  user-select: none;
}
.item-shop-btn:hover {
  background: var(--text-primary);
  color: var(--bg);
  border-color: var(--text-primary);
}

/* 無効状態 */
.item-shop-btn--disabled {
  color: var(--text-light);
  border-color: var(--border);
  cursor: default;
  pointer-events: none;
}
.item-shop-btn--disabled:hover {
  background: transparent;
  color: var(--text-light);
  border-color: var(--border);
}

/* リリース日テキスト */
.item-release-date {
  margin-top: 0.55rem;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coffee);
}


/* ════════════════════════════════════════════════════
   STYLING SECTION
   縦長・横長を交互に組むMason風2カラムレイアウト
   ════════════════════════════════════════════════════ */
.styling-section {
  background: var(--bg);
  padding: 5rem 0 0;
}

.styling-section--limited {
  background: var(--bg-warm);
  padding-bottom: 9rem;
}

.styling-section__header {
  padding: 0 5rem 2.5rem;
}

/* 2カラムコンテナ */
.styling-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

/* 各カラムは縦積み */
.styling-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* 各アイテム */
.styling-item {
  overflow: hidden;
  background-color: var(--bg-warm);
}

.styling-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 縦長 */
.styling-item--tall {
  aspect-ratio: 3 / 4;
}

/* 横長 */
.styling-item--wide {
  aspect-ratio: 4 / 3;
}



/* ════════════════════════════════════════════════════
   STORY / ATMOSPHERE
   ════════════════════════════════════════════════════ */
.story-section {
  padding: 8rem 0 7rem;
  background: var(--bg);
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5rem;
}

.story-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 6rem;
  align-items: start;
}

.sp {
  object-fit: cover;
  width: 100%;
  display: block;
  background-color: var(--bg-warm);
}
.sp-1 { aspect-ratio: 3 / 4; margin-top: 0; }
.sp-2 { aspect-ratio: 3 / 4; margin-top: 0; }
.sp-3 { aspect-ratio: 3 / 4; margin-top: 0; }

.story-text {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.story-quote {
  font-family: var(--font-jp);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 1.3rem;
  quotes: none;
}

.story-attribution {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* ════════════════════════════════════════════════════
   COFFEE
   ════════════════════════════════════════════════════ */
.coffee-section {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  margin-top: 9rem;
  border-top: 1px solid var(--border);
  padding-top: 9rem;
}

.coffee-photo-col {
  overflow: hidden;
  min-height: 500px;
  position: relative;
}

.coffee-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  background-color: var(--bg-warm);
}

.coffee-text-col {
  padding: 6rem 5.5rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-warm);
}

.coffee-heading {
  font-family: var(--font-jp);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 1.8rem;
}
.coffee-heading em { font-style: normal; color: var(--coffee); }

.coffee-body {
  font-family: var(--font-jp);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-mid);
}
.coffee-body + .coffee-body { margin-top: 1rem; }

.coffee-price-block {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
}

.coffee-price-label {
  font-size: 11px;
  color: var(--text-muted);
}
.coffee-price {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
}
.coffee-price-tax {
  font-size: 10px;
  color: var(--text-muted);
}

.coffee-note {
  font-family: var(--font-jp);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 0.8rem;
}


/* ════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════ */
.about-section {
  padding: 9rem 0 7rem;
  margin-top: 9rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.about-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 5rem;
}

.about-photo-col {
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 4rem;
}
.about-photo-img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center center;
  display: block;
  background-color: var(--bg-warm);
}

.about-text-col {
  max-width: 680px;
}

.about-heading {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.about-body {
  font-family: var(--font-jp);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-mid);
}
.about-body + .about-body { margin-top: 1rem; }

.pillar-list {
  display: flex;
  gap: 0.7rem;
  margin: 1.8rem 0 1.6rem;
  flex-wrap: wrap;
}
.pillar-tag {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coffee);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(122,92,58,0.28);
}


/* ════════════════════════════════════════════════════
   SCHEDULE
   ════════════════════════════════════════════════════ */
.schedule-section {
  background: var(--bg);
  color: var(--text-primary);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.schedule-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 5rem;
}

.schedule-section .section-label {
  color: var(--text-muted);
  margin-bottom: 2.8rem;
}

.schedule-list {
  border-top: 1px solid var(--border);
}

.schedule-row {
  display: grid;
  grid-template-columns: 195px 1fr;
  gap: 2.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.schedule-date {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.schedule-event {
  font-family: var(--font-jp);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

.schedule-highlight {
  font-weight: 400;
  color: var(--text-primary);
}

.schedule-sub {
  display: block;
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 0.25rem;
}


/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-warm);
  padding: 3.5rem 3rem 4rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--text-primary); }

.footer-credits {
  font-family: var(--font-jp);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-light);
  line-height: 2.4;
}


/* ════════════════════════════════════════════════════
   SCROLL REVEAL — base hidden state
   ════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */

/* ── 960px ── */
@media (max-width: 960px) {

  .intro-section {
    padding: 5rem 3rem;
  }

  .intro-text-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .limited-header {
    padding: 0 3rem;
  }

  .coffee-section {
    grid-template-columns: 1fr;
  }
  .coffee-photo-col {
    min-height: 400px;
  }
  .coffee-photo-img { position: static; height: 400px; }
  .coffee-text-col { padding: 4.5rem 4rem; }

  .about-inner {
    padding: 0 2.5rem;
  }

  .schedule-row {
    grid-template-columns: 155px 1fr;
    gap: 1.5rem;
  }
}

/* ── 700px ── */
@media (max-width: 700px) {

  :root { --header-h: 52px; }

  .header-inner { padding: 0 1.5rem; }
  .header-nav { gap: 1.2rem; }
  .nav-link:not(.nav-shop) { display: none; }

  .hero-title-overlay {
    left: 2.5rem;
    bottom: 5rem;
  }

  .date-strip {
    padding: 1.5rem 2rem;
    gap: 1.2rem;
  }
  .date-strip-sep { display: none; }

  .items-grid { grid-template-columns: 1fr; }

  .story-section { padding: 5rem 0; }
  .story-inner { padding: 0 2rem; }
  .story-photo-grid {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 3.5rem;
  }
  .sp-2, .sp-3 { margin-top: 0; }

  .coffee-text-col { padding: 3.5rem 2rem; }

  .limited-header,
  .limited-note-row,
  .about-inner,
  .schedule-inner { padding: 0 2rem; }

  .styling-section__header {
    padding: 0 2rem 2rem;
  }

  /* モバイルでは縦1カラムに */
  .styling-masonry {
    grid-template-columns: 1fr;
  }

  .styling-item--wide {
    aspect-ratio: 3 / 2;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
