/* =============================================================
   MONONOFU LP — Main Stylesheet
   Color Palette:
     --navy       : #0d1b2a  (base bg)
     --navy-mid   : #142235  (card bg)
     --navy-light : #1c2f45  (hover / border)
     --gold       : #c9a84c  (accent)
     --gold-light : #e3c97b  (accent hover)
     --gold-dim   : rgba(201,168,76,.15)
     --white      : #ffffff
     --gray-100   : #f5f5f5
     --gray-300   : #c5c5c5
     --gray-500   : #888
     --text-body  : #d6dde5
     --text-muted : #8a99aa
============================================================= */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:        #0d1b2a;
  --navy-mid:    #142235;
  --navy-light:  #1c2f45;
  --navy-border: rgba(255,255,255,.07);
  --gold:        #c9a84c;
  --gold-light:  #e3c97b;
  --gold-dim:    rgba(201,168,76,.14);
  --gold-glow:   rgba(201,168,76,.25);
  --white:       #ffffff;
  --text-body:   #cdd6df;
  --text-muted:  #7a8e9e;
  --text-on-dark: #e8eef3;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-card: 0 4px 32px rgba(0,0,0,.35);
  --shadow-hover:0 12px 48px rgba(0,0,0,.5);
  --transition:  all .28s cubic-bezier(.4,0,.2,1);
  --font-sans:   'Noto Sans JP', sans-serif;
  --font-serif:  'Noto Serif JP', serif;
  --section-pad: clamp(64px, 8vw, 120px);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--navy);
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ol, ul {
  list-style: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }

/* ── SELECTION ── */
::selection {
  background: var(--gold-dim);
  color: var(--gold-light);
}

/* ── UTILITY ── */
.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.container--narrow {
  width: min(720px, 90vw);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section-dark {
  background-color: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.section-cta {
  background: linear-gradient(160deg, #0d1b2a 0%, #0f2137 60%, #12263f 100%);
  border-top: 1px solid var(--navy-border);
}

.sp-only { display: none; }

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: -.01em;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8923e 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 8px 32px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-nav {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  font-size: .85rem;
}

.btn-nav:hover,
.btn-nav:focus-visible {
  background: var(--gold-dim);
  color: var(--gold-light);
  transform: none;
  box-shadow: 0 0 16px var(--gold-glow);
}

/* ── NAVIGATION ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 5vw;
  height: 68px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}

#site-header.scrolled {
  background: rgba(13,27,42,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--navy-border);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--white);
}

.logo-sub {
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── HERO SECTION ── */
#hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 5vw 80px;
  overflow: hidden;
}

#hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201,168,76,.07) 0%, transparent 70%),
    linear-gradient(180deg, #0d1b2a 0%, #0a1520 100%);
  z-index: 0;
}

/* Animated grid lines */
#hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.5) 30%, rgba(0,0,0,.5) 70%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp .7s ease .2s forwards;
}

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp .7s ease .35s forwards;
}

.hero-headline span.accent {
  color: var(--gold);
}

.hero-subtext {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--text-body);
  line-height: 1.95;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeInUp .7s ease .5s forwards;
}

.hero-subtext strong {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeInUp .7s ease .65s forwards;
}

.hero-cta-wrap .btn-primary {
  font-size: 1rem;
  padding: 18px 36px;
}

.hero-note {
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  opacity: 0;
  animation: fadeIn .6s ease 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--text-muted);
}

/* ── PAIN SECTION ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .28s ease;
}

.pain-card:hover {
  border-color: rgba(201,168,76,.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.pain-text {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--text-body);
  position: relative;
  z-index: 1;
}

.pain-text strong {
  color: var(--text-on-dark);
  font-weight: 600;
}

/* ── SERVICE SECTION ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.service-card:hover {
  border-color: rgba(201,168,76,.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,168,76,.18);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  transition: color .28s ease;
}

.service-card:hover .service-num {
  color: rgba(201,168,76,.35);
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-desc {
  font-size: .875rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 20px;
  flex: 1;
}

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

.service-tags li {
  font-size: .72rem;
  padding: 4px 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 50px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .03em;
}

/* ── PROFILE SECTION ── */
.profile-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.profile-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.profile-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.avatar-initials {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .05em;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
}

.profile-nameplate {
  text-align: center;
}

.profile-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.profile-name-kana {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: .05em;
  margin-top: 4px;
}

.profile-title {
  font-size: .8rem;
  color: var(--gold);
  margin-top: 6px;
  letter-spacing: .05em;
}

/* Career Timeline */
.career-timeline {
  margin-bottom: 36px;
}

/* Career achievements block */
.career-achievements {
  margin-top: 8px;
  margin-bottom: 36px;
  padding: 20px 20px 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius-md);
}

.achievements-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 12px;
}

.achievements-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.achievements-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: var(--text-body);
  line-height: 1.65;
}

.achievements-list li i {
  color: var(--gold);
  font-size: .7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.achievements-list li strong {
  color: var(--text-on-dark);
  font-weight: 600;
}

.career-list {
  position: relative;
}

.career-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 28px;
  position: relative;
}

.career-item:last-child {
  padding-bottom: 0;
}

/* Vertical line between dots */
.career-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 20px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(201,168,76,.4) 0%, rgba(201,168,76,.15) 100%);
}

.career-dot {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(201,168,76,.4);
  margin-top: 4px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.career-item--current .career-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.career-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.career-text strong {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-on-dark);
}

.career-text span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* Message block */
.profile-message {
  background: var(--navy-mid);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 28px 24px 32px;
  position: relative;
}

.profile-message-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.profile-message-text {
  font-size: .95rem;
  line-height: 2;
  color: var(--text-on-dark);
}

.profile-message-author {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 16px;
  display: block;
}

/* Quote (kept for fallback) */
.profile-quote {
  background: var(--navy-mid);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 28px 24px 32px;
  position: relative;
}

.quote-icon {
  color: var(--gold);
  opacity: .6;
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: block;
}

.profile-quote p {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--text-on-dark);
  font-style: italic;
}

.quote-author {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: normal;
}

/* ── STEP SECTION ── */
.step-list {
  max-width: 680px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-line {
  width: 2px;
  flex: 1;
  min-height: 48px;
  background: linear-gradient(180deg, rgba(201,168,76,.4) 0%, rgba(201,168,76,.1) 100%);
  margin: 6px 0;
}

.step-body {
  padding-top: 12px;
  padding-bottom: 44px;
}

.step-item:last-child .step-body {
  padding-bottom: 0;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.step-badge {
  font-size: .68rem;
  padding: 3px 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
  vertical-align: middle;
}

.step-badge--paid {
  background: rgba(201,168,76,.05);
  border-color: rgba(201,168,76,.2);
  color: var(--text-muted);
}

.step-desc {
  font-size: .875rem;
  color: var(--text-body);
  line-height: 1.85;
}

/* ── FAQ SECTION ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--navy-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--navy-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-on-dark);
  user-select: none;
  transition: color .2s ease;
}

.faq-question:hover,
.faq-question:focus-visible {
  color: var(--gold-light);
  outline: none;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: .8rem;
  transition: transform .3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s ease;
  padding: 0 4px;
}

.faq-answer.is-open {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: .88rem;
  color: var(--text-body);
  line-height: 1.9;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

/* ── CTA / FORM SECTION ── */
.cta-inner {
  text-align: center;
}

.cta-eyebrow {
  margin-bottom: 12px;
}

.cta-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.cta-subtext {
  font-size: .93rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 48px;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-required {
  font-size: .67rem;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  padding: 1px 8px;
  border-radius: 3px;
  font-weight: 600;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--navy-mid);
  border: 1.5px solid var(--navy-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .92rem;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: .7;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.form-input.is-error {
  border-color: #e05c5c;
}

.form-error {
  font-size: .75rem;
  color: #e88;
  min-height: 1em;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 1rem;
  margin-top: 8px;
  border-radius: var(--radius-sm);
}

.form-note {
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -8px;
}

/* Coming Soon Box */
.coming-soon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 32px;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.coming-soon-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}

.coming-soon-icon {
  font-size: 2.8rem;
  color: var(--gold);
  opacity: .8;
  animation: tickTock 2s ease-in-out infinite;
}

.coming-soon-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
}

.coming-soon-date {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .04em;
}

.coming-soon-note {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 4px;
}

@keyframes tickTock {
  0%, 100% { transform: rotate(-8deg); }
  50%       { transform: rotate(8deg); }
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 48px 24px;
  animation: fadeInUp .5s ease forwards;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: bounceIn .5s ease forwards;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.success-text {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.85;
}

/* ── FOOTER ── */
#site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--gold);
  line-height: 1;
}

.footer-sub {
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-copy {
  font-size: .75rem;
  color: var(--text-muted);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(.6); opacity: .5; }
}

@keyframes bounceIn {
  0%   { transform: scale(.5); opacity: 0; }
  60%  { transform: scale(1.15); }
  80%  { transform: scale(.95); }
  100% { transform: scale(1); opacity: 1; }
}

/* Intersection Observer fade */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
  transition-delay: var(--delay, 0s);
}

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

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .profile-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .profile-left {
    position: static;
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
  }

  .profile-avatar {
    width: 100px;
    height: 100px;
  }

  .avatar-initials {
    font-size: 1.6rem;
  }

  .profile-nameplate {
    text-align: left;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 600px) {
  :root {
    --section-pad: 56px;
  }

  .sp-only { display: inline; }

  #site-header {
    height: 60px;
    padding: 0 5vw;
  }

  .logo-main { font-size: 1.05rem; }

  .btn-nav {
    padding: 8px 16px;
    font-size: .78rem;
  }

  #hero-section {
    padding: 120px 5vw 72px;
    min-height: 100svh;
  }

  .hero-headline {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-subtext {
    font-size: .88rem;
  }

  .hero-cta-wrap .btn-primary {
    padding: 16px 24px;
    font-size: .9rem;
    width: 100%;
    justify-content: center;
  }

  .hero-scroll-hint {
    display: none;
  }

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

  .pain-card {
    padding: 24px 20px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .profile-left {
    flex-direction: column;
    align-items: center;
  }

  .profile-nameplate {
    text-align: center;
  }

  .profile-avatar {
    width: 120px;
    height: 120px;
  }

  .step-item {
    gap: 20px;
  }

  .step-num {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .cta-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .container--narrow {
    width: 92vw;
  }
}

/* ── FOCUS VISIBLE ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
