/* =========================================================
   小路リフォーム工房 sample - ナチュラル雑誌風
   配色: クリーム × オリーブ × terracotta、手書きフォント混在
   ========================================================= */

:root {
  --c-cream: #f5ede0;
  --c-paper: #faf6ed;
  --c-bg-2: #ece1cb;
  --c-ink: #3b2e25;
  --c-ink-2: #5f4f44;
  --c-mute: #8d7e72;
  --c-olive: #7a8b5a;
  --c-olive-d: #5d6c43;
  --c-terra: #b86a4a;
  --c-terra-l: #d27e5b;
  --c-line: rgba(59,46,37,.16);
  --c-line-soft: rgba(59,46,37,.08);
  --shadow: 0 8px 24px rgba(59,46,37,.14);
  --shadow-lg: 0 14px 40px rgba(59,46,37,.18);
  --shadow-pol: 0 6px 20px rgba(59,46,37,.25);
  --tape: rgba(184,106,74,.22);

  --f-jp: 'Zen Kaku Gothic New', 'YuGothic', '游ゴシック', sans-serif;
  --f-jp-min: 'Zen Old Mincho', 'YuMincho', '游明朝', serif;
  --f-jp-hand: 'Klee One', 'Zen Kaku Gothic New', sans-serif;
  --f-en-hand: 'Caveat', cursive;
  --f-en: 'Outfit', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-jp);
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.85;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
b, strong { font-weight: 700; }

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

/* ===== 紙テクスチャ風の薄ノイズ（任意） ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(184,106,74,.04) 0, transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(122,139,90,.04) 0, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ===== サンプルバー ===== */
.sample-bar {
  background: var(--c-ink);
  color: rgba(245,237,224,.85);
  font-size: 12px;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: .04em;
  display: flex; justify-content: center; gap: 16px;
}
.sample-bar strong { color: #f3c97a; font-weight: 500; }
.sample-bar a { color: var(--c-paper); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,237,224,.92);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--c-line-soft);
  transition: background .3s;
}
.header.is-scrolled { background: rgba(245,237,224,.96); border-bottom-color: var(--c-line); }
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__icon {
  font-size: 24px;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: 50%;
  transition: transform .3s;
}
.brand:hover .brand__icon { transform: rotate(-10deg); }
.brand__txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--f-jp-min);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .12em;
  color: var(--c-ink);
}
.brand__sub {
  font-family: var(--f-en-hand);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--c-terra);
  margin-top: 2px;
}

.nav { margin-left: auto; display: flex; gap: 28px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-2);
  padding: 6px 0;
  position: relative;
  transition: color .3s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--c-terra);
  transition: right .4s cubic-bezier(.2,.8,.2,1);
}
.nav a:hover { color: var(--c-ink); }
.nav a:hover::after { right: 0; }

.header__cta {
  background: var(--c-terra);
  color: var(--c-paper);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 22px;
  border-radius: 999px;
  letter-spacing: .04em;
  box-shadow: 0 6px 16px rgba(184,106,74,.32);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.header__cta:hover {
  background: var(--c-terra-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(184,106,74,.4);
}

.hamburger {
  display: none;
  background: none; border: none;
  width: 36px; height: 36px;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  position: relative;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 6px; right: 6px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
}
.hamburger span:nth-child(1) { top: 13px; }
.hamburger span:nth-child(2) { bottom: 13px; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding: 32px 32px 80px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.hero__photo::before {
  /* マスキングテープ風 */
  content: '';
  position: absolute;
  top: -10px; left: 24%;
  width: 90px; height: 26px;
  background: var(--tape);
  transform: rotate(-3deg);
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.03);
}
.hero__sticker {
  position: absolute;
  right: -14px; bottom: -14px;
  z-index: 4;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--c-terra);
  color: var(--c-paper);
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-12deg);
  box-shadow: 0 8px 22px rgba(184,106,74,.45);
  padding: 14px;
}
.hero__sticker-h {
  display: block;
  font-family: var(--f-en-hand);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
.hero__sticker-b {
  display: block;
  font-family: var(--f-jp-min);
  font-size: 11px;
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.4;
  letter-spacing: .04em;
}

.hero__copy { padding: 0 8px; position: relative; }
.hero__tag {
  font-family: var(--f-jp-min);
  font-size: 13px;
  color: var(--c-olive-d);
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.hero__title {
  display: flex;
  flex-direction: column;
  font-family: var(--f-jp-min);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.25;
  letter-spacing: .04em;
  color: var(--c-ink);
  margin-bottom: 32px;
}
.hero__title-a, .hero__title-b { display: block; }
.hero__title-b {
  color: var(--c-terra);
  position: relative;
  display: inline-block;
  align-self: flex-start;
}
.hero__title-b::after {
  content: '';
  position: absolute;
  bottom: -.05em; left: 0; right: 0;
  height: .14em;
  background: rgba(122,139,90,.35);
  border-radius: 999px;
  z-index: -1;
}
.hero__lead {
  font-family: var(--f-jp);
  font-size: 14.5px;
  line-height: 2.1;
  color: var(--c-ink-2);
  margin-bottom: 36px;
}
.hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: .04em;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-terra);
  color: var(--c-paper);
  box-shadow: 0 8px 20px rgba(184,106,74,.32);
}
.btn--primary:hover {
  background: var(--c-terra-l);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(184,106,74,.4);
}
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-ink);
}
.btn--ghost:hover { background: var(--c-ink); color: var(--c-paper); }

.hero__handwrite {
  position: absolute;
  top: -8px; right: 0;
  font-family: var(--f-en-hand);
  font-size: 32px;
  color: var(--c-olive);
  transform: rotate(-6deg);
  opacity: .8;
}

/* =========================================================
   コンテナ
   ========================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 100px 0; position: relative; }

/* =========================================================
   Ribbon（見出し共通）
   ========================================================= */
.ribbon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 56px;
  position: relative;
}
.ribbon--center { align-items: center; text-align: center; }
.ribbon__pin {
  font-size: 28px;
  margin-bottom: 4px;
}
.ribbon__en {
  font-family: var(--f-en-hand);
  font-size: 24px;
  color: var(--c-terra);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
}
.ribbon__h {
  font-family: var(--f-jp-min);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.5;
  letter-spacing: .08em;
  color: var(--c-ink);
}
.ribbon__sub {
  font-family: var(--f-jp);
  font-size: 14px;
  color: var(--c-mute);
  margin-top: 8px;
  letter-spacing: .04em;
}

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Story
   ========================================================= */
.story { background: var(--c-paper); }
.story__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px 0 64px;
  padding: 0 24px;
}
.polaroid {
  background: #fff;
  padding: 14px 14px 20px;
  box-shadow: var(--shadow-pol);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.polaroid--tilt-l { transform: rotate(-3deg); }
.polaroid--tilt-r { transform: rotate(2.5deg); }
.polaroid:hover { transform: rotate(0deg) translateY(-6px) scale(1.03); }
.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--c-bg-2);
}
.polaroid figcaption {
  text-align: center;
  margin-top: 14px;
  font-family: var(--f-jp-hand);
}
.polaroid figcaption strong {
  display: block;
  font-size: 15px;
  color: var(--c-ink);
  margin-bottom: 4px;
  letter-spacing: .04em;
}
.polaroid figcaption small {
  display: block;
  font-size: 11.5px;
  color: var(--c-mute);
  letter-spacing: .04em;
}

.story__text {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--f-jp-min);
  font-size: 16px;
  line-height: 2.2;
  text-align: center;
  color: var(--c-ink);
  letter-spacing: .06em;
}
.story__signature {
  text-align: center;
  margin-top: 40px;
  border-top: 1px dashed var(--c-line);
  padding-top: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.signature__line {
  font-family: var(--f-jp-min);
  font-size: 13px;
  color: var(--c-mute);
  letter-spacing: .08em;
}
.signature__hw {
  font-family: var(--f-en-hand);
  font-size: 32px;
  color: var(--c-terra);
  margin-top: 4px;
  letter-spacing: .02em;
}

/* =========================================================
   Numbers
   ========================================================= */
.numbers {
  background: var(--c-olive);
  color: var(--c-paper);
  padding: 36px 0;
}
.numbers__grid {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.number {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.number__num {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
}
.number__unit {
  font-family: var(--f-jp-min);
  font-size: 14px;
  font-weight: 500;
}
.number__label {
  margin-left: 10px;
  font-family: var(--f-jp);
  font-size: 13px;
  color: rgba(250,246,237,.85);
  letter-spacing: .04em;
}
.number__dot {
  font-family: var(--f-jp-min);
  font-size: 28px;
  color: rgba(250,246,237,.4);
}

/* =========================================================
   Works (Masonry風)
   ========================================================= */
.works { background: var(--c-cream); }
.works__masonry {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 28px;
  margin-bottom: 48px;
}
.work-card {
  background: var(--c-paper);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.work-card--big {
  grid-column: span 4;
  grid-row: span 2;
}
.work-card--wide {
  grid-column: span 4;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.work-card__media {
  overflow: hidden;
  flex-shrink: 0;
}
.work-card__media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.work-card--big .work-card__media,
.work-card--wide .work-card__media { aspect-ratio: 16 / 10; }
.work-card:hover .work-card__media img { transform: scale(1.06); }
.work-card figcaption {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.work-card__tag {
  font-family: var(--f-en-hand);
  font-size: 16px;
  color: var(--c-terra);
  letter-spacing: .02em;
}
.work-card h3 {
  font-family: var(--f-jp-min);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink);
  letter-spacing: .04em;
}
.work-card--big h3 { font-size: 22px; }
.work-card__meta {
  font-size: 12px;
  color: var(--c-mute);
  letter-spacing: .04em;
}
.work-card__txt {
  font-size: 13.5px;
  color: var(--c-ink-2);
  line-height: 1.9;
  margin-top: 4px;
}

.works__more {
  text-align: center;
  font-family: var(--f-jp-min);
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-ink-2);
  margin-top: 24px;
}
.hw-arrow {
  display: inline-block;
  font-family: var(--f-en-hand);
  font-size: 30px;
  color: var(--c-terra);
  margin-bottom: 8px;
}

/* =========================================================
   Service Row
   ========================================================= */
.service-row { background: var(--c-paper); }
.service-row__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.srv {
  background: var(--c-cream);
  border: 1px dashed var(--c-line);
  padding: 28px 24px;
  border-radius: 6px;
  position: relative;
  transition: transform .3s, background .3s, border-color .3s;
}
.srv:hover {
  background: #fff;
  border-color: var(--c-terra);
  transform: translateY(-4px);
}
.srv__num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--f-en-hand);
  font-size: 22px;
  color: var(--c-olive);
  opacity: .8;
}
.srv h3 {
  font-family: var(--f-jp-min);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .04em;
  margin-bottom: 8px;
  color: var(--c-ink);
}
.srv p {
  font-size: 13px;
  color: var(--c-ink-2);
  line-height: 1.85;
}

/* =========================================================
   Voice (Letter)
   ========================================================= */
.voice { background: var(--c-bg-2); }
.voice__board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.letter {
  background: var(--c-paper);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow);
  position: relative;
  border-radius: 4px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.letter::before {
  content: '';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 70px; height: 22px;
  background: var(--tape);
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
.letter--rotate-l { transform: rotate(-1.2deg); }
.letter--rotate-r { transform: rotate(1deg); }
.letter:hover { transform: rotate(0deg) translateY(-4px); }
.letter__top {
  font-family: var(--f-en-hand);
  font-size: 22px;
  color: var(--c-terra);
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.letter__body {
  font-family: var(--f-jp-min);
  font-size: 14px;
  line-height: 2;
  color: var(--c-ink);
  letter-spacing: .04em;
}
.letter__from {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--c-line);
  font-family: var(--f-jp-hand);
  font-size: 12px;
  color: var(--c-mute);
  letter-spacing: .04em;
}

/* =========================================================
   Flow + Price
   ========================================================= */
.flow { background: var(--c-cream); }
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  margin-bottom: 80px;
}
.flow__step {
  background: var(--c-paper);
  padding: 28px 36px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 640px;
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto auto;
  gap: 8px 24px;
  align-items: start;
}
.flow__no {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 36px;
  color: var(--c-terra);
  line-height: 1;
  padding-top: 4px;
}
.flow__step h3 { grid-column: 2; grid-row: 1; }
.flow__step p { grid-column: 2; grid-row: 2; }
.flow__step h3 {
  font-family: var(--f-jp-min);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .04em;
  margin-bottom: 6px;
  color: var(--c-ink);
}
.flow__step p {
  font-size: 13.5px;
  color: var(--c-ink-2);
  line-height: 1.9;
}
.flow__arrow {
  font-family: var(--f-en-hand);
  font-size: 36px;
  color: var(--c-olive);
  line-height: 1;
  padding: 8px 0;
}

.price {
  background: var(--c-paper);
  border-radius: 8px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}
.price__h {
  font-family: var(--f-jp-min);
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: .06em;
}
.price__list {
  display: flex;
  flex-direction: column;
}
.price__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--c-line);
  font-size: 14px;
}
.price__list li:last-child { border-bottom: none; }
.price__list li span { color: var(--c-ink-2); }
.price__list li b {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-terra);
  letter-spacing: .02em;
}
.price__note {
  text-align: center;
  font-size: 12px;
  color: var(--c-mute);
  margin-top: 20px;
  letter-spacing: .04em;
}

/* =========================================================
   Studio + Access
   ========================================================= */
.studio { background: var(--c-paper); }
.studio__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.studio__copy { padding-top: 8px; }
.studio__h {
  font-family: var(--f-jp-min);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.7;
  letter-spacing: .08em;
  margin: 12px 0 20px;
  color: var(--c-ink);
}
.studio__txt {
  font-size: 14.5px;
  line-height: 2.1;
  color: var(--c-ink-2);
  margin-bottom: 28px;
}
.studio__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px dashed var(--c-line);
}
.studio__info > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: 13.5px;
  line-height: 1.8;
}
.studio__info dt {
  font-family: var(--f-en-hand);
  font-size: 16px;
  color: var(--c-terra);
}
.studio__info a { color: var(--c-ink); border-bottom: 1px solid var(--c-terra); }

.studio__photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.studio__photo::before {
  content: '';
  position: absolute;
  top: -10px; left: 60%;
  width: 90px; height: 24px;
  background: var(--tape);
  transform: rotate(4deg);
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.studio__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.studio__photo-cap {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--c-paper);
  padding: 6px 14px;
  font-family: var(--f-jp-hand);
  font-size: 12px;
  color: var(--c-ink-2);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.studio__map {
  grid-column: span 2;
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.studio__map iframe { display: block; filter: grayscale(.2) contrast(1.04); }

/* =========================================================
   Contact
   ========================================================= */
.contact {
  background: var(--c-terra);
  color: var(--c-paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08) 0, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.06) 0, transparent 50%);
  pointer-events: none;
}
.contact .container { position: relative; z-index: 1; }
.contact__hw {
  font-family: var(--f-en-hand);
  font-size: 48px;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.contact__h {
  font-family: var(--f-jp-min);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.6;
  letter-spacing: .08em;
  margin: 16px 0 32px;
}
.contact__h-em {
  display: inline-block;
  position: relative;
}
.contact__h-em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -.1em;
  height: .15em;
  background: rgba(255,255,255,.3);
  border-radius: 999px;
}
.contact__lead {
  font-family: var(--f-jp-min);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 56px;
  color: rgba(250,246,237,.95);
  letter-spacing: .04em;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.contact__card {
  background: var(--c-paper);
  color: var(--c-ink);
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transition: transform .3s, box-shadow .3s;
}
.contact__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,.24);
}
.contact__card-en {
  font-family: var(--f-en-hand);
  font-size: 22px;
  color: var(--c-terra);
  margin-bottom: 8px;
}
.contact__card-num {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 26px;
  color: var(--c-ink);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.contact__card-time {
  font-size: 12px;
  color: var(--c-mute);
  letter-spacing: .04em;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--c-ink);
  color: rgba(245,237,224,.7);
  padding: 48px 0 32px;
  text-align: center;
}
.footer__brand {
  font-family: var(--f-jp-min);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-paper);
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.footer__addr {
  font-size: 12.5px;
  line-height: 2;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.footer__credit {
  font-size: 11.5px;
  color: rgba(245,237,224,.5);
  line-height: 1.9;
}
.footer__credit a { color: #f3c97a; text-decoration: underline; }

/* =========================================================
   Mobile固定CTA
   ========================================================= */
.mobile-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  background: var(--c-terra);
  color: var(--c-paper);
  text-align: center;
  padding: 14px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  box-shadow: 0 10px 26px rgba(184,106,74,.4);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .header__inner { padding: 12px 20px; gap: 16px; }
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--c-cream);
    padding: 100px 32px 40px;
    z-index: 99;
    gap: 24px;
  }
  .nav.is-open a { font-size: 18px; }
  .hamburger { display: block; margin-left: auto; order: 99; }
  .header__cta { display: none; }

  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .ribbon { margin-bottom: 36px; }

  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 24px 20px 60px;
  }
  .hero__photo { aspect-ratio: 4 / 3; }
  .hero__sticker { width: 100px; height: 100px; right: -10px; bottom: -10px; }
  .hero__sticker-h { font-size: 18px; }
  .hero__sticker-b { font-size: 10px; }
  .hero__handwrite { display: none; }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }
  .polaroid:nth-child(2) { transform: rotate(-2deg); }

  .numbers__grid { gap: 16px; }
  .number__num { font-size: 32px; }
  .number__label { font-size: 11.5px; margin-left: 6px; }
  .number__dot { display: none; }

  .works__masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .work-card, .work-card--big, .work-card--wide { grid-column: span 1; grid-row: auto; }

  .service-row__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .voice__board { grid-template-columns: 1fr; gap: 28px; }
  .letter--rotate-l, .letter--rotate-r { transform: rotate(0); }

  .flow__step { padding: 22px 24px; grid-template-columns: 48px 1fr; gap: 16px; }
  .flow__no { font-size: 28px; }
  .price { padding: 28px 22px; }

  .studio__container { grid-template-columns: 1fr; gap: 32px; }
  .studio__map { grid-column: span 1; }

  .contact__row { grid-template-columns: 1fr; }
  .contact__hw { font-size: 36px; }

  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
}

@media (max-width: 600px) {
  .service-row__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(36px, 11vw, 56px); }
}
