*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #1a1714;
  --earth: #4a3728;
  --moss: #5c6b4a;
  --sand: #c8b89a;
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --rust: #9b5e3c;
  --sky: #7a9baa;
  --accent: #c8663a;
  --light-moss: #e8eedf;
  --light-sand: #f0e8d8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,55,40,0.12);
}

.logo {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.05em;
  color: var(--earth);
}
.logo span {
  font-weight: 300;
  color: var(--rust);
  margin-left: 4px;
}

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

header nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--earth);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
header nav a:hover { color: var(--accent); }

.header-cta {
  background: var(--accent);
  color: white !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-weight: 500 !important;
}
.header-cta:hover { background: var(--rust) !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  padding-top: 72px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--earth);
}

.hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
  position: absolute;
  inset: 0;
}

/* Simulated landscape with CSS */
.hero-illustration {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(180deg,
    #b8d4e8 0%,
    #d4e8d0 40%,
    #8aac78 60%,
    #5c7a4a 75%,
    #3a5230 100%
  );
}

.hero-mountains {
  position: absolute;
  bottom: 30%;
  left: 0; right: 0;
  height: 40%;
}

.hero-house {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,55,40,0.15) 0%, rgba(26,23,20,0.05) 100%);
}

.hero-label {
  position: absolute;
  top: 40px;
  left: 40px;
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  letter-spacing: 0.3em;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7), 0 0 2px rgba(0,0,0,0.9);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 64px;
  position: relative;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--rust);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--rust);
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--earth);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.hero-title strong {
  font-weight: 600;
  color: var(--ink);
}

.hero-title-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 300;
  font-style: italic;
  color: var(--sand);
  letter-spacing: 0.12em;
  margin-bottom: 36px;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.9;
  color: #5a4a3a;
  font-weight: 300;
  margin-bottom: 52px;
  border-left: 2px solid var(--sand);
  padding-left: 20px;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  max-width: 340px;
}

.cta-btn-primary {
  background: var(--accent);
  color: white;
}
.cta-btn-primary:hover {
  background: var(--rust);
  transform: translateX(3px);
}

.cta-btn-secondary {
  background: transparent;
  color: var(--earth);
  border: 1.5px solid var(--sand);
}
.cta-btn-secondary:hover {
  border-color: var(--earth);
  background: var(--light-sand);
  transform: translateX(3px);
}

.cta-arrow {
  font-size: 18px;
  transition: transform 0.2s;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(200,184,154,0.4);
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--earth);
  line-height: 1;
}

.stat-num span {
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}

.stat-label {
  font-size: 11px;
  color: #7a6a5a;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ─── SECTION BASE ─── */
section {
  padding: 100px 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-header {
  margin-bottom: 64px;
}

.section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--light-sand);
  line-height: 1;
  margin-bottom: -20px;
  margin-left: -4px;
  letter-spacing: -0.02em;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--rust);
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sand);
  max-width: 60px;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--earth);
}
.section-title strong { font-weight: 600; color: var(--ink); }

.section-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #5a4a3a;
  font-weight: 300;
  margin-top: 20px;
  max-width: 600px;
}

/* ─── SECTION 2: WHY MOVE ─── */
.why-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: 'MOVE';
  position: absolute;
  right: -20px;
  top: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 300;
  color: rgba(200,184,154,0.15);
  letter-spacing: -0.05em;
  pointer-events: none;
}

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-card {
  background: var(--cream);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(200,184,154,0.4);
  cursor: default;
}
.why-card:first-child { border-top: 1px solid rgba(200,184,154,0.4); }
.why-card:hover { background: var(--warm-white); padding-left: 8px; }

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s;
}
.why-card:hover::before { height: 100%; }

.why-icon {
  width: 52px;
  height: 52px;
  margin: 32px 0 32px 32px;
  flex-shrink: 0;
}

.why-card-body {
  padding: 32px 0;
}

.why-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--earth);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.why-card p {
  font-size: 14px;
  line-height: 1.85;
  color: #5a4a3a;
  font-weight: 300;
  max-width: 680px;
}

.why-data-wrap {
  padding: 32px 40px 32px 0;
  text-align: right;
  min-width: 160px;
  flex-shrink: 0;
}

.why-data {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

/* ─── SECTION 3: STRENGTHS ─── */
.strengths-section {
  background: var(--warm-white);
}

.strengths-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.strength-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.strength-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(200,184,154,0.4);
  transition: all 0.25s;
  cursor: default;
}
.strength-item:first-child { border-top: 1px solid rgba(200,184,154,0.4); }
.strength-item:hover { padding-left: 8px; }

.strength-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  padding-top: 4px;
}

.strength-text h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--earth);
  margin-bottom: 8px;
}

.strength-text p {
  font-size: 13.5px;
  line-height: 1.85;
  color: #6a5a4a;
  font-weight: 300;
}

/* Seminar card */
.seminar-card {
  background: var(--earth);
  color: white;
  padding: 0;
  border-radius: 2px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.seminar-img-area {
  height: 200px;
  background: linear-gradient(135deg, #5c7a4a, #3a5a6a);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.seminar-img-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(200,184,154,0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(122,155,170,0.2) 0%, transparent 50%);
}

.venue-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 1px;
}

.seminar-content {
  padding: 40px;
}

.seminar-tag {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--sand);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.seminar-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  color: white;
  margin-bottom: 8px;
}
.seminar-title strong { font-weight: 600; }

.seminar-meta {
  font-size: 13px;
  color: var(--sand);
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 300;
}

.seminar-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.seminar-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}
.seminar-feature::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--moss);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  line-height: 20px;
  text-align: center;
}

.seminar-cta {
  display: block;
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 0.2s;
}
.seminar-cta:hover { background: #b85530; }

/* ─── SECTION 4: CONSULTATION ─── */
.consult-section {
  background: var(--light-moss);
  position: relative;
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(92,107,74,0.2);
  margin-top: 60px;
}

.consult-item {
  background: var(--warm-white);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.3s;
}
.consult-item:hover { background: white; }

.consult-emoji {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.consult-item h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--earth);
  margin-bottom: 10px;
}

.consult-item p {
  font-size: 12.5px;
  line-height: 1.75;
  color: #6a5a4a;
  font-weight: 300;
}

.consult-text {
  flex: 1;
  min-width: 0;
}

.consult-bottom {
  margin-top: 48px;
  background: var(--earth);
  color: white;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px;
}

.consult-bottom-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 300;
}
.consult-bottom-text strong { font-weight: 600; }

.consult-bottom-sub {
  font-size: 13px;
  color: var(--sand);
  margin-top: 4px;
  font-weight: 300;
}

/* ─── SEMINAR SLIDESHOW ─── */
.sem-slider-track {
  display: flex;
  height: 220px;
  transition: transform 0.6s ease;
}
.sem-slide {
  min-width: 100%;
  height: 220px;
  overflow: hidden;
}
.sem-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.sem-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.sem-dot.active { background: white; }

/* ─── INLINE CTA BUTTONS ─── */
.inline-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(200,184,154,0.4);
}

.inline-cta .cta-btn {
  max-width: 280px;
}


.case-section {
  margin-bottom: 16px;
}

.case-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--rust);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.case-section-title::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--rust);
}

/* ─── SLIDER ─── */
.case-slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 240px;
  transition: transform 0.4s ease;
}

.slider-slide {
  min-width: 100%;
  height: 240px;
  overflow: hidden;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--earth);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s;
  z-index: 2;
}
.slider-btn:hover { background: white; }
.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active { background: white; }

/* ─── SECTION: CASES ─── */
.cases-section {
  background: var(--warm-white);
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.case-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(74,55,40,0.07);
  transition: transform 0.3s;
}
.case-card:hover { transform: translateY(-4px); }

.case-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.case-img-placeholder {
  width: 100%;
  height: 100%;
}

.case-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 24px 14px;
  background: linear-gradient(0deg, rgba(26,23,20,0.7), transparent);
  font-size: 13px;
  color: white;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.case-body {
  padding: 32px;
}

.case-profile {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(200,184,154,0.3);
}

.case-family {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--earth);
}

.case-meta {
  font-size: 12px;
  color: #9a8a7a;
  font-weight: 300;
}

.case-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 14px;
}

.case-body-text {
  font-size: 13.5px;
  line-height: 1.9;
  color: #5a4a3a;
  font-weight: 300;
  margin-bottom: 20px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-badge {
  font-size: 11px;
  background: var(--light-sand);
  color: var(--earth);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ─── SECTION 5: CTA ─── */
.cta-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(74,55,40,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(92,107,74,0.2) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px;
}

.cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--sand);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: white;
  line-height: 1.6;
  margin-bottom: 14px;
}
.cta-title strong { font-weight: 600; color: var(--sand); }

.cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-bottom: 60px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-lg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 40px;
  min-width: 200px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.cta-btn-lg span:first-child {
  font-size: 11px;
  letter-spacing: 0.15em;
  opacity: 0.75;
}

.cta-btn-lg span:last-child {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.btn-a {
  background: var(--accent);
  color: white;
}
.btn-a:hover { background: var(--rust); transform: translateY(-2px); }

.btn-b {
  background: var(--moss);
  color: white;
}
.btn-b:hover { background: #4a5c3a; transform: translateY(-2px); }

.btn-c {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-c:hover { border-color: white; background: rgba(255,255,255,0.05); transform: translateY(-2px); }

/* ─── SECTION 6: AREAS ─── */
.areas-section {
  background: var(--warm-white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.area-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.3s;
}
.area-card:hover { transform: translateY(-4px); }

.area-visual {
  height: 220px;
  position: relative;
}

.area-card:nth-child(1) .area-visual { background: linear-gradient(160deg, #3a6080 0%, #5a8aaa 40%, #8ab4c8 70%, #c8e0ea 100%); }
.area-card:nth-child(2) .area-visual { background: linear-gradient(160deg, #4a6040 0%, #7a9a60 40%, #a8c880 70%, #d0e8a0 100%); }
.area-card:nth-child(3) .area-visual { background: linear-gradient(160deg, #6a5040 0%, #9a8060 40%, #c8a880 70%, #e0c8a0 100%); }
.area-card:nth-child(4) .area-visual { background: linear-gradient(160deg, #5a4a70 0%, #8a7aaa 40%, #b0a0c8 70%, #d8d0e8 100%); }

.area-visual-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 24px 20px;
  background: linear-gradient(0deg, rgba(26,23,20,0.7), transparent);
}

.area-region {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.area-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 600;
  color: white;
}

.area-info {
  padding: 20px 24px;
  background: var(--cream);
}

.area-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.area-info li {
  font-size: 12.5px;
  color: #6a5a4a;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-info li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
}

.area-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: var(--earth);
  color: var(--sand);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}
.area-link:hover { background: var(--ink); }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 60px 48px 40px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.footer-heading {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content .hero-eyebrow { animation: fadeUp 0.8s ease 0.1s both; }
.hero-content .hero-title { animation: fadeUp 0.8s ease 0.25s both; }
.hero-content .hero-title-en { animation: fadeUp 0.8s ease 0.35s both; }
.hero-content .hero-subtitle { animation: fadeUp 0.8s ease 0.45s both; }
.hero-content .cta-group { animation: fadeUp 0.8s ease 0.55s both; }
.hero-content .hero-stats { animation: fadeUp 0.8s ease 0.7s both; }

/* SVG icons */
.icon-remote { color: var(--sky); }
.icon-nature { color: var(--moss); }
.icon-house { color: var(--rust); }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.scroll-line {
  width: 2px;
  height: 44px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  animation: scrollLine 2s ease-in-out infinite;
  box-shadow: 0 0 4px rgba(0,0,0,0.5);
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* Responsive basic */
@media (max-width: 960px) {
  /* ── HEADER ── */
  header { padding: 14px 20px; }
  header nav { display: none; }
  .logo { font-size: 14px; }

  /* ── HERO ── */
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 260px; }
  .hero-content { padding: 40px 20px; }
  .hero-title { font-size: 28px; }
  .hero-title-en { font-size: 12px; }
  .hero-subtitle { font-size: 13px; }
  .cta-btn { font-size: 13px; padding: 13px 20px; max-width: 100%; }
  .hero-stats { gap: 24px; margin-top: 32px; padding-top: 24px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 10px; }

  /* ── SECTIONS ── */
  section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .section-num { font-size: 56px; }
  .section-title { font-size: 22px; }
  .section-desc { font-size: 13px; }
  .section-header { margin-bottom: 36px; }

  /* ── WHY SECTION ── */
  .why-section::before { display: none; }
  .why-card { grid-template-columns: 52px 1fr; gap: 16px; }
  .why-data-wrap { display: none; }
  .why-icon { margin: 20px 0 20px 16px; width: 40px; height: 40px; }
  .why-card-body { padding: 20px 16px 20px 0; }
  .why-card h3 { font-size: 15px; }
  .why-card p { font-size: 13px; }
  .inline-cta { flex-direction: column; gap: 12px; margin-top: 32px; padding-top: 32px; }
  .inline-cta .cta-btn { max-width: 100%; }

  /* ── STRENGTHS ── */
  .strengths-layout { grid-template-columns: 1fr; gap: 40px; }
  .seminar-card { position: static; }
  .strength-item { grid-template-columns: 44px 1fr; gap: 16px; padding: 24px 0; }
  .strength-num { font-size: 26px; }
  .strength-text h3 { font-size: 15px; }
  .strength-text p { font-size: 13px; }
  .seminar-content { padding: 28px 24px; }
  .seminar-title { font-size: 18px; }

  /* ── CONSULT ── */
  .consult-grid {
    grid-template-columns: 1fr;
    background: none;
    gap: 0;
  }
  .consult-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid rgba(200,184,154,0.3);
    background: transparent;
  }
  .consult-item:first-child { border-top: 1px solid rgba(200,184,154,0.3); }
  .consult-emoji { flex-shrink: 0; margin: 0; width: 40px; height: 40px; }
  .consult-item h3 { font-size: 14px; margin-bottom: 6px; }
  .consult-item p { font-size: 13px; line-height: 1.75; }
  .consult-bottom {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
  }
  .consult-bottom-text { font-size: 16px; }
  .consult-bottom .cta-btn { max-width: 100%; }

  /* ── CASES ── */
  .cases-grid { grid-template-columns: 1fr; gap: 24px; }
  .case-body { padding: 20px; }
  .case-title { font-size: 14px; }
  .case-body-text { font-size: 12.5px; }
  .case-section-title { font-size: 10px; }
  .case-profile { flex-direction: column; gap: 4px; }
  .case-family { font-size: 14px; }

  /* ── FOOTER ── */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 11px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 24px; }
  .stat-num { font-size: 20px; }
  .hero-stats { gap: 16px; }
  .seminar-img-area { height: 160px; }
  .slider-track { height: 200px; }
  .slider-slide { height: 200px; }
  .slider-slide img { height: 200px !important; }
  .case-img { height: 200px; }
  .consult-bottom { padding: 20px 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stat-num-text {
  font-size: 22px;
  padding-top: 6px;
}

.why-note {
  font-size: 11px;
  color: #9a8a7a;
  margin-top: 6px;
}

.seminar-slider {
  padding: 0;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.sem-slide-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sem-slide-image-top {
  object-position: center top;
}

.seminar-cta-disabled {
  background: #9a9a9a;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

.cta-btn-short {
  max-width: 220px;
}

.case-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.footer-bottom-no-border {
  border-top: none;
}
