/* ==========================================
   eEntry Inc. — Redesigned Stylesheet v2
   Color System: Navy × Gold (2-color core)
   Accent: Sage Green (wellness only)
   ========================================== */

/* ---------- Variables ---------- */
:root {
  /* === 2 CORE COLORS — softer slate × warm amber === */
  --navy:         #2C4A7C;
  --navy-mid:     #3A5C90;
  --navy-light:   #4E74AB;
  --navy-pale:    #EDF1F8;

  --gold:         #B8720C;
  --gold-mid:     #CC8418;
  --gold-light:   #E8A228;
  --gold-pale:    #FDF3E3;

  /* === ACCENT — sage wellness === */
  --green:        #3A7468;
  --green-light:  #4D8F82;
  --green-pale:   #EAF4F1;

  /* === NEUTRALS === */
  --cream:        #F8F5EF;
  --cream-dark:   #EDE8DC;
  --white:        #FFFFFF;
  --charcoal:     #2D3748;
  --gray:         #6B7A8D;
  --gray-light:   #CBD5E1;

  /* === TYPOGRAPHY === */
  --font-serif: 'Noto Serif JP', 'Georgia', serif;
  --font-sans:  'Noto Sans JP', 'Helvetica Neue', sans-serif;

  /* === TOKENS === */
  --shadow-sm: 0 2px 8px rgba(44,74,124,.07);
  --shadow-md: 0 8px 28px rgba(44,74,124,.13);
  --shadow-lg: 0 20px 60px rgba(44,74,124,.18);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --trans: .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--charcoal); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.3; color: var(--navy); }

.label {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .7rem;
}

.sec-title {
  font-size: clamp(1.75rem, 3.8vw, 2.7rem);
  margin-bottom: 1.1rem;
}

.sec-lead {
  font-size: 1.02rem;
  color: var(--gray);
  max-width: 640px;
  line-height: 1.9;
}

/* ---------- Layout ---------- */
.container { width: 92%; max-width: 1100px; margin: 0 auto; }
section { padding: 96px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .82rem 1.9rem;
  border-radius: 60px;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  letter-spacing: .04em;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,120,10,.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,43,94,.35);
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ========================================
   HEADER
   ======================================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--trans), box-shadow var(--trans);
}
header.scrolled {
  background: rgba(247,244,238,.96);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Logo */
.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  letter-spacing: .04em;
  line-height: 1;
  transition: color var(--trans);
}
.logo-sub {
  font-size: .9rem;
  letter-spacing: .12em;
  color: var(--gold-light);
  font-weight: 600;
  transition: color var(--trans);
}
header.scrolled .logo-main { color: var(--navy); }
header.scrolled .logo-sub  { color: var(--gold); }

/* Nav */
nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  letter-spacing: .04em;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--trans);
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold-light);
  transition: width var(--trans);
}
nav a:hover::after { width: 100%; }
nav a:hover { color: var(--gold-light); }
header.scrolled nav a { color: var(--navy); }
header.scrolled nav a:hover { color: var(--gold); }
header.scrolled nav a::after { background: var(--gold); }

.nav-icons { display: flex; align-items: center; gap: .5rem; }
.nav-icons a {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: var(--trans);
}
.nav-icons a:hover { background: var(--gold); transform: scale(1.1); }
.nav-icons a::after { display: none; }

/* Mobile */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: rgba(255,255,255,.9); transition: var(--trans); border-radius: 2px;
}
header.scrolled .menu-toggle span { background: var(--navy); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   HERO — Company first, CEO as differentiator
   ======================================== */
#hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(184,114,12,.14) 0%, transparent 55%),
    linear-gradient(150deg, #2C4A7C 0%, #1B3260 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Geometric accents */
.hero-geo {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-geo-ring {
  position: absolute;
  border: 1px solid rgba(200,120,10,.18);
  border-radius: 50%;
}
.hero-geo-ring:nth-child(1) { width: 500px; height: 500px; top: -15%; right: -8%; }
.hero-geo-ring:nth-child(2) { width: 340px; height: 340px; top: -5%; right: 3%; }
.hero-geo-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .4;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 110px 0 80px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr auto;
  column-gap: 5rem;
  row-gap: 0;
}

/* Left — Company (row 1, col 1) */
.hero-company {
  grid-column: 1;
  grid-row: 1;
}

/* Right — CEO col (row 1, col 2) */
.hero-ceo-col {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-co-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid rgba(200,120,10,.4);
  background: rgba(200,120,10,.1);
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: .36rem 1rem;
  border-radius: 60px;
  margin-bottom: 1.6rem;
}
.hero-co-tag-dot {
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100%{opacity:1;} 50%{opacity:.4;}
}

.hero-co-name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: rgba(255,255,255,.65);
  font-weight: 400;
  letter-spacing: .06em;
  margin-bottom: .3rem;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.8rem;
}
.hero-tagline em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-desc {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.95;
  margin-bottom: 2.2rem;
  max-width: 520px;
}

.hero-actions {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  padding-top: 2rem;
  align-items: center;
}

/* Gold accent divider */
.hero-divider {
  width: 60px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1.4rem;
}

/* Right — CEO portrait (borderless elegant design) */
.hero-ceo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem 0;
  position: relative;
}

/* Ambient glow behind portrait */
.hero-ceo-card::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,120,10,.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-ceo-photo {
  width: 260px; height: 260px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin: 0 auto 1.8rem;
  overflow: hidden;
  /* elegant double-ring */
  box-shadow:
    0 0 0 4px rgba(200,120,10,.7),
    0 0 0 10px rgba(200,120,10,.15),
    0 24px 60px rgba(0,0,0,.5);
}
.hero-ceo-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
}

.hero-ceo-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  text-align: center;
  margin-bottom: .2rem;
  position: relative; z-index: 1;
  letter-spacing: .06em;
}
.hero-ceo-name-en {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .22em;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  position: relative; z-index: 1;
}

/* Thin gold rule */
.hero-ceo-card .hero-ceo-rule {
  width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto .95rem;
  position: relative; z-index: 1;
}

.hero-ceo-badge {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  flex-wrap: nowrap;
  padding-top: 2rem;
  position: relative; z-index: 1;
}
.hero-ceo-badge span,
.hero-ceo-title-badge {
  background: transparent;
  color: var(--gold-light);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .82rem 1.4rem;
  border-radius: 60px;
  border: 2px solid rgba(200,120,10,.55);
  white-space: nowrap;
  text-decoration: none;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.hero-ceo-title-badge::after { display: none; }
.hero-ceo-title-badge:hover {
  border-color: rgba(200,120,10,.9);
  background: rgba(200,120,10,.1);
  color: var(--gold-light);
  cursor: pointer;
}
.hero-ceo-sns-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  background: transparent;
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .82rem 1.4rem;
  min-width: 4.2rem;
  border-radius: 60px;
  border: 2px solid rgba(200,120,10,.35);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.hero-ceo-sns-badge:hover {
  border-color: rgba(200,120,10,.8);
  background: rgba(200,120,10,.08);
  color: var(--gold);
}
.hero-ceo-sns-badge::after { display: none; }

.hero-ceo-stats { display: none; }

.hero-ceo-sns {
  display: flex;
  gap: .6rem;
  justify-content: center;
  position: relative; z-index: 1;
}
.hero-ceo-sns a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem 1rem;
  border-radius: 60px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(4px);
  transition: var(--trans);
}
.hero-ceo-sns a:hover {
  border-color: var(--gold);
  color: var(--white);
  background: rgba(200,120,10,.14);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.35);
  font-size: .65rem;
  letter-spacing: .16em;
}
.scroll-hint-bar {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: grow 2.2s infinite;
}
@keyframes grow {
  0%  { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   INTRO STRIP — Company message
   ======================================== */
#intro {
  background: var(--gold-pale);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--cream-dark);
  padding: 56px 0;
}
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
  align-items: center;
}
.intro-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  color: var(--navy);
  line-height: 1.5;
  border-left: 4px solid var(--gold);
  padding-left: 1.2rem;
}
.intro-text {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.95;
}
.intro-text p + p { margin-top: .9rem; }

/* ========================================
   PROFILE
   ======================================== */
#profile { background: var(--white); }

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: 5rem;
  align-items: start;
}

.profile-sticky { position: sticky; top: 88px; }

.profile-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--cream), var(--cream-dark));
  border: 1px solid var(--cream-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  position: relative;
  overflow: hidden;
}
.profile-photo::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.profile-photo-inner {
  width: 100%; height: 100%;
  padding: 0;
}
.profile-photo-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.profile-photo-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 2px dashed var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.profile-photo-note {
  font-size: .72rem;
  color: var(--gray);
  line-height: 1.6;
}

.profile-tags {
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.profile-tag {
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 60px;
  letter-spacing: .04em;
  background: var(--navy-pale);
  border: 1px solid rgba(26,43,94,.15);
  color: var(--navy);
}
.profile-tag.gold {
  background: var(--gold-pale);
  border-color: rgba(200,120,10,.3);
  color: var(--gold);
}

.profile-content .label { margin-bottom: .4rem; }
.profile-content .sec-title { margin-bottom: .3rem; }
.profile-role {
  font-size: .95rem;
  color: var(--gold-mid);
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.profile-bio {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.profile-bio p + p { margin-top: .9rem; }

/* Timeline */
.tl-heading {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.timeline { position: relative; padding-left: 1.4rem; }
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy) 60%, var(--gold));
  border-radius: 2px;
}
.tl-item {
  position: relative;
  padding: 0 0 1.6rem 1.4rem;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy);
}
.tl-item.gold-dot::before { border-color: var(--gold); }

.tl-year {
  font-size: .7rem; font-weight: 700;
  color: var(--gold); letter-spacing: .1em;
  margin-bottom: .15rem;
}
.tl-title {
  font-family: var(--font-serif);
  font-size: .95rem; font-weight: 700;
  color: var(--navy); margin-bottom: .25rem;
}
.tl-desc { font-size: .85rem; color: var(--gray); line-height: 1.7; }

/* ========================================
   STORY (dark navy)
   ======================================== */
#story {
  background: var(--navy);
  position: relative; overflow: hidden;
}
#story::after {
  content: '';
  position: absolute;
  top: -20%; right: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,120,10,.1) 0%, transparent 65%);
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-label { color: var(--gold-light); }
.story-title { color: var(--white); }

.story-text {
  color: rgba(255,255,255,.78);
  font-size: 1rem; line-height: 1.95;
}
.story-text p + p { margin-top: .9rem; }

.story-pull {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--gold);
  background: rgba(200,120,10,.1);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.story-pull p {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--gold-light);
  line-height: 1.7;
}

.story-cards { display: flex; flex-direction: column; gap: 1.3rem; }
.story-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem 1.6rem;
  transition: var(--trans);
}
.story-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateX(4px);
}
.story-card-title {
  font-family: var(--font-serif);
  font-size: .98rem; font-weight: 700;
  color: var(--white); margin-bottom: .35rem;
}
.story-card-text {
  font-size: .86rem; color: rgba(255,255,255,.62); line-height: 1.7;
}

/* ========================================
   SERVICES
   ======================================== */
#services { background: var(--cream); }

.services-hd { text-align: center; margin-bottom: 3.5rem; }
.services-hd .sec-lead { margin: 0 auto; }

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

.svc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  display: flex; flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.svc-header {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
}
.svc-header.wellness {
  background: linear-gradient(135deg, var(--green-pale) 0%, #C8E8D9 100%);
}
.svc-header.global {
  background: linear-gradient(135deg, var(--navy-pale) 0%, #C8D3EE 100%);
}
.svc-header.social {
  background: linear-gradient(135deg, var(--gold-pale) 0%, #F5DFB0 100%);
}
.svc-header::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
}
.svc-header.wellness::after { background: var(--green); }
.svc-header.global::after   { background: var(--navy); }
.svc-header.social::after   { background: var(--gold); }

.svc-body { padding: 1.7rem; flex: 1; display: flex; flex-direction: column; }

.svc-tag {
  font-size: .66rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: .55rem;
}
.svc-tag.wellness { color: var(--green); }
.svc-tag.global   { color: var(--navy-light); }
.svc-tag.social   { color: var(--gold); }

.svc-title {
  font-family: var(--font-serif);
  font-size: 1.2rem; color: var(--navy);
  margin-bottom: .7rem;
}
.svc-desc {
  font-size: .88rem; color: var(--gray);
  line-height: 1.8; margin-bottom: 1.3rem; flex: 1;
}
.svc-list { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.3rem; }
.svc-list li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .83rem; color: var(--charcoal);
}
.svc-list li::before { content: '▸'; color: var(--gold); font-size: .7rem; margin-top: 3px; flex-shrink: 0; }

.svc-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .83rem; font-weight: 700;
  color: var(--navy); transition: var(--trans);
}
.svc-link:hover { color: var(--gold); gap: .7rem; }

/* ========================================
   SNS
   ======================================== */
#sns { background: var(--navy-pale); }

.sns-hd { text-align: center; margin-bottom: 3rem; }
.sns-hd .sec-lead { margin: 0 auto; }

.sns-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.sns-card {
  border-radius: var(--radius-md);
  padding: 2.2rem;
  text-align: center;
  transition: var(--trans);
}
.sns-card:hover { transform: translateY(-4px); }
.sns-card.x    { background: #0F0F0F; color: var(--white); }
.sns-card.note { background: #41C9B4; color: var(--white); }

.sns-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.8rem;
}
.sns-card-name {
  font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: .3rem;
}
.sns-handle {
  font-size: .78rem; opacity: .6; font-family: monospace;
  letter-spacing: .08em; margin-bottom: .85rem;
}
.sns-desc {
  font-size: .86rem; opacity: .82; line-height: 1.7; margin-bottom: 1.5rem;
}
.sns-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.3rem; border-radius: 60px;
  font-size: .8rem; font-weight: 700;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white); cursor: pointer;
  transition: var(--trans);
}
.sns-btn:hover { background: rgba(255,255,255,.25); }

.sns-note-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}
.sns-note-title {
  font-family: var(--font-serif); font-size: 1.5rem;
  color: var(--navy); margin-bottom: .7rem;
}
.sns-note-text {
  font-size: .95rem; color: var(--gray);
  line-height: 1.85; max-width: 540px;
  margin: 0 auto 1.8rem;
}
.sns-note-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ========================================
   IRIS (Wellness accent — green allowed here)
   ======================================== */
#iris {
  background: linear-gradient(145deg, #1C4D38 0%, #0F3024 100%);
  position: relative; overflow: hidden;
}
#iris::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 60%);
  pointer-events: none;
}

.iris-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.iris-label { color: rgba(255,255,255,.55); }
.iris-title { color: var(--white); }
.iris-lead {
  color: rgba(255,255,255,.78);
  font-size: 1rem; line-height: 1.9; margin-bottom: 1.8rem;
}

.iris-feats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .9rem; margin-bottom: 2rem;
}
.iris-feat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}
.iris-feat-ico { font-size: 1.3rem; margin-bottom: .35rem; }
.iris-feat-title {
  font-size: .82rem; font-weight: 700; color: var(--white); margin-bottom: .18rem;
}
.iris-feat-text { font-size: .76rem; color: rgba(255,255,255,.58); line-height: 1.55; }

.iris-visual { display: flex; flex-direction: column; gap: 1.4rem; }

.iris-badge {
  text-align: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.iris-badge-ico { font-size: 3rem; margin-bottom: .7rem; }
.iris-badge-name {
  font-family: var(--font-serif); font-size: 1.5rem;
  color: var(--white); margin-bottom: .25rem;
}
.iris-badge-sub {
  font-size: .75rem; color: rgba(255,255,255,.5); letter-spacing: .1em;
}

.iris-quote {
  background: rgba(255,255,255,.06);
  border-left: 3px solid rgba(255,255,255,.4);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.4rem 1.5rem;
}
.iris-quote-text {
  font-family: var(--font-serif); font-size: .93rem;
  color: rgba(255,255,255,.88); line-height: 1.75; margin-bottom: .7rem;
}
.iris-quote-by { font-size: .75rem; color: rgba(255,255,255,.45); letter-spacing: .05em; }

.iris-note {
  font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.6;
  padding: 1rem 1.2rem;
  background: rgba(0,0,0,.15);
  border-radius: var(--radius-sm);
}

/* ========================================
   COMPANY
   ======================================== */
#company { background: var(--cream); }

.company-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}

.co-table { width: 100%; border-collapse: collapse; }
.co-table tr { border-bottom: 1px solid var(--cream-dark); }
.co-table td {
  padding: .9rem .4rem; vertical-align: top;
  font-size: .9rem;
}
.co-table td:first-child {
  width: 33%;
  font-size: .78rem; font-weight: 700;
  color: var(--gray); letter-spacing: .06em;
  padding-right: 1.2rem; white-space: nowrap;
}
.co-table td:last-child { color: var(--charcoal); line-height: 1.65; }

.map-box {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  height: 280px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 1px solid var(--gray-light);
  color: var(--gray); gap: .7rem;
}
.map-box-icon { font-size: 2.2rem; opacity: .5; }
.map-box-text { font-size: .82rem; text-align: center; line-height: 1.6; }
.map-wrap { width: 100%; }

/* ========================================
   CONTACT
   ======================================== */
#contact { background: var(--white); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 5rem; align-items: start;
}
.contact-info p {
  font-size: .97rem; color: var(--gray);
  line-height: 1.9; margin-bottom: 1.8rem;
}
.contact-details { display: flex; flex-direction: column; gap: .85rem; }
.contact-detail {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: var(--navy);
}
.contact-detail span:first-child { font-size: 1.1rem; }

.cform { display: flex; flex-direction: column; gap: 1.1rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .35rem; }
.flabel {
  font-size: .8rem; font-weight: 700;
  color: var(--navy); letter-spacing: .04em;
}
.freq { color: var(--gold); font-size: .72rem; margin-left: .2rem; }
.finput, .ftextarea {
  width: 100%; padding: .78rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: .9rem;
  color: var(--charcoal); background: var(--cream);
  transition: border-color var(--trans); outline: none;
}
.finput:focus, .ftextarea:focus {
  border-color: var(--navy); background: var(--white);
}
.ftextarea { resize: vertical; min-height: 130px; line-height: 1.7; }

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; margin-bottom: 2.5rem;
}
.footer-brand .logo-main { color: var(--white); font-size: 1.1rem; }
.footer-brand .logo-sub  { color: var(--gold-light); }
.footer-brand p {
  font-size: .85rem; line-height: 1.8;
  margin: 1rem 0 1.4rem;
}
.fsns { display: flex; gap: .5rem; }
.fsns a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: var(--trans); font-size: .82rem;
}
.fsns a:hover { background: var(--gold); transform: translateY(-2px); }

.fhead {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.1rem;
}
.flinks { display: flex; flex-direction: column; gap: .55rem; }
.flinks a {
  font-size: .86rem; color: rgba(255,255,255,.6);
  transition: color var(--trans);
}
.flinks a:hover { color: var(--white); }

.fdivider {
  border: none; border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.4rem;
}
.fbottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .76rem;
}
.fcopy { color: rgba(255,255,255,.38); }
.flegal { display: flex; gap: 1.4rem; }
.flegal a { color: rgba(255,255,255,.38); transition: color var(--trans); }
.flegal a:hover { color: rgba(255,255,255,.65); }

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fi   { opacity: 0; transform: translateY(28px);  transition: opacity .7s ease, transform .7s ease; }
.fil  { opacity: 0; transform: translateX(-28px); transition: opacity .7s ease, transform .7s ease; }
.fir  { opacity: 0; transform: translateX(28px);  transition: opacity .7s ease, transform .7s ease; }
.fi.v, .fil.v, .fir.v { opacity: 1; transform: none; }
.fi:nth-child(2)  { transition-delay: .1s; }
.fi:nth-child(3)  { transition-delay: .2s; }
.fi:nth-child(4)  { transition-delay: .3s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  nav { display: none; }
  nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(247,244,238,.97);
    backdrop-filter: blur(12px);
    padding: 1.4rem; gap: 1.1rem;
    box-shadow: var(--shadow-md); align-items: flex-start;
  }
  nav.open .nav-icons { padding-top: 1rem; border-top: 1px solid var(--cream-dark); width: 100%; }
  .menu-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; padding: 120px 0 56px; text-align: center; }
  .hero-desc   { margin: 0 auto 2rem; }
  .hero-actions{ justify-content: center; }
  .hero-ceo-card { max-width: 360px; margin: 0 auto; }

  .intro-inner  { grid-template-columns: 1fr; gap: 2rem; }
  .profile-grid { grid-template-columns: 1fr; gap: 2rem; }
  .profile-sticky { position: static; }
  .story-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid{ grid-template-columns: 1fr; }
  .sns-duo      { grid-template-columns: 1fr; }
  .iris-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .company-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .frow         { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .fbottom      { flex-direction: column; gap: .9rem; }
}
