/* ============================================
   Resonant Corporate Website
   Premium / Refined / Trustworthy
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s ease, color .3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: 400; line-height: 1.4; letter-spacing: .04em; }
p { margin: 0; }

/* --- Variables --- */
:root {
  --bg: #FAF8F3;
  --bg-soft: #F4EFE5;
  --bg-warm: #ECE4D3;
  --ivory: #F8F2E4;
  --ink: #2C2825;
  --ink-soft: #5A524B;
  --ink-mute: #8A8178;
  --line: #E5DDCC;
  --line-soft: #EFE9DB;
  --bordeaux: #6B1E2E;
  --bordeaux-deep: #4F1421;
  --bordeaux-light: #8B3242;
  --gold: #B8965A;
  --gold-soft: #D4B97E;
  --white: #FFFFFF;

  --serif-jp: 'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', '游明朝', serif;
  --sans-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --display: 'Cormorant Garamond', 'Shippori Mincho', serif;
  --label: 'Cormorant Garamond', serif;

  --max: 1240px;
  --gutter: clamp(20px, 5vw, 56px);

  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* --- Container --- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --- Typography helpers --- */
.eyebrow {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 400;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--bordeaux);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before,
.eyebrow.center::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--bordeaux);
}

h1.display, .h-display {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: clamp(28px, 4.6vw, 54px);
  line-height: 1.45;
  letter-spacing: .06em;
  color: var(--ink);
}
h2.section-title, .section-title {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.5;
  letter-spacing: .08em;
  color: var(--ink);
  /* Japanese typography: prefer breaking at punctuation; only break inside phrases as last resort */
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: break-word;
}
@media (max-width: 480px) {
  h2.section-title, .section-title {
    letter-spacing: .04em; /* tighten on small screens to fit */
  }
}
.lead {
  font-family: var(--sans-jp);
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2.1;
  color: var(--ink-soft);
  letter-spacing: .04em;
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: break-word;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 34px;
  font-family: var(--sans-jp);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .18em;
  border: 1px solid var(--bordeaux);
  color: var(--bordeaux);
  background: transparent;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '→';
  font-family: serif;
  font-size: 16px;
  transition: transform .4s var(--ease);
}
.btn:hover {
  background: var(--bordeaux);
  color: var(--ivory);
}
.btn:hover::after {
  transform: translateX(6px);
}
.btn-primary {
  background: var(--bordeaux);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--bordeaux-deep);
  color: var(--white);
}
.btn-ghost {
  border-color: var(--ink-soft);
  color: var(--ink-soft);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.btn-sm {
  padding: 12px 24px;
  font-size: 12px;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(250, 248, 243, 0);
  transition: background .45s var(--ease), padding .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(250, 248, 243, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom-color: var(--line-soft);
}
.header-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.brand img.brand-logo {
  display: block;
  height: 46px;
  width: auto;
  flex-shrink: 0;
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text .brand-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .15em;
  color: var(--ink);
}
.brand-text .brand-sub {
  font-family: var(--sans-jp);
  font-size: 9px;
  letter-spacing: .28em;
  color: var(--ink-mute);
  font-weight: 300;
  margin-top: 4px;
  display: none;
}
@media (min-width: 600px) {
  .brand-text .brand-sub { display: inline; }
}
@media (max-width: 600px) {
  .brand img.brand-logo { height: 38px; }
  .brand-text .brand-name { font-size: 19px; }
  .brand { gap: 10px; }
}
/* Legacy mark fallback if logo image fails to load */
.brand-mark {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--bordeaux);
  border-radius: 50%;
}
.nav-main { display: none; }
@media (min-width: 980px) {
  .nav-main { display: flex; align-items: center; gap: 36px; }
}
.nav-main a {
  font-family: var(--sans-jp);
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--ink);
  font-weight: 400;
  position: relative;
  padding: 6px 0;
}
.nav-main a small {
  display: block;
  font-family: var(--label);
  font-style: italic;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--bordeaux);
  margin-bottom: 2px;
  font-weight: 400;
  text-transform: uppercase;
}
.nav-main a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--bordeaux);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-main a:hover::after,
.nav-main a.is-active::after { transform: scaleX(1); }
.nav-cta {
  display: none;
}
@media (min-width: 980px) {
  .nav-cta { display: inline-flex; }
}

/* Mobile menu button */
.menu-toggle {
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 101;
}
@media (min-width: 980px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform .4s var(--ease), opacity .3s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: 100px var(--gutter) 60px;
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  overflow-y: auto;
}
.nav-mobile.is-open { transform: translateX(0); }
.nav-mobile ul { display: flex; flex-direction: column; gap: 6px; }
.nav-mobile a {
  display: block;
  padding: 18px 0;
  font-family: var(--serif-jp);
  font-size: 22px;
  letter-spacing: .08em;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.nav-mobile a small {
  font-family: var(--label);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--bordeaux);
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.nav-mobile-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: .1em;
  line-height: 2;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(250,248,243,.92) 0%, rgba(250,248,243,.55) 45%, rgba(250,248,243,.2) 100%);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.hero-content {
  max-width: 760px;
}
.hero-eyebrow {
  font-family: var(--label);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .3em;
  color: var(--bordeaux);
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--bordeaux);
}
.hero-title {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: clamp(30px, 5.2vw, 60px);
  line-height: 1.55;
  letter-spacing: .08em;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero-title .accent {
  color: var(--bordeaux);
  font-style: normal;
}
.hero-sub {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 48px;
  max-width: 560px;
  letter-spacing: .04em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-meta {
  position: absolute;
  right: var(--gutter);
  bottom: 60px;
  display: none;
  text-align: right;
  font-family: var(--label);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--ink-mute);
}
@media (min-width: 1100px) { .hero-meta { display: block; } }
.hero-meta div + div { margin-top: 6px; }

/* Hero scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--ink-mute);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.scroll-cue::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--bordeaux), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Section base --- */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.section-ivory { background: var(--ivory); }
.section-dark { background: var(--ink); color: var(--ivory); }
.section-dark .lead { color: rgba(248, 242, 228, .7); }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 70px;
}
.section-head.center { align-items: center; text-align: center; }
.section-head .lead { max-width: 640px; }

/* --- Concept Section --- */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .concept-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 100px;
  }
}
.concept-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.concept-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.concept-image:hover img { transform: scale(1.04); }
.concept-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-soft);
  transform: translate(20px, 20px);
  z-index: 1;
  pointer-events: none;
}
.concept-text h2 {
  margin-bottom: 36px;
}
.concept-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 36px;
  font-family: var(--label);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--bordeaux);
}
.concept-keywords span::after {
  content: '·';
  margin-left: 18px;
  color: var(--gold);
}
.concept-keywords span:last-child::after { content: ''; }

/* --- Business / Three pillars --- */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 30px;
}
@media (min-width: 800px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 36px; }
}
.pillar {
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(44,40,37,.18);
}
.pillar-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.pillar:hover .pillar-image img { transform: scale(1.06); }
.pillar-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--ivory);
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.pillar-body {
  padding: 38px 32px 42px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pillar-label {
  font-family: var(--label);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--bordeaux);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pillar-title {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: .06em;
  margin-bottom: 18px;
  color: var(--ink);
}
.pillar-text {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 26px;
}
.pillar-link {
  font-family: var(--sans-jp);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--bordeaux);
  border-bottom: 1px solid var(--bordeaux);
  align-self: flex-start;
  padding-bottom: 4px;
  transition: gap .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pillar-link:hover { gap: 14px; }

/* --- MIRAGE feature section --- */
.mirage-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 900px) {
  .mirage-feature {
    grid-template-columns: 1fr 1fr;
    gap: 90px;
  }
}
.mirage-image-stack {
  position: relative;
  aspect-ratio: 3/4;
}
.mirage-image-stack .img-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.mirage-image-stack .img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  z-index: 3;
  border: 8px solid var(--bg);
}
.mirage-image-stack::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -30px;
  width: 60%;
  height: 60%;
  background: var(--bordeaux);
  z-index: 1;
}
.mirage-text h2 {
  margin-bottom: 28px;
}
.mirage-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 36px 0;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mirage-meta-label {
  font-family: var(--label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--bordeaux);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mirage-meta-value {
  font-family: var(--serif-jp);
  font-size: 16px;
  letter-spacing: .04em;
  color: var(--ink);
}
.mirage-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- Seminar feature --- */
.seminar-band {
  position: relative;
}
.seminar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 900px) {
  .seminar-grid { grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; }
}
.seminar-main-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.seminar-main-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.seminar-themes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 30px 0 38px;
}
.seminar-theme {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.seminar-theme-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--bordeaux);
  flex-shrink: 0;
  line-height: 1.4;
  min-width: 32px;
}
.seminar-theme-title {
  font-family: var(--serif-jp);
  font-size: 16px;
  letter-spacing: .05em;
  margin-bottom: 4px;
  color: var(--ink);
}
.seminar-theme-text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* --- Trust section --- */
.trust-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 800px) {
  .trust-mosaic {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 22px;
  }
  .trust-cell.cell-1 { grid-column: 1 / 6; grid-row: 1 / 3; }
  .trust-cell.cell-2 { grid-column: 6 / 10; grid-row: 1 / 2; }
  .trust-cell.cell-3 { grid-column: 10 / 13; grid-row: 1 / 3; }
  .trust-cell.cell-4 { grid-column: 6 / 13; grid-row: 2 / 3; }
}
.trust-cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
@media (min-width: 800px) {
  .trust-cell { aspect-ratio: auto; }
}
.trust-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.trust-cell:hover img { transform: scale(1.04); }
.trust-cell-text {
  background: var(--white);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: auto;
  min-height: 200px;
}
.trust-cell-text .pillar-label { margin-bottom: 12px; }
.trust-cell-text h3 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: .05em;
}

.trust-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}
@media (min-width: 800px) {
  .trust-points { grid-template-columns: repeat(4, 1fr); gap: 40px; }
}
.trust-point {
  text-align: left;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  position: relative;
}
.trust-point::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--bordeaux);
}
.trust-point-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--bordeaux);
  letter-spacing: .15em;
  margin-bottom: 14px;
}
.trust-point h4 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .05em;
  margin-bottom: 12px;
  line-height: 1.55;
}
.trust-point p {
  font-size: 13px;
  line-height: 2;
  color: var(--ink-soft);
}

/* --- Future / Vision section --- */
.future {
  position: relative;
  overflow: hidden;
}
.future-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .future-grid { grid-template-columns: 1fr 1.05fr; gap: 90px; }
}
.future-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.future-image img { width: 100%; height: 100%; object-fit: cover; }
.future-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(107,30,46,.1), transparent 50%);
}
.future-text .eyebrow {
  margin-bottom: 30px;
}
.future-text h2 {
  margin-bottom: 30px;
}
.future-disclaimer {
  margin-top: 36px;
  padding: 20px 24px;
  border-left: 2px solid var(--bordeaux);
  background: var(--bg-soft);
  font-size: 12px;
  line-height: 1.9;
  color: var(--ink-mute);
  letter-spacing: .04em;
}

/* --- News --- */
.news-list {
  border-top: 1px solid var(--line);
}
.news-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background .35s ease;
}
@media (min-width: 700px) {
  .news-item {
    grid-template-columns: 130px 130px 1fr auto;
    gap: 30px;
    align-items: center;
  }
}
.news-item:hover {
  background: var(--bg-soft);
  padding-left: 16px;
  padding-right: 16px;
}
.news-date {
  font-family: var(--label);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--ink-mute);
}
.news-cat {
  font-family: var(--sans-jp);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--bordeaux);
  border: 1px solid var(--bordeaux);
  padding: 4px 14px;
  display: inline-block;
  width: fit-content;
}
.news-title {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  letter-spacing: .04em;
}
.news-arrow {
  display: none;
}
@media (min-width: 700px) {
  .news-arrow { display: block; color: var(--bordeaux); font-size: 16px; }
}

/* --- Contact CTA --- */
.contact-cta {
  background: var(--bordeaux-deep);
  background-image: linear-gradient(180deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  color: var(--ivory);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,150,90,.18), transparent 70%);
  pointer-events: none;
}
.contact-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 800px) {
  .contact-cta-inner { grid-template-columns: 1.5fr 1fr; gap: 80px; }
}
.contact-cta h2 {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.55;
  letter-spacing: .08em;
  color: var(--ivory);
  margin-bottom: 24px;
}
.contact-cta .lead {
  color: rgba(248, 242, 228, .82);
}
.contact-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-cta .btn {
  border: 1px solid rgba(248, 242, 228, .55);
  color: var(--ivory);
  background: transparent;
}
.contact-cta .btn::after {
  color: var(--gold);
}
.contact-cta .btn:hover {
  background: var(--ivory);
  color: var(--bordeaux-deep);
  border-color: var(--ivory);
}
.contact-cta .btn:hover::after {
  color: var(--bordeaux-deep);
}
/* First CTA button = primary, gold filled */
.contact-cta .contact-cta-actions .btn:first-child {
  background: var(--gold);
  color: var(--bordeaux-deep);
  border-color: var(--gold);
  font-weight: 500;
}
.contact-cta .contact-cta-actions .btn:first-child::after {
  color: var(--bordeaux-deep);
}
.contact-cta .contact-cta-actions .btn:first-child:hover {
  background: var(--ivory);
  color: var(--bordeaux-deep);
  border-color: var(--ivory);
}

/* --- Footer --- */
.site-footer {
  background: var(--bordeaux-deep);
  color: rgba(248, 242, 228, .82);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(184, 150, 90, .18);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 150, 90, .35), transparent);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 80px; }
}
.footer-brand .brand {
  color: var(--ivory);
  margin-bottom: 24px;
}
.footer-brand .brand img.brand-logo {
  height: 50px;
  /* Subtle gold glow to complement the cream/gold logo on bordeaux */
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .25));
}
.footer-brand .brand-text .brand-name {
  color: var(--ivory);
}
.footer-brand .brand-text .brand-sub {
  color: rgba(248, 242, 228, .65);
}
.footer-brand p {
  font-family: var(--serif-jp);
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: .06em;
  color: rgba(248, 242, 228, .78);
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--label);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 400;
}
.footer-col ul li { padding: 6px 0; }
.footer-col ul a {
  font-size: 13px;
  color: rgba(248, 242, 228, .78);
  letter-spacing: .04em;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(248, 242, 228, .12);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(248, 242, 228, .6);
}
@media (min-width: 700px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-legal {
  display: flex;
  gap: 24px;
}

/* --- Page Hero (sub pages) --- */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  background: var(--bg-soft);
  overflow: hidden;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
}
.page-hero-eyebrow {
  font-family: var(--label);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--bordeaux);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
}
.page-hero h1 {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: clamp(30px, 5vw, 54px);
  letter-spacing: .08em;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--ink);
}
.page-hero .lead { max-width: 640px; }

.breadcrumb {
  font-family: var(--label);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--ink-mute);
  margin-bottom: 30px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--bordeaux); }
.breadcrumb span.sep { opacity: .4; }

/* --- Company table --- */
.info-table {
  border-top: 1px solid var(--line);
}
.info-table dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
@media (min-width: 700px) {
  .info-table dl { grid-template-columns: 200px 1fr; gap: 30px; }
}
.info-table dt {
  font-family: var(--label);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--bordeaux);
  text-transform: uppercase;
  margin: 0;
  padding-top: 4px;
}
.info-table dd {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
  margin: 0;
  letter-spacing: .04em;
}

/* --- Philosophy cards --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 50px;
}
@media (min-width: 900px) {
  .philosophy-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
}
.philosophy-card {
  background: var(--white);
  padding: 50px 38px;
  position: relative;
  border-top: 2px solid var(--bordeaux);
}
.philosophy-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 38px;
  color: var(--bordeaux);
  margin-bottom: 18px;
  line-height: 1;
}
.philosophy-card h3 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  letter-spacing: .06em;
  color: var(--ink);
}
.philosophy-card p {
  font-size: 13px;
  line-height: 2;
  color: var(--ink-soft);
}

/* --- Message block --- */
.message-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 900px) {
  .message-block { grid-template-columns: 1fr 1.4fr; gap: 80px; }
}
.message-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.message-image img { width: 100%; height: 100%; object-fit: cover; }
.message-text .lead {
  margin-bottom: 24px;
}
.message-sign {
  margin-top: 36px;
  font-family: var(--label);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--bordeaux);
}
.message-sign strong {
  display: block;
  font-family: var(--serif-jp);
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  letter-spacing: .08em;
  color: var(--ink);
  margin-top: 6px;
}

/* --- Form --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.field label {
  display: block;
  font-family: var(--label);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--bordeaux);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.field label .req {
  color: var(--bordeaux);
  font-style: normal;
  margin-left: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--sans-jp);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: .04em;
  transition: border-color .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
}
.field textarea { min-height: 180px; resize: vertical; line-height: 1.8; }
.form-actions { margin-top: 30px; text-align: center; }
.form-note {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.9;
  margin-bottom: 30px;
}

/* --- FAQ --- */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 26px 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--serif-jp);
  font-size: 16px;
  letter-spacing: .05em;
  line-height: 1.7;
}
.faq-q::before {
  content: 'Q';
  font-family: var(--display);
  font-style: italic;
  color: var(--bordeaux);
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.2;
}
.faq-q::after {
  content: '+';
  margin-left: auto;
  color: var(--bordeaux);
  font-size: 22px;
  font-weight: 200;
  flex-shrink: 0;
  transition: transform .4s var(--ease);
}
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 30px 50px;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
}
.faq-item.is-open .faq-a { display: block; }

/* --- Reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* --- Decorative section divider --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 0;
}
.divider::before, .divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--line);
}
.divider-mark {
  width: 6px;
  height: 6px;
  background: var(--bordeaux);
  border-radius: 50%;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-6 { margin-top: 60px; }
.mt-4 { margin-top: 40px; }
.no-overflow { overflow: hidden; }

/* --- FAQ accordion --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background-color .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover {
  background-color: rgba(107, 30, 46, 0.025);
}
.faq-q {
  font-family: var(--serif-jp);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .04em;
  color: var(--ink);
  font-weight: 500;
  flex: 1;
}
.faq-icon {
  font-family: var(--label);
  font-size: 22px;
  font-weight: 300;
  color: var(--bordeaux);
  transition: transform .35s ease;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  padding: 4px 8px 28px;
  animation: faq-fade .4s ease;
}
.faq-a p {
  font-family: var(--sans-jp);
  font-size: 14.5px;
  line-height: 2.0;
  color: var(--ink);
  letter-spacing: .03em;
  max-width: 720px;
}
.faq-a a {
  color: var(--bordeaux);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Legal pages --- */
.legal-body h3 {
  font-family: var(--serif-jp);
  font-size: 19px;
  font-weight: 500;
  margin-top: 50px;
  margin-bottom: 16px;
  letter-spacing: .04em;
  color: var(--ink);
  border-left: 3px solid var(--bordeaux);
  padding-left: 16px;
}
.legal-body p {
  font-family: var(--sans-jp);
  font-size: 15px;
  line-height: 2.0;
  color: var(--ink);
  margin-bottom: 16px;
}
.legal-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.legal-list li {
  font-family: var(--sans-jp);
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.legal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--bordeaux);
  font-weight: 500;
}
.legal-contact {
  background: var(--bg-soft, #F4EFE6);
  padding: 24px 28px;
  margin: 20px 0 30px;
  font-family: var(--sans-jp);
  font-size: 14px;
  line-height: 2.0;
  border-left: 3px solid var(--gold);
  color: var(--ink);
}
.legal-meta {
  font-family: var(--label);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
  text-align: right;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  letter-spacing: .08em;
}

/* --- Editorial breath (quiet image accents) --- */
.editorial-breath {
  padding: 40px 0 80px;
}
.editorial-figure {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin: 0;
}
@media (min-width: 768px) {
  .editorial-figure:not(.editorial-figure-wide) {
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
  }
}
.editorial-figure img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.editorial-figure-wide img {
  max-height: 380px;
  object-position: center 30%;
}
.editorial-figure figcaption {
  padding: 20px 0;
}
.editorial-figure figcaption p {
  font-family: var(--font-serif-jp);
  font-size: 18px;
  line-height: 1.9;
  color: var(--ink);
  margin-top: 16px;
  letter-spacing: 0.04em;
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .contact-cta { display: none; }
}
