/* スクロール強制 - seeed_tcd105のJS/CSS干渉対策 */
html.lumierre-top, body.lumierre-top { overflow: auto !important; overflow-y: auto !important; height: auto !important; min-height: 100% !important; position: relative !important; }
body.lumierre-top #container { overflow: visible !important; display: block !important; }
body.lumierre-top #header, body.lumierre-top #header_slider_wrap, body.lumierre-top #news_ticker { display: none !important; }
body.lumierre-top .load_icon, body.lumierre-top #loading_screen { display: none !important; }

/* ============================================
   ルミエール Top — Visual Tone & UI
   ============================================ */

/* --- Reset --- */
.lumierre-top,
.lumierre-top *,
.lumierre-top *::before,
.lumierre-top *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Design Tokens --- */
:root {
  /* Primary */
  --lm-white: #FAFAF8;
  --lm-ivory: #F3F0EB;
  --lm-pearl: #E5DDD6;

  /* Secondary — 凛としたアクセント */
  --lm-blush: #D4B8AE;
  --lm-lavender: #C8BFCF;
  --lm-gold: #B8A080;

  /* Text — しっかり読める */
  --lm-greige: #5A5550;
  --lm-charcoal: #333030;
  --lm-ink: #1E1C1B;

  /* Typography */
  --lm-font-head: "Shippori Mincho", "Noto Serif JP", serif;
  --lm-font-body: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --lm-font-accent: "Playfair Display", serif;

  /* Layout */
  --lm-content-max: 1240px;
  --lm-text-max: 720px;
  --lm-section-py: clamp(100px, 14vw, 180px);
  --lm-section-py-sm: clamp(72px, 10vw, 120px);

  /* Motion */
  --lm-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --lm-duration: 0.7s;
}

/* --- Base --- */
.lumierre-top {
  background: var(--lm-white);
  color: var(--lm-charcoal);
  font-family: var(--lm-font-body);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.lumierre-top a {
  color: inherit;
  text-decoration: none;
}

/* Hide Cocoon defaults */
.lumierre-top #header,
.lumierre-top #footer,
.lumierre-top .sidebar,
.lumierre-top #content,
.lumierre-top .breadcrumb,
.lumierre-top .go-to-top,
.lumierre-top #notice-area {
  display: none !important;
}

/* --- Container --- */
.lm-container {
  max-width: var(--lm-content-max);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Section Label (editorial accent) --- */
.lm-section-label {
  font-family: var(--lm-font-accent);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lm-gold);
  margin-bottom: 24px;
}

/* --- Section Heading --- */
.lm-section-heading {
  font-family: var(--lm-font-head);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
  margin-bottom: clamp(48px, 8vw, 80px);
}

/* --- Buttons --- */
.lm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lm-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  height: 52px;
  padding: 0 36px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition:
    transform var(--lm-duration) var(--lm-ease),
    box-shadow var(--lm-duration) var(--lm-ease),
    background 0.4s var(--lm-ease);
}

.lm-btn--primary {
  background: var(--lm-charcoal);
  color: #FAFAF8 !important;
}

.lm-btn--primary:hover {
  background: var(--lm-ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 28, 27, 0.15);
}

.lm-btn--ghost {
  background: var(--lm-white);
  color: var(--lm-charcoal);
  border: 1px solid var(--lm-pearl);
}

.lm-btn--ghost:hover {
  background: var(--lm-ivory);
  border-color: var(--lm-gold);
  transform: translateY(-2px);
}

.lm-btn--lg {
  height: 56px;
  padding: 0 44px;
  font-size: 15px;
}

/* --- Fade In (軽い上昇 12px) --- */
.lm-fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity var(--lm-duration) var(--lm-ease),
    transform var(--lm-duration) var(--lm-ease);
}

.lm-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
.lm-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(252, 251, 248, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(237, 228, 220, 0.3);
}

.lm-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.lm-header__logo {
  display: flex;
  align-items: center;
}

.lm-header__logo-main {
  font-family: var(--lm-font-head);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--lm-ink);
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.4);
}

.lm-header__nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

.lm-header__nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--lm-greige);
  transition: color 0.3s;
  position: relative;
}

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

.lm-header__nav a:hover { color: var(--lm-charcoal); }
.lm-header__nav a:hover::after { width: 100%; }

.lm-header__cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  height: 40px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  background: var(--lm-charcoal);
  color: #FAFAF8 !important;
  border-radius: 12px;
  transition: all 0.4s var(--lm-ease);
}

.lm-header__cta:hover {
  background: var(--lm-ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30, 28, 27, 0.15);
}

/* Hamburger */
.lm-header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.lm-header__hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--lm-charcoal);
  position: absolute;
  left: 0;
  transition: all 0.3s var(--lm-ease);
}

.lm-header__hamburger span:nth-child(1) { top: 2px; }
.lm-header__hamburger span:nth-child(2) { top: 50%; }
.lm-header__hamburger span:nth-child(3) { bottom: 2px; }

.lm-header__hamburger.is-active span:nth-child(1) {
  top: 50%; transform: rotate(45deg);
}
.lm-header__hamburger.is-active span:nth-child(2) { opacity: 0; }
.lm-header__hamburger.is-active span:nth-child(3) {
  bottom: auto; top: 50%; transform: rotate(-45deg);
}

/* Mobile Nav */
.lm-mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--lm-white);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.5s var(--lm-ease);
}

.lm-mobile-nav.is-open { right: 0; }

.lm-mobile-nav ul {
  list-style: none;
  text-align: center;
}

.lm-mobile-nav li { margin-bottom: 36px; }

.lm-mobile-nav a {
  font-size: 17px;
  letter-spacing: 0.1em;
  color: var(--lm-charcoal);
}

.lm-mobile-nav__cta {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 32px;
  background: var(--lm-charcoal);
  color: #FAFAF8 !important;
  border-radius: 14px;
  margin-top: 12px;
}

/* ============================================
   HERO
   ============================================ */
.lm-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.lm-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lm-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 1.0;
  filter: none;
}

.lm-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 28, 27, 0.15) 0%, rgba(30, 28, 27, 0.05) 40%, rgba(30, 28, 27, 0.3) 100%);
}

.lm-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  padding-top: 60px;
  max-width: 800px;
}

.lm-hero__eyebrow {
  font-family: var(--lm-font-accent);
  font-size: clamp(12px, 1.2vw, 14px);
  letter-spacing: 0.3em;
  color: var(--lm-gold);
  margin-bottom: 40px;
}

.lm-hero__title {
  font-family: var(--lm-font-body);
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.12em;
  color: #fff;
  
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.lm-hero__sub {
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.92);
  
  margin-bottom: 56px;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.lm-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll */
.lm-hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lm-hero__scroll span {
  font-family: var(--lm-font-accent);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--lm-gold);
}

.lm-hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--lm-gold), transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}

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

/* ============================================
   PHILOSOPHY
   ============================================ */
.lm-philosophy {
  padding: var(--lm-section-py) 0;
  background: var(--lm-white);
}

.lm-philosophy__inner {
  max-width: var(--lm-text-max);
  margin: 0 auto;
  text-align: center;
}

.lm-philosophy__title {
  font-family: var(--lm-font-head);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.lm-philosophy__body p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2.4;
  color: var(--lm-greige);
}

.lm-philosophy__mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: clamp(64px, 9vw, 100px);
  padding-top: clamp(64px, 9vw, 100px);
  border-top: 1px solid var(--lm-pearl);
}

.lm-philosophy__mvv-item { text-align: center; }

.lm-philosophy__mvv-label {
  display: inline-block;
  font-family: var(--lm-font-accent);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lm-gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid var(--lm-pearl);
  border-radius: 100px;
}

.lm-philosophy__mvv-item p {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================
   BRAND STATEMENT
   ============================================ */
.lm-statement {
  padding: var(--lm-section-py) 0;
  background: var(--lm-ivory);
}

.lm-statement__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
  max-width: 1000px;
  margin: 0 auto;
}

.lm-statement__item h3 {
  font-family: var(--lm-font-head);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--lm-ink);
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.4);
}

.lm-statement__item p {
  font-size: 14px;
  line-height: 2.2;
  color: var(--lm-greige);
}

@media screen and (max-width: 1023px) {
  .lm-statement__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   STRENGTH
   ============================================ */
.lm-strength {
  padding: var(--lm-section-py) 0;
  background: var(--lm-ivory);
}

.lm-strength__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.lm-strength__card {
  background: var(--lm-white);
  padding: clamp(36px, 4vw, 52px);
  border-radius: 22px;
  border: 1px solid rgba(237, 228, 220, 0.5);
  transition:
    transform var(--lm-duration) var(--lm-ease),
    box-shadow var(--lm-duration) var(--lm-ease);
}

.lm-strength__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(67, 61, 57, 0.05);
}

.lm-strength__icon {
  display: block;
  margin-bottom: 16px;
  opacity: 0.9;
}

.lm-strength__num {
  font-family: var(--lm-font-accent);
  font-size: 14px;
  font-weight: 400;
  color: var(--lm-gold);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.lm-strength__card h3 {
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.lm-strength__card p {
  font-size: 14px;
  line-height: 2.1;
  color: var(--lm-greige);
}

/* ============================================
   SERVICES — 導線設計（入口→本命）
   ============================================ */
.lm-services {
  padding: var(--lm-section-py) 0;
  background: var(--lm-white);
}

/* Tier labels */
.lm-services__tier {
  padding: 24px 0 12px;
}

.lm-services__tier-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--lm-gold);
  font-weight: 500;
}

.lm-services__list {
  display: flex;
  flex-direction: column;
}

.lm-services__item {
  display: block;
  border-bottom: 1px solid var(--lm-pearl);
  transition: background 0.4s var(--lm-ease);
}

.lm-services__item:first-child {
  border-top: 1px solid var(--lm-pearl);
}

.lm-services__item:hover {
  background: var(--lm-ivory);
}

.lm-services__item--entry {
  background: linear-gradient(135deg, rgba(232, 210, 204, 0.08) 0%, rgba(245, 241, 236, 0.5) 100%);
}

.lm-services__item-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: clamp(32px, 4.5vw, 48px) clamp(24px, 3vw, 40px);
}

.lm-services__icon {
  flex-shrink: 0;
  opacity: 0.8;
}

.lm-services__item-head {
  flex: 1;
  min-width: 0;
}

.lm-services__item-num {
  font-family: var(--lm-font-accent);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--lm-gold);
  display: block;
  margin-bottom: 6px;
}

.lm-services__item-context {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--lm-greige);
  margin-bottom: 6px;
}

.lm-services__item h3 {
  font-family: var(--lm-font-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.lm-services__item-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--lm-gold);
  border: 1px solid var(--lm-gold);
  border-radius: 100px;
  padding: 3px 14px;
  margin-left: 12px;
  vertical-align: middle;
  font-weight: 400;
}

.lm-services__item-desc {
  flex: 1;
  font-size: 14px;
  line-height: 2;
  color: var(--lm-greige);
}

.lm-services__item-arrow {
  font-size: 20px;
  color: var(--lm-gold);
  transition: transform 0.3s var(--lm-ease);
  flex-shrink: 0;
}

.lm-services__item:hover .lm-services__item-arrow {
  transform: translateX(6px);
}

/* ============================================
   WHY NOW
   ============================================ */
.lm-whynow {
  padding: var(--lm-section-py) 0;
  background: var(--lm-ivory);
}

.lm-whynow__inner {
  max-width: var(--lm-text-max);
  margin: 0 auto;
  text-align: center;
}

.lm-whynow__title {
  font-family: var(--lm-font-head);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}

.lm-whynow__body {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2.3;
  color: var(--lm-greige);
  margin-bottom: 32px;
}

.lm-whynow__body:last-of-type {
  margin-bottom: 40px;
}

.lm-whynow__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 48px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(67, 61, 57, 0.08);
}

/* ============================================
   SECOND OPINION
   ============================================ */
.lm-second-opinion {
  padding: clamp(120px, 16vw, 200px) 0;
  background: var(--lm-white);
}

.lm-second-opinion__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: clamp(48px, 7vw, 96px);
  background: var(--lm-ivory);
  border-radius: 24px;
  border: 1px solid var(--lm-pearl);
}

.lm-second-opinion__image {
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(67, 61, 57, 0.08);
}

.lm-second-opinion__text {
  text-align: left;
}

.lm-second-opinion__text h2 {
  font-family: var(--lm-font-head);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.lm-second-opinion__text p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2.3;
  color: var(--lm-greige);
  margin-bottom: 48px;
}

/* ============================================
   WHITE PAPER
   ============================================ */
.lm-whitepaper {
  padding: var(--lm-section-py) 0;
  background: var(--lm-white);
}

.lm-whitepaper__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.lm-whitepaper__card {
  background: var(--lm-ivory);
  border-radius: 22px;
  padding: clamp(32px, 3.5vw, 44px);
  border: 1px solid rgba(237, 228, 220, 0.5);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--lm-duration) var(--lm-ease),
    box-shadow var(--lm-duration) var(--lm-ease);
}

.lm-whitepaper__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(67, 61, 57, 0.05);
}

.lm-whitepaper__card-icon {
  color: var(--lm-gold);
  margin-bottom: 24px;
}

.lm-whitepaper__card-cover {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(67, 61, 57, 0.06);
}

.lm-whitepaper__card h3 {
  font-family: var(--lm-font-head);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.lm-whitepaper__card p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--lm-greige);
  flex: 1;
  margin-bottom: 20px;
}

.lm-whitepaper__card .lm-btn {
  align-self: flex-start;
}

/* ============================================
   CTA — 温度感3段階カード
   ============================================ */
.lm-cta {
  padding: var(--lm-section-py) 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(221, 212, 231, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(232, 210, 204, 0.1) 0%, transparent 50%),
    var(--lm-ivory);
}

.lm-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lm-cta__inner h2 {
  font-family: var(--lm-font-head);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.lm-cta__inner > p {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 2.2;
  color: var(--lm-greige);
  margin-bottom: 56px;
}

.lm-cta__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.lm-cta__card {
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: var(--lm-white);
  border-radius: 22px;
  border: 1px solid var(--lm-pearl);
  transition: all var(--lm-duration) var(--lm-ease);
}

.lm-cta__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(67, 61, 57, 0.06);
}

.lm-cta__card--primary {
  background: var(--lm-white);
  color: var(--lm-ink);
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.4);
  border-color: var(--lm-pearl);
}

.lm-cta__card--primary p {
  color: var(--lm-greige);
}

.lm-cta__card-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--lm-gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.lm-cta__card--primary .lm-cta__card-label {
  color: var(--lm-gold);
}

.lm-cta__card h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1.6;
}

.lm-cta__card p {
  font-size: 14px;
  line-height: 2;
  color: var(--lm-greige);
  flex: 1;
}

.lm-cta__card-arrow {
  font-size: 18px;
  color: var(--lm-gold);
  margin-top: 20px;
  transition: transform 0.3s var(--lm-ease);
}

.lm-cta__card--primary .lm-cta__card-arrow {
  color: var(--lm-gold);
}

.lm-cta__card:hover .lm-cta__card-arrow {
  transform: translateX(6px);
}

/* ============================================
   FOOTER
   ============================================ */
.lm-footer {
  padding: 64px 0 32px;
  background: var(--lm-ink);
  color: rgba(250, 250, 248, 0.6);
}

.lm-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
}

.lm-footer__logo {
  font-family: var(--lm-font-head);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: #F0EDEA;
  display: block;
  margin-bottom: 10px;
}

.lm-footer__company {
  font-size: 12px;
  letter-spacing: 0.06em;
}

.lm-footer__nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.lm-footer__nav a {
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}

.lm-footer__nav a:hover { color: #F0EDEA; }

.lm-footer__copy {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: center;
  padding-top: 36px;
  border-top: 1px solid rgba(240, 237, 234, 0.12);
  color: rgba(240, 237, 234, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
.lm-br-pc { display: inline; }
.lm-br-sp { display: none; }

@media screen and (max-width: 1023px) {
  .lm-header__nav { display: none; }
  .lm-header__cta { display: none; }
  .lm-header__hamburger { display: block; }

  .lm-header__inner {
    padding: 0 20px;
    height: 60px;
  }

  .lm-strength__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lm-services__item-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .lm-services__item-arrow { display: none; }

  .lm-second-opinion__inner {
    flex-direction: column;
    text-align: center;
  }

  .lm-second-opinion__text {
    text-align: center;
  }

  .lm-second-opinion__image {
    max-width: 200px;
  }

  .lm-philosophy__mvv {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lm-whitepaper__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lm-whitepaper__card {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .lm-whitepaper__card-cover {
    max-width: 120px;
    margin-bottom: 0;
  }

  .lm-whitepaper__card .lm-btn {
    display: none;
  }

  .lm-cta__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lm-footer__inner {
    flex-direction: column;
    gap: 36px;
  }

  .lm-footer__nav ul {
    flex-direction: column;
    gap: 16px;
  }
}

@media screen and (max-width: 480px) {
  .lm-br-pc { display: none; }
  .lm-br-sp { display: inline; }

  .lm-hero__title { font-size: 28px; }

  .lm-hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .lm-btn {
    width: 100%;
    max-width: 300px;
  }
}
