/* ==============================================
   REMODE — Base Design System
   ============================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Noto+Sans+JP:wght@300;400;500&family=Noto+Serif+JP:wght@200;300;400&display=swap');

/* ── Variables ─────────────────────────────── */
:root {
  /* Colors */
  --c-black:    #0c0c0c;
  --c-dark:     #141414;
  --c-mid:      #2a2a2a;
  --c-gray:     #6b6b6b;
  --c-silver:   #b8b8b8;
  --c-light:    #f4f2ee;
  --c-white:    #fdfcf9;
  --c-gold:     #b8965a;
  --c-gold-lt:  #d4b47a;
  --c-gold-dk:  #8a6e3f;

  /* Typography */
  --f-serif:    'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
  --f-sans:     'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;

  /* Spacing */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  32px;
  --sp-lg:  64px;
  --sp-xl:  120px;

  /* Layout */
  --max-w:  1160px;
  --header-h: 72px;

  /* Motion */
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
  --dur:    0.4s;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-weight: 300;
  color: var(--c-dark);
  background: var(--c-white);
  line-height: 1.8;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Layout ─────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .wrap { padding: 0 20px; } }

.section { padding: var(--sp-xl) 0; }
.section--sm { padding: var(--sp-lg) 0; }
.section--dark { background: var(--c-dark); color: var(--c-white); }
.section--light { background: var(--c-light); }

/* ── Typography ─────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--f-serif);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--c-gold-lt); }

.heading-xl {
  font-family: var(--f-serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.heading-lg {
  font-family: var(--f-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.03em;
}
.heading-md {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.heading-sm {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.body-text {
  font-size: 15px;
  line-height: 2;
  color: var(--c-gray);
}
.body-text--light { color: rgba(255,255,255,0.65); }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  padding: 16px 36px;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  opacity: 0.08;
}
.btn:hover::before { transform: scaleX(1); }

.btn-gold {
  background: var(--c-gold);
  color: var(--c-white);
  border: 1px solid var(--c-gold);
}
.btn-gold:hover {
  background: var(--c-gold-dk);
  border-color: var(--c-gold-dk);
}
.btn-outline {
  background: transparent;
  color: var(--c-dark);
  border: 1px solid var(--c-dark);
}
.btn-outline:hover {
  background: var(--c-dark);
  color: var(--c-white);
}
.btn-outline-lt {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-outline-lt:hover {
  background: var(--c-white);
  color: var(--c-dark);
}

/* Arrow icon */
.btn-arrow::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: width var(--dur) var(--ease);
}
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { width: 28px; }

/* ── Gold line decoration ───────────────────── */
.gold-line {
  width: 40px;
  height: 1px;
  background: var(--c-gold);
  display: block;
  margin: 20px 0;
}

/* ── Animations ─────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ── Breadcrumb ─────────────────────────────── */
.breadcrumb {
  padding: 14px 0;
  font-size: 12px;
  color: var(--c-silver);
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--c-silver); transition: color var(--dur); }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb span { margin: 0 8px; }

/* ── Section heading block ──────────────────── */
.sec-head { margin-bottom: var(--sp-lg); }
.sec-head--center { text-align: center; }
.sec-head--center .gold-line { margin: 20px auto; }

/* ── Utility ─────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }

/* ── Page inner header ──────────────────────── */
.page-header {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 60px;
  background: var(--c-dark);
  color: var(--c-white);
}
