/* ============================================================
   B.O.L Corporate Website — style.css
   Design: 上質な暮らしへの道標（ライト・明るい高級感）
   © 2025 B.O.L Co., Ltd.
============================================================ */

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

/* ============================================================
   CSS Custom Properties
============================================================ */
:root {
  --color-bg:         #FFFFFF;
  --color-bg-cream:   #FAF7F2;
  --color-bg-beige:   #F5EFE4;
  --color-bg-dark:    #2C2416;
  --color-gold:       #C9A84C;
  --color-gold-light: #E8C97A;
  --color-gold-dark:  #8B6914;
  --color-text:       #2C2416;
  --color-text-sub:   #9A9A8A;
  --color-border:     rgba(201,168,76,0.25);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Noto Sans JP', sans-serif;

  --ease-out:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container-max:     1300px;
  --container-padding: 80px;
  --header-h:          80px;
}

/* ============================================================
   Reset & Base
============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }

/* ============================================================
   Layout
============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================================
   Typography
============================================================ */
.label-en {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--color-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.section-title-jp {
  font-size: 0.84rem;
  color: var(--color-text-sub);
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}

/* ============================================================
   Decorative
============================================================ */
.gold-accent {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: 28px;
}

.gold-hr {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(201,168,76,0.5) 30%,
    rgba(232,201,122,0.7) 50%,
    rgba(201,168,76,0.5) 70%, transparent);
}

/* Vertical section number */
.sec-num {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-heading);
  font-size: 10px;
  font-style: normal;
  font-variant-numeric: lining-nums;
  letter-spacing: 0.5em;
  color: rgba(201,168,76,0.3);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
.sec-num-r { right: 20px; }
.sec-num-l { left:  20px; }

/* 数字を読みやすくする */
.stat-number,
.service-number,
.section-number,
[class*="number"],
[class*="count"] {
  font-family: 'Georgia', serif;
  font-style: normal;
  font-variant-numeric: lining-nums;
}

.num,
[class*="number"] span,
[class*="count"] span,
[class*="stat"] span {
  font-family: 'Helvetica Neue', Arial, sans-serif !important;
  font-style: normal !important;
  vertical-align: baseline !important;
  line-height: 1 !important;
}

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 14px 44px;
  border: 1px solid currentColor;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}

.btn span { position: relative; z-index: 1; transition: color 0.4s ease; }
.btn:hover::before { transform: scaleX(1); }

/* Dark outline */
.btn-dark { color: var(--color-text); border-color: var(--color-text); }
.btn-dark::before { background: var(--color-text); }
.btn-dark:hover span { color: #fff; }

/* Gold outline */
.btn-gold { color: var(--color-gold-dark); border-color: var(--color-gold); }
.btn-gold::before { background: var(--color-gold); }
.btn-gold:hover span { color: #fff; }

/* White outline (for dark bg) */
.btn-white { color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-white::before { background: var(--color-gold); }
.btn-white:hover { border-color: var(--color-gold); }
.btn-white:hover span { color: #fff; }

/* ============================================================
   Scroll Animations
============================================================ */
.anim-up {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.anim-up.on { opacity: 1; transform: translateY(0); }

.anim-in {
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}
.anim-in.on { opacity: 1; }

.anim-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.anim-left.on { opacity: 1; transform: translateX(0); }

.anim-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.anim-right.on { opacity: 1; transform: translateX(0); }

.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }
.d4 { transition-delay: 0.48s; }
.d5 { transition-delay: 0.60s; }

/* ============================================================
   Header
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: #FFFFFF;
  border-bottom: 1px solid #E8C97A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: box-shadow 0.4s ease, height 0.4s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 28px rgba(44,36,22,0.07);
  height: 66px;
}

.header-logo a {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.header-logo a:hover { opacity: 0.75; }

.header-nav { display: flex; align-items: center; gap: 44px; }

.nav-item a {
  font-family: var(--font-heading);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  color: var(--color-text);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
  display: block;
  transition: color 0.3s ease;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width 0.4s var(--ease-out);
}

.nav-item a:hover { color: var(--color-gold); }
.nav-item a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--color-gold-dark);
  transition: transform 0.4s var(--ease-out), opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 899;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 0.15em;
  color: var(--color-text);
  text-transform: uppercase;
  text-align: center;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--color-gold); }

.mobile-menu .m-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--color-text-sub);
  display: block;
  margin-top: 4px;
}

/* ============================================================
   Footer
============================================================ */
.site-footer {
  background: var(--color-bg-dark);
  padding: 72px 60px 40px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 40px;
}

.footer-gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.45), transparent);
  margin-bottom: 36px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 44px;
  margin-bottom: 28px;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 11.5px;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--color-gold); }

.footer-addr {
  font-size: 11px;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.08em;
  font-weight: 300;
  margin-bottom: 24px;
}

.footer-copy {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.22);
}

/* ============================================================
   Page Hero (inner pages)
============================================================ */
.page-hero {
  height: 70vh;
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--header-h);
}

.page-hero-bg {
  position: absolute;
  inset: -12%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250,247,242,0.42);
}

.page-hero-overlay-dark {
  background: rgba(44,36,22,0.45);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 72px;
}

.page-hero-en {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 12px;
}

.page-hero-jp {
  font-size: 0.86rem;
  color: var(--color-text-sub);
  letter-spacing: 0.32em;
  font-weight: 300;
}

.page-hero-bc {
  position: absolute;
  top: 24px; left: 80px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(44,36,22,0.45);
}
.page-hero-bc a:hover { color: var(--color-gold); }
.page-hero-bc .sep { color: var(--color-gold); opacity: 0.7; }

/* ============================================================
   INDEX — Hero
============================================================ */
.hero {
  height: calc(100vh - var(--header-h));
  min-height: 620px;
  margin-top: var(--header-h);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -12%;
  background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,247,242,0.75) 0%, rgba(250,247,242,0.45) 50%, rgba(250,247,242,0.15) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(250,247,242,0.55) 0%,
    rgba(250,247,242,0.35) 50%,
    rgba(250,247,242,0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.52em;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 400;
  color: #8B6914;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-text);
  letter-spacing: 0.28em;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 52px;
}

.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }

/* ヒーロー「事業内容を見る」ボタン（2番目）*/
.hero-btns a:nth-child(2) {
  color: #2C2416;
  border-color: #2C2416;
  background: transparent;
}
.hero-btns a:nth-child(2)::before { background: #2C2416; }
.hero-btns a:nth-child(2):hover span { color: #FFFFFF; }

.hero-btn-secondary,
.hero .btn:nth-child(2),
.hero-buttons a:nth-child(2) {
  color: #2C2416;
  border-color: #2C2416;
  background: transparent;
}
.hero-btn-secondary:hover,
.hero .btn:nth-child(2):hover,
.hero-buttons a:nth-child(2):hover {
  background: #2C2416;
  color: #FFFFFF;
}

/* Scroll indicator */
.scroll-ind {
  position: absolute;
  right: 64px;
  bottom: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-ind-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-gold));
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 0; }
  20%  { opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.scroll-ind-txt {
  font-family: var(--font-heading);
  font-size: 9px;
  letter-spacing: 0.5em;
  color: var(--color-gold);
  writing-mode: vertical-rl;
}

/* ============================================================
   INDEX — Service Overview (alternating)
============================================================ */
.svc-overview {
  background: var(--color-bg);
  padding-top: 100px;
  position: relative;
}

.svc-overview-head {
  text-align: center;
  padding-bottom: 72px;
}

.svc-rows { border-top: 1px solid rgba(201,168,76,0.14); }

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-bottom: 1px solid rgba(201,168,76,0.14);
  position: relative;
}

/* Odd: img left / text right */
.svc-row:nth-child(odd)  .svc-img  { order: 1; }
.svc-row:nth-child(odd)  .svc-info { order: 2; background: var(--color-bg); }
/* Even: text left / img right */
.svc-row:nth-child(even) .svc-img  { order: 2; }
.svc-row:nth-child(even) .svc-info { order: 1; background: var(--color-bg-cream); }

.svc-img {
  position: relative;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}
.svc-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
  transition: transform 0.85s var(--ease-out);
}
.svc-row:hover .svc-img img { transform: scale(1.04); }

.svc-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 68px;
}

.svc-big-num {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 300;
  font-style: normal;
  font-variant-numeric: lining-nums;
  vertical-align: baseline;
  line-height: 1;
  color: rgba(201,168,76,0.1);
  margin-bottom: 6px;
}

.svc-title-en {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.svc-title-jp {
  font-size: 0.8rem;
  color: var(--color-gold);
  letter-spacing: 0.24em;
  font-weight: 400;
  margin-bottom: 22px;
}

.svc-bar {
  width: 36px; height: 1px;
  background: var(--color-gold);
  margin-bottom: 22px;
  transition: width 0.5s var(--ease-out);
}
.svc-row:hover .svc-bar { width: 64px; }

.svc-desc {
  font-size: 0.87rem;
  color: var(--color-text-sub);
  line-height: 2.1;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 360px;
}

.svc-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.15em;
  padding: 12px 28px;
  border: 1.5px solid #C9A84C;
  color: #8B6914;
  display: inline-block;
  margin-top: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.svc-link:hover {
  background: #C9A84C;
  color: #ffffff;
}

.service-link,
.service-card a,
[class*="service"] a.svc-link,
[class*="more-link"],
[class*="read-more"] {
  font-size: 1rem;
  letter-spacing: 0.15em;
  padding: 12px 28px;
  border: 1.5px solid #C9A84C;
  color: #8B6914;
  display: inline-block;
  margin-top: 16px;
  transition: all 0.3s ease;
}
.service-link:hover {
  background: #C9A84C;
  color: #ffffff;
}

/* サービスカード画像リンク */
.svc-img a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
}
.svc-img a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
  transition: transform 0.5s ease;
}
.svc-img a:hover img {
  transform: scale(1.04);
}

/* 画像コンテナ汎用ルール */
.service-image,
.service-card-image,
[class*="service"] img,
.service-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: bottom;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.service-image-wrap,
.service-card-image-wrap,
[class*="service"] .img-wrap {
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
}

.service-item,
.service-card {
  display: flex;
  flex-direction: column;
}

.service-content,
.service-text {
  flex: 1;
}

/* カード全体のホバー演出 */
.svc-row {
  cursor: pointer;
}
.svc-row:hover {
  box-shadow: 0 8px 32px rgba(201,168,76,0.18);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

.svc-all-row {
  padding: 60px 0;
  text-align: center;
  background: var(--color-bg);
  border-top: 1px solid rgba(201,168,76,0.14);
}

/* ============================================================
   INDEX — Concept Section
============================================================ */
.concept-section {
  background: var(--color-bg-beige);
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.concept-section::before {
  content: 'BEST ONE LIFE';
  position: absolute;
  font-family: var(--font-heading);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 700;
  color: rgba(201,168,76,0.055);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  letter-spacing: 0.1em;
  pointer-events: none;
}

.concept-inner { position: relative; z-index: 1; }

.concept-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.concept-deco-line { width: 56px; height: 1px; background: var(--color-gold); opacity: 0.5; }
.concept-deco-dot  { width: 7px; height: 7px; border: 1px solid var(--color-gold); transform: rotate(45deg); opacity: 0.6; }

.concept-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 36px;
}
.concept-quote em { font-style: italic; color: var(--color-gold); }

.concept-sub {
  font-size: 0.87rem;
  color: var(--color-text-sub);
  letter-spacing: 0.22em;
  font-weight: 300;
  margin-bottom: 44px;
}

/* ============================================================
   INDEX — Why B.O.L
============================================================ */
.why-section {
  background: var(--color-bg);
  padding: 120px 0;
  position: relative;
}

.why-head { text-align: center; margin-bottom: 68px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(201,168,76,0.18);
}

.why-item {
  padding: 52px 44px;
  border-right: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: background 0.3s ease;
}
.why-item:last-child { border-right: none; }
.why-item:hover { background: rgba(201,168,76,0.035); }

.why-icon { width: 46px; height: 46px; margin-bottom: 24px; }

.why-num {
  font-family: var(--font-heading);
  font-size: 10px;
  font-style: normal;
  font-variant-numeric: lining-nums;
  letter-spacing: 0.42em;
  color: var(--color-gold);
  display: block;
  margin-bottom: 14px;
}

.why-title-en {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 5px;
  letter-spacing: 0.04em;
}

.why-title-jp {
  font-size: 0.75rem;
  color: var(--color-gold);
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 18px;
}

.why-text {
  font-size: 0.85rem;
  color: var(--color-text-sub);
  line-height: 2.1;
  font-weight: 300;
}

/* ============================================================
   INDEX — CTA Section
============================================================ */
.cta-section {
  background: var(--color-bg-dark);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-text {
  position: absolute;
  font-family: var(--font-heading);
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 700;
  color: rgba(201,168,76,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.48em;
  color: rgba(201,168,76,0.65);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1.45;
}

.cta-sub {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.16em;
  font-weight: 300;
  margin-bottom: 52px;
}

/* ============================================================
   ABOUT — Philosophy
============================================================ */
.phil-lead {
  background: var(--color-bg);
  padding: 120px 0;
  position: relative;
}

.phil-big {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2.0;
  color: var(--color-text);
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
  letter-spacing: 0.05em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.phil-big em { color: var(--color-gold); font-style: italic; }

.philosophy-text,
.concept-text,
.about-body p,
[class*="philosophy"] p,
[class*="concept"] p {
  font-size: 1.25rem;
  line-height: 2.0;
  letter-spacing: 0.05em;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}

/* Brand Section */
.brand-section {
  background: var(--color-bg-cream);
  padding: 100px 0;
}

.brand-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-viz { text-align: center; }

.brand-bol {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 300;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 16px;
}

.brand-breakdown {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 8px;
}

.brand-word-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(201,168,76,0.3);
}
.brand-word-item:last-child { border-right: none; }

.brand-letter {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--color-gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.brand-word-en {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
  display: block;
}

.brand-meaning {
  font-size: 0.82rem;
  color: var(--color-text-sub);
  letter-spacing: 0.22em;
  font-weight: 300;
  margin-top: 12px;
}

.brand-content-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.brand-content-text {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  line-height: 2.4;
  font-weight: 300;
}

/* Representative */
.rep-section {
  background: var(--color-bg-beige);
  padding: 120px 0;
}

.rep-inner {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 80px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.rep-quote-mark {
  font-family: var(--font-heading);
  font-size: clamp(7rem, 13vw, 12rem);
  color: rgba(201,168,76,0.18);
  line-height: 0.8;
  font-style: italic;
  font-weight: 400;
}

.rep-content { padding-top: 24px; }

.rep-text {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  line-height: 2.5;
  font-weight: 300;
  margin-bottom: 44px;
}

.rep-name-box {
  padding-left: 22px;
  border-left: 2px solid var(--color-gold);
}

.rep-name-en {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.rep-name-jp {
  font-size: 0.82rem;
  color: var(--color-gold);
  letter-spacing: 0.28em;
  display: block;
}

.rep-role {
  font-size: 0.73rem;
  color: var(--color-text-sub);
  letter-spacing: 0.16em;
  display: block;
  margin-top: 4px;
}

/* Values */
.values-section {
  background: var(--color-bg);
  padding: 120px 0;
}

.values-head { text-align: center; margin-bottom: 68px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.val-item {
  padding: 52px 44px;
  border-left: 1px solid rgba(201,168,76,0.26);
  transition: background 0.3s ease;
}
.val-item:nth-child(3) { border-right: 1px solid rgba(201,168,76,0.26); }
.val-item:hover { background: rgba(201,168,76,0.03); }

.val-num {
  font-family: var(--font-heading);
  font-size: 10px;
  font-style: normal;
  font-variant-numeric: lining-nums;
  letter-spacing: 0.42em;
  color: var(--color-gold);
  display: block;
  margin-bottom: 18px;
}

.val-en {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.val-jp {
  font-size: 0.76rem;
  color: var(--color-text-sub);
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 22px;
}

.val-text {
  font-size: 0.85rem;
  color: var(--color-text-sub);
  line-height: 2.1;
  font-weight: 300;
}

/* ============================================================
   SERVICE Page
============================================================ */
.svc-page-intro {
  background: var(--color-bg);
  padding: 96px 0;
  text-align: center;
}

.svc-page-text {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  line-height: 2.4;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.services-grid-wrap {
  background: var(--color-bg-cream);
  padding: 40px 0 120px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--color-bg);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 48px 38px;
  position: relative;
  transition: background 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease, transform 0.35s ease;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.svc-card:hover {
  background: var(--color-bg-cream);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 8px 32px rgba(201,168,76,0.1);
  transform: translateY(-2px);
}
.svc-card:hover::after { transform: scaleX(1); }

.card-icon { width: 40px; height: 40px; margin-bottom: 18px; }

.card-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-style: normal;
  font-variant-numeric: lining-nums;
  font-size: 2.6rem;
  font-weight: 300;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  transition: color 0.3s ease;
}
.svc-card:hover .card-num { color: rgba(201,168,76,0.2); }

.card-en {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 5px;
  letter-spacing: 0.03em;
}

.card-jp {
  font-size: 0.76rem;
  color: var(--color-gold);
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 14px;
  font-weight: 400;
}

.card-txt {
  font-size: 0.82rem;
  color: var(--color-text-sub);
  line-height: 1.95;
  font-weight: 300;
}

/* ============================================================
   COMPANY Page
============================================================ */
.company-section {
  background: var(--color-bg);
  padding: 112px 0;
}

.company-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.company-head { margin-bottom: 52px; }

.co-table {
  width: 100%;
  border-collapse: collapse;
}

.co-table tr {
  border-bottom: 1px solid rgba(201,168,76,0.16);
  transition: background 0.3s ease;
}
.co-table tr:first-child { border-top: 1px solid rgba(201,168,76,0.16); }
.co-table tr:hover { background: rgba(201,168,76,0.03); }

.co-table th {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--color-gold-dark);
  padding: 28px 40px 28px 0;
  width: 200px;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.co-table td {
  font-size: 0.89rem;
  color: var(--color-text-sub);
  padding: 28px 0;
  line-height: 2;
  font-weight: 300;
}

/* ============================================================
   CONTACT Page
============================================================ */
.contact-section {
  background: var(--color-bg);
  padding: 96px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 96px;
  max-width: 1020px;
  margin: 0 auto;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 22px;
  line-height: 1.4;
}

.contact-info-text {
  font-size: 0.85rem;
  color: var(--color-text-sub);
  line-height: 2.4;
  font-weight: 300;
  margin-bottom: 40px;
}

.c-detail { margin-bottom: 22px; }

.c-detail dt {
  font-size: 9px;
  letter-spacing: 0.42em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.c-detail dd {
  font-size: 0.83rem;
  color: var(--color-text-sub);
  font-weight: 300;
}

/* Form */
.form-grp {
  margin-bottom: 36px;
  position: relative;
}

.f-lbl {
  display: block;
  font-size: 9px;
  letter-spacing: 0.42em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.f-lbl .req { color: #c06060; margin-left: 4px; }

.f-ctrl {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(44,36,22,0.18);
  padding: 10px 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.4s ease;
  -webkit-appearance: none;
  border-radius: 0;
}
.f-ctrl::placeholder { color: rgba(154,154,138,0.45); font-size: 0.83rem; }
.f-ctrl:focus { border-bottom-color: var(--color-gold); }

textarea.f-ctrl { height: 140px; resize: none; line-height: 1.9; }

.f-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width 0.45s var(--ease-out);
  pointer-events: none;
}
.f-ctrl:focus ~ .f-line { width: 100%; }

.form-grp.has-error .f-ctrl { border-bottom-color: #c06060; }
.f-err {
  font-size: 0.74rem;
  color: #c06060;
  margin-top: 5px;
  display: none;
}
.form-grp.has-error .f-err { display: block; }

.f-note {
  font-size: 0.75rem;
  color: var(--color-text-sub);
  margin-top: 20px;
  line-height: 1.9;
}

/* ============================================================
   THANKS Page
============================================================ */
.thanks-wrap {
  min-height: 100vh;
  background: var(--color-bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
  text-align: center;
}

.thanks-inner { max-width: 540px; }

.thanks-check {
  width: 68px; height: 68px;
  margin: 0 auto 40px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-en {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.thanks-jp {
  font-size: 0.94rem;
  color: var(--color-gold);
  letter-spacing: 0.28em;
  margin-bottom: 40px;
}

.thanks-msg {
  font-size: 0.87rem;
  color: var(--color-text-sub);
  line-height: 2.4;
  font-weight: 300;
  margin-bottom: 56px;
}

/* ============================================================
   Responsive — 1100px
============================================================ */
@media (max-width: 1100px) {
  :root { --container-padding: 48px; }

  .svc-info      { padding: 60px 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-inner   { gap: 56px; }
  .why-item      { padding: 44px 32px; }
  .val-item      { padding: 44px 32px; }
}

/* ============================================================
   Responsive — 900px
============================================================ */
@media (max-width: 900px) {
  .site-header         { padding: 0 36px; height: 68px; }
  .site-header.scrolled{ height: 60px; }
  :root                { --header-h: 68px; }
  .header-nav          { display: none; }
  .hamburger           { display: flex; }
  .mobile-menu         { display: flex; }

  .hero-content  { padding: 0 36px; }
  .scroll-ind    { right: 36px; }

  /* Service rows */
  .svc-row { grid-template-columns: 1fr; min-height: auto; }
  .svc-row:nth-child(odd)  .svc-img,
  .svc-row:nth-child(even) .svc-img  { order: 1; height: 260px; }
  .svc-row:nth-child(odd)  .svc-info,
  .svc-row:nth-child(even) .svc-info { order: 2; }
  .svc-info { padding: 52px 32px; }

  .why-grid    { grid-template-columns: 1fr; }
  .why-item    { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.18); }
  .why-item:last-child { border-bottom: none; }

  .brand-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .brand-breakdown { justify-content: center; }

  .rep-inner  { grid-template-columns: 1fr; gap: 24px; }
  .rep-quote-mark { text-align: center; }

  .values-grid { grid-template-columns: 1fr; }
  .val-item    { border-left: none; border-right: none; border-top: 1px solid rgba(201,168,76,0.26); padding: 44px 28px; }
  .val-item:nth-child(3) { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.26); }

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

  .co-table th { width: 130px; font-size: 0.72rem; padding-right: 16px; }

  .contact-inner { grid-template-columns: 1fr; gap: 52px; }

  .page-hero-content { padding: 0 36px 60px; }
  .page-hero-bc      { left: 36px; }

  .site-footer { padding: 60px 36px 36px; }
  .sec-num     { display: none; }
}

/* ============================================================
   Responsive — 640px
============================================================ */
@media (max-width: 640px) {
  :root { --container-padding: 24px; }

  .site-header  { padding: 0 24px; }
  .hero-content { padding: 0 24px; }
  .scroll-ind   { display: none; }

  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item:nth-child(2)                  { border-right: none; }
  .counter-item:nth-child(3),
  .counter-item:nth-child(4)                  { border-top: 1px solid rgba(201,168,76,0.18); }

  .svc-info    { padding: 44px 24px; }
  .svc-big-num { font-size: 3.5rem; }

  .concept-section { padding: 96px 0; }
  .why-item  { padding: 40px 24px; }
  .val-item  { padding: 40px 24px; }
  .svc-card  { padding: 38px 26px; }

  /* Company table stack */
  .co-table, .co-table tbody, .co-table tr { display: block; }
  .co-table tr { padding: 20px 0; }
  .co-table th { width: 100%; padding: 0 0 6px; border: none; }
  .co-table td { padding: 0; font-size: 0.85rem; }

  .contact-inner   { gap: 40px; }
  .page-hero-content { padding: 0 24px 44px; }
  .page-hero-bc    { display: none; }
  .site-footer     { padding: 48px 24px 28px; }
  .footer-nav      { flex-direction: column; gap: 12px; }
}
