/* ============================================================
   SHION THEME - Main Stylesheet v1.2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;700&family=Shippori+Mincho:wght@400;700&family=DM+Serif+Display:ital@0;1&family=Outfit:wght@200;300;400;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --white: #ffffff;
  --off-white: #f7f9f5;
  --green-deep: #1a4a2e;
  --green-mid: #2d7a4f;
  --green-bright: #3faa6a;
  --green-light: #a8d5b5;
  --green-pale: #e8f4ed;
  --text-dark: #0e1e16;
  --text-mid: #3a4a40;
  --text-light: #7a9a84;
  --nav-height: 112px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', 'Noto Serif JP', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ===== SCROLL PROGRESS BAR ===== */
.shion-scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
  z-index: 9999; transition: width 0.1s linear;
}

/* ===== NAVIGATION ===== */
.shion-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--nav-height); padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45,122,79,0.12);
  transition: box-shadow 0.3s;
}
.shion-nav.scrolled { box-shadow: 0 4px 32px rgba(26,74,46,0.10); }

/* ===== LOGO AREA ===== */
.nav-logo {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none;
}
/* Logo mark: put on a square green block */
.nav-logo-mark {
  width: 54px; height: 54px;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.nav-logo-mark img {
  width: 36px; height: 36px; object-fit: contain;
  filter: invert(1) brightness(2);
}
/* Logo text: black on white, visible */
.nav-logo-text {
  display: flex; flex-direction: column; gap: 4px;
}
.nav-logo-wordmark {
  background: var(--white);
  padding: 3px 0;
}
.nav-logo-wordmark img {
  height: 26px; width: auto;
  /* Black logo on white bg — no filter needed */
}
.nav-logo-tagline {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 10px;
  letter-spacing: 0.18em; color: var(--text-light);
}

/* Nav links */
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-mid); transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-mid); }

/* CTA */
.nav-cta {
  display: inline-block; padding: 13px 30px;
  background: var(--green-mid); color: white; text-decoration: none;
  border: none; font-size: 12px; letter-spacing: 0.1em; font-family: 'Outfit', sans-serif;
  transition: background 0.2s; white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
}
.nav-cta:hover { background: var(--green-deep); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: var(--text-dark); transition: all 0.3s; }

/* ===== LAYOUT UTILS ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 72px 0; }

/* Section Labels */
.section-label {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 10px;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::after {
  content: ''; max-width: 56px; height: 1px; background: var(--green-light); flex: 1;
}
.section-title {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: clamp(26px, 3vw, 42px); font-weight: 700;
  line-height: 1.4; color: var(--text-dark); margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-desc {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 15px;
  line-height: 1.9; color: var(--text-mid); max-width: 600px;
}

/* Buttons */
.btn-primary {
  display: inline-block; padding: 16px 40px;
  background: var(--green-mid); color: white; text-decoration: none;
  font-size: 13px; letter-spacing: 0.1em; font-family: 'Outfit', sans-serif;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn-secondary {
  display: inline-block; padding: 16px 40px;
  background: transparent; color: var(--green-mid); text-decoration: none;
  border: 1px solid var(--green-mid);
  font-size: 13px; letter-spacing: 0.1em; font-family: 'Outfit', sans-serif;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--green-pale); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green-mid);
  background: none; border: none; cursor: pointer; transition: gap 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { gap: 14px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--white); position: relative; overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(45,122,79,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 10% 20%, rgba(168,213,181,0.10) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45,122,79,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,122,79,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-label {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-label::before { content: ''; width: 32px; height: 1px; background: var(--green-mid); }
.hero-headline {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: clamp(34px, 4vw, 56px); font-weight: 700;
  line-height: 1.5; color: var(--text-dark); margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-family: 'Noto Serif JP', serif; font-weight: 300; font-size: 15px;
  line-height: 2.1; color: var(--text-mid); margin-bottom: 44px; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-card {
  background: var(--white); border: 1px solid rgba(45,122,79,0.14);
  padding: 44px; position: relative;
  box-shadow: 0 24px 64px rgba(26,74,46,0.08);
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-bright), var(--green-light));
}
.hero-card-label {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 28px;
}
.value-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid rgba(45,122,79,0.08);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--green-light);
  line-height: 1; min-width: 44px; font-style: italic;
}
.value-text h4 {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 0.2em; color: var(--green-mid); margin-bottom: 4px;
}
.value-text p {
  font-family: 'Noto Serif JP', serif; font-size: 12px; line-height: 1.7; color: var(--text-mid);
}

/* ===== PHILOSOPHY ===== */
.philosophy-section { background: var(--off-white); position: relative; overflow: hidden; }
.philosophy-section::before {
  content: 'PHILOSOPHY';
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  font-family: 'DM Serif Display', serif; font-size: 160px; font-style: italic;
  color: rgba(45,122,79,0.04); pointer-events: none; white-space: nowrap;
}
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 56px; }
.philosophy-body {
  font-family: 'Noto Serif JP', serif; font-size: 14px; line-height: 2.3; color: var(--text-mid);
}
.philosophy-body p { margin-bottom: 24px; }
.philosophy-body strong {
  font-family: 'Shippori Mincho', serif; font-size: 16px; font-weight: 700;
  color: var(--text-dark); display: block; margin-bottom: 10px;
}
.value-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.vc {
  background: var(--white); border: 1px solid rgba(45,122,79,0.1);
  padding: 28px 22px; position: relative; overflow: hidden; transition: all 0.3s;
}
.vc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.vc:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,74,46,0.08); }
.vc:hover::after { transform: scaleX(1); }
.vc-dark { background: var(--green-deep); border-color: var(--green-deep); }
.vc-en {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 22px; color: var(--green-mid); margin-bottom: 6px;
}
.vc-dark .vc-en { color: var(--green-light); }
.vc-jp {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 10px;
  letter-spacing: 0.3em; color: var(--text-light); margin-bottom: 12px;
}
.vc-dark .vc-jp { color: rgba(255,255,255,0.35); }
.vc-text {
  font-family: 'Noto Serif JP', serif; font-size: 12px; line-height: 1.8; color: var(--text-mid);
}
.vc-dark .vc-text { color: rgba(255,255,255,0.72); }

/* ===== MISSION / VISION ===== */
.mission-section { background: var(--green-deep); position: relative; overflow: hidden; }
.mission-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(63,170,106,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 20%, rgba(45,122,79,0.3) 0%, transparent 50%);
}
.mission-inner { position: relative; z-index: 1; }
.mission-section .section-label { color: var(--green-light); }
.mission-section .section-label::after { background: rgba(168,213,181,0.3); }
.mission-section .section-title { color: white; }
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; margin-top: 56px; }
.mission-block { border-left: 2px solid rgba(168,213,181,0.3); padding-left: 28px; }
.mission-block-label {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 10px;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 14px;
}
.mission-block h3 {
  font-family: 'Shippori Mincho', serif; font-size: 19px; font-weight: 700;
  color: white; line-height: 1.5; margin-bottom: 14px;
}
.mission-block p {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 13px;
  line-height: 1.9; color: rgba(255,255,255,0.68);
}
.mission-statement {
  margin-top: 72px; padding: 60px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(168,213,181,0.14);
  text-align: center;
}
.mission-statement p {
  font-family: 'Noto Serif JP', serif; font-size: 15px; line-height: 2.4;
  color: rgba(255,255,255,0.82); max-width: 760px; margin: 0 auto;
}
.statement-chain {
  display: flex; justify-content: center; gap: 20px; margin-top: 36px; flex-wrap: wrap;
}
.chain-item {
  font-family: 'Shippori Mincho', serif; font-size: 16px;
  color: var(--green-bright); font-weight: 700;
  display: flex; align-items: center; gap: 12px;
}
.chain-item::after { content: '→'; font-family: sans-serif; font-size: 13px; color: var(--green-light); }
.chain-item:last-child::after { display: none; }

/* ===== CEO MESSAGE ===== */
.ceo-section { background: var(--white); }
.ceo-layout { display: grid; grid-template-columns: 300px 1fr; gap: 80px; align-items: start; margin-top: 56px; }
.ceo-photo-wrap { position: relative; }
.ceo-photo-container { position: relative; overflow: hidden; background: var(--green-pale); }
.ceo-photo-container img { width: 100%; }
.ceo-decoration {
  position: absolute; bottom: -16px; right: -16px;
  width: 96px; height: 96px; border: 2px solid var(--green-light); z-index: -1;
}
.ceo-name-block {
  margin-top: 24px; padding: 18px 20px;
  background: var(--green-pale); border-left: 3px solid var(--green-mid);
}
.ceo-name { font-family: 'Shippori Mincho', serif; font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.ceo-title { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 10px; letter-spacing: 0.2em; color: var(--text-light); text-transform: uppercase; }
.ceo-message { font-family: 'Noto Serif JP', serif; font-size: 14px; line-height: 2.4; color: var(--text-mid); }
.ceo-message p { margin-bottom: 22px; }
.ceo-highlight {
  font-family: 'Shippori Mincho', serif; font-size: 17px; font-weight: 700;
  color: var(--green-deep); line-height: 1.9; margin-bottom: 28px;
  padding-left: 20px; border-left: 3px solid var(--green-mid);
}
.ceo-signature {
  margin-top: 36px; text-align: right;
  font-family: 'Shippori Mincho', serif; font-size: 18px; color: var(--text-dark);
}

/* ===== SERVICES ===== */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.service-card {
  background: var(--white); border: 1px solid rgba(45,122,79,0.1);
  padding: 34px 28px; position: relative; overflow: hidden; transition: all 0.3s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-bright));
}
.service-card:hover:not(.coming-soon) {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26,74,46,0.10);
  border-color: var(--green-mid);
}
.service-card.coming-soon { opacity: 0.6; }
.coming-badge {
  position: absolute; top: 18px; right: 18px;
  font-family: 'Outfit', sans-serif; font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 4px 10px;
  background: var(--green-pale); color: var(--green-mid); border: 1px solid var(--green-light);
}
.service-icon {
  width: 56px; height: 56px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-pale);
}
.service-icon img { width: 40px; height: auto; }
.service-num { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 13px; color: var(--green-light); margin-bottom: 10px; }
.service-name { font-family: 'Shippori Mincho', serif; font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.service-name-en { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 10px; letter-spacing: 0.2em; color: var(--text-light); margin-bottom: 14px; }
.service-desc { font-family: 'Noto Serif JP', serif; font-size: 13px; line-height: 1.9; color: var(--text-mid); margin-bottom: 18px; }

/* ===== COMPANY ===== */
.company-section { background: var(--white); }
.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 56px; align-items: start; }
.company-table { width: 100%; border-collapse: collapse; }
.company-table tr { border-bottom: 1px solid rgba(45,122,79,0.1); }
.company-table th {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-light); padding: 20px 0; width: 130px; vertical-align: top; text-align: left;
}
.company-table td { font-family: 'Noto Serif JP', serif; font-size: 14px; line-height: 1.8; color: var(--text-dark); padding: 20px 0; }
.company-brand-box {
  background: var(--off-white); padding: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(45,122,79,0.1);
}
/* Logo on light background: show as-is (black logo visible on light bg) */
.company-brand-box img { height: 60px; width: auto; }
.company-statement { background: var(--green-deep); padding: 40px; margin-top: 0; }
.company-statement p { font-family: 'Noto Serif JP', serif; font-size: 13px; line-height: 2.2; color: rgba(255,255,255,0.78); }

/* ===== CONTACT ===== */
.contact-section {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--green-pale) 100%);
  position: relative; overflow: hidden;
}
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; }
.contact-types { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.contact-type {
  font-family: 'Noto Serif JP', serif; font-size: 13px; color: var(--text-mid);
  padding: 12px 16px; background: white; border-left: 3px solid var(--green-mid);
  display: flex; align-items: center; gap: 8px;
}
.contact-type::before { content: '›'; color: var(--green-mid); font-size: 18px; }

/* ===== FORM ===== */
.shion-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.shion-form .form-group { margin-bottom: 14px; }
.shion-form label {
  display: block; font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 10px;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 7px;
}
.shion-form input,
.shion-form textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid rgba(45,122,79,0.2); background: white;
  font-family: 'Noto Serif JP', serif; font-size: 14px; color: var(--text-dark);
  outline: none; transition: border-color 0.2s;
}
.shion-form input:focus,
.shion-form textarea:focus { border-color: var(--green-mid); }
.shion-form textarea { height: 140px; resize: vertical; }

/* Select with visible dropdown arrow */
.shion-form .select-wrap {
  position: relative;
}
.shion-form .select-wrap::after {
  content: '▾';
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-light); font-size: 14px; pointer-events: none;
}
.shion-form select {
  width: 100%; padding: 14px 40px 14px 16px;
  border: 1px solid rgba(45,122,79,0.2); background: white;
  font-family: 'Noto Serif JP', serif; font-size: 14px; color: var(--text-dark);
  outline: none; transition: border-color 0.2s;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  cursor: pointer;
}
.shion-form select:focus { border-color: var(--green-mid); }

.shion-form .form-submit {
  width: 100%; padding: 18px;
  background: var(--green-mid); color: white; border: none;
  font-family: 'Outfit', sans-serif; font-size: 13px; letter-spacing: 0.1em;
  transition: background 0.2s; margin-top: 6px; cursor: pointer;
}
.shion-form .form-submit:hover { background: var(--green-deep); }
.shion-form .form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.shion-form .form-note { font-family: 'Noto Serif JP', serif; font-size: 11px; color: var(--text-light); margin-top: 10px; text-align: center; line-height: 1.8; }
.shion-form .success-msg { display: none; padding: 16px; font-family: 'Noto Serif JP', serif; font-size: 14px; margin-top: 16px; border: 1px solid; }
.shion-form .success-msg.is-success { background: var(--green-pale); border-color: var(--green-light); color: var(--green-deep); }
.shion-form .success-msg.is-error { background: #fff5f5; border-color: #fca5a5; color: #991b1b; }

/* ===== CONSULTING PAGE ===== */
.consult-hero {
  background: var(--green-deep); padding: 140px 0 80px; position: relative; overflow: hidden;
}
.consult-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(63,170,106,0.12) 0%, transparent 60%);
}
.consult-hero-inner { position: relative; z-index: 1; }
.consult-hero .section-label { color: var(--green-light); }
.consult-hero .section-label::after { background: rgba(168,213,181,0.3); }
.consult-hero h1 {
  font-family: 'Shippori Mincho', serif; font-size: clamp(32px,4vw,54px);
  font-weight: 700; color: white; line-height: 1.3; margin-bottom: 24px;
}
.consult-hero p {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 16px;
  line-height: 1.9; color: rgba(255,255,255,0.72); max-width: 580px;
}
.consult-hero .btn-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.consult-hero .btn-secondary { border-color: rgba(255,255,255,0.3); color: white; }
.consult-hero .btn-secondary:hover { background: rgba(255,255,255,0.08); }

.consult-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 48px; }
.consult-feature {
  padding: 36px; background: var(--white); border: 1px solid rgba(45,122,79,0.1);
  border-left: 4px solid var(--green-mid); transition: box-shadow 0.3s;
}
.consult-feature:hover { box-shadow: 0 8px 32px rgba(26,74,46,0.08); }
.consult-feature h3 { font-family: 'Shippori Mincho', serif; font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.consult-feature p { font-family: 'Noto Serif JP', serif; font-size: 13px; line-height: 1.9; color: var(--text-mid); }
.consult-feature ul { font-family: 'Noto Serif JP', serif; font-size: 12px; line-height: 2; color: var(--text-mid); padding-left: 16px; margin-top: 12px; }

.flow-steps { display: flex; gap: 0; margin-top: 48px; }
.flow-step {
  flex: 1; padding: 32px 20px; text-align: center;
  background: var(--white); border: 1px solid rgba(45,122,79,0.1);
  position: relative;
}
.flow-step::after {
  content: '→'; position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
  font-size: 18px; color: var(--green-mid); z-index: 1; background: var(--off-white); padding: 4px 2px;
}
.flow-step:last-child::after { display: none; }
.flow-num { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 32px; color: var(--green-light); display: block; margin-bottom: 10px; }
.flow-step h4 { font-family: 'Shippori Mincho', serif; font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.flow-step p { font-family: 'Noto Serif JP', serif; font-size: 11px; line-height: 1.8; color: var(--text-mid); }

.skill-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
.skill-table th { background: var(--green-deep); color: white; font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 11px; letter-spacing: 0.1em; padding: 14px 18px; text-align: left; }
.skill-table td { padding: 13px 18px; border-bottom: 1px solid rgba(45,122,79,0.08); font-family: 'Noto Serif JP', serif; font-size: 12px; line-height: 1.7; color: var(--text-mid); vertical-align: top; }
.skill-table tr:nth-child(even) td { background: var(--green-pale); }
.skill-cat { font-weight: 700; color: var(--green-deep); font-family: 'Shippori Mincho', serif; }

.consult-cta { background: var(--green-deep); text-align: center; }
.consult-cta .section-title { color: white; }
.consult-cta p { font-family: 'Noto Serif JP', serif; font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.72); margin: 20px auto; max-width: 520px; }

/* ===== PAGE HERO (汎用) ===== */
.page-hero {
  background: var(--green-deep); padding: 140px 0 72px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(63,170,106,0.10) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--green-light); }
.page-hero .section-label::after { background: rgba(168,213,181,0.3); }
.page-hero .section-title { color: white; }
.page-hero .section-desc { color: rgba(255,255,255,0.70); }

/* ===== FOOTER ===== */
.shion-footer { background: var(--text-dark); padding: 64px 0 28px; }
.footer-content { display: grid; grid-template-columns: 260px 1fr 1fr; gap: 56px; margin-bottom: 44px; }
.footer-brand-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
/* Footer logo: mark on green square, text on light pill */
.footer-mark {
  width: 40px; height: 40px; background: var(--green-deep);
  border: 1px solid rgba(168,213,181,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-mark img { width: 26px; height: 26px; object-fit: contain; filter: invert(1) brightness(2); }
.footer-wordmark {
  background: rgba(255,255,255,0.06); padding: 6px 12px;
}
.footer-wordmark img { height: 18px; width: auto; filter: invert(1) brightness(1.5); }
.footer-brand p { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 12px; line-height: 1.9; color: rgba(255,255,255,0.38); }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 13px; color: rgba(255,255,255,0.56); padding: 5px 0; }
.footer-col ul li a { color: inherit; transition: color 0.2s; }
.footer-col ul li:hover, .footer-col ul li a:hover { color: var(--green-bright); }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 11px; color: rgba(255,255,255,0.28); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  :root { --nav-height: 88px; }
  .shion-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo-tagline { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-height); left: 0; width: 100%;
    background: white; padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid rgba(45,122,79,0.1);
    box-shadow: 0 8px 24px rgba(26,74,46,0.08);
  }
  .nav-cta { display: none; }
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
  .value-cards-grid { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 32px; }
  .mission-statement { padding: 32px 20px; }
  .ceo-layout { grid-template-columns: 1fr; }
  .ceo-photo-wrap { max-width: 280px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .company-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .flow-steps { flex-direction: column; }
  .flow-step::after { display: none; }
  .consult-features { grid-template-columns: 1fr; }
  .shion-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .value-cards-grid { grid-template-columns: 1fr; }
}
