
:root {
  --ink: #4A3324;
  --brown: #5C3F25; --brown-soft: #6B5040; --brown-mut: #927866; --brown-pale: #A08A72;
  --gold: #B89556; --gold-hi: #C9A961;
  --gold-line: rgba(184,149,86,0.45); --gold-hair: rgba(201,169,97,0.28);
  --serif-jp: "Shippori Mincho B1", serif;
  --serif-body: "Noto Serif JP", serif;
  --serif-en: "Cormorant Garamond", serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif-body); color: var(--ink);
  background: linear-gradient(180deg, #FCF7EF 0%, #FAF1E3 55%, #FBF4E8 100%);
  -webkit-font-smoothing: antialiased; letter-spacing: 0.02em; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: rgba(201,169,97,0.25); }

.divider { display: flex; align-items: center; justify-content: center; gap: 14px; max-width: 320px; margin: 26px auto; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-line)); }
.divider::after { background: linear-gradient(90deg, var(--gold-line), transparent); }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(24px, 5vw, 72px);
  transition: background 0.45s ease, box-shadow 0.45s ease, padding 0.45s ease;
}
.site-header.is-scrolled {
  padding-top: 14px; padding-bottom: 14px;
  background: rgba(252,247,239,0.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--gold-hair), 0 12px 40px -24px rgba(107,66,37,0.18);
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-ja { font-family: var(--serif-jp); font-size: 18px; font-weight: 500; letter-spacing: 0.35em; color: #6B4E32; }
.brand-en { font-family: var(--serif-en); font-style: italic; font-size: 10px; letter-spacing: 0.3em; color: var(--gold); margin-top: 6px; }
.site-nav { display: flex; align-items: center; gap: 30px; font-family: var(--serif-jp); font-size: 13px; letter-spacing: 0.2em; color: var(--brown-soft); }
.site-nav a { position: relative; transition: color 0.3s; padding: 4px 0; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--gold); transition: right 0.4s var(--ease-out); }
.site-nav a:not(.nav-cta):hover { color: #A88345; }
.site-nav a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  padding: 11px 24px; border: 1px solid var(--gold); color: #8A6932;
  background: rgba(255,255,255,0.4); border-radius: 999px; letter-spacing: 0.15em;
  transition: background 0.35s, color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.nav-cta:hover { background: var(--gold); color: #FFF; transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(184,149,86,0.5); }

/* ---------- ambient blooms ---------- */
.page-blooms {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 500px 380px at 5% 12%, rgba(244,200,188,0.34) 0%, transparent 60%),
    radial-gradient(ellipse 460px 360px at 95% 14%, rgba(232,175,162,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 520px 380px at 8% 90%, rgba(232,175,162,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 480px 380px at 92% 92%, rgba(244,210,200,0.34) 0%, transparent 60%);
  animation: drift 22s ease-in-out infinite;
}
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(9px,-7px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ---------- page title ---------- */
.page-title { position: relative; z-index: 1; padding: 165px 24px 44px; text-align: center; }
.pt-kicker { font-family: var(--serif-en); font-style: italic; font-size: 13px; letter-spacing: 0.42em; color: var(--gold); margin-bottom: 18px; opacity: 0; animation: fadeUp 1.1s var(--ease-out) 0.1s forwards; }
.pt-title { font-family: var(--serif-jp); font-weight: 500; font-size: clamp(27px, 4vw, 40px); letter-spacing: 0.2em; color: var(--brown); line-height: 1.5; opacity: 0; animation: fadeUp 1.3s var(--ease-out) 0.3s forwards; }
.pt-divider { opacity: 0; animation: fadeUp 1.1s var(--ease-out) 0.5s forwards; }

/* ---------- layout ---------- */
.wrap { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 24px) clamp(80px, 10vw, 110px); }

.profile-card {
  padding: clamp(40px, 6vw, 64px) clamp(24px, 6vw, 60px);
  background: rgba(255,251,244,0.88);
  border: 1px solid rgba(201,169,97,0.3);
  border-radius: 8px;
  box-shadow: 0 28px 64px -30px rgba(184,149,86,0.22);
}

/* ---------- profile photo ---------- */
.profile-photo {
  width: clamp(140px, 26vw, 196px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #F8E0D2 0%, #E9C2B0 100%);
  box-shadow: 0 16px 38px -14px rgba(184,149,86,0.42);
  border: 1px solid rgba(201,169,97,0.35);
  margin: 0 auto clamp(40px, 6vw, 56px);
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- body copy ---------- */
.profile-body p {
  font-size: clamp(14px, 1.5vw, 15.5px);
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 2.2;
  margin-bottom: 30px;
}
.profile-body p:last-child { margin-bottom: 0; }

/* short standalone lines, composed as a vertical rhythm list */
.profile-lines {
  margin: 42px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.profile-line {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(15px, 1.8vw, 17.5px);
  letter-spacing: 0.18em;
  color: var(--brown);
  line-height: 1.8;
  text-align: center;
}

.profile-body .divider { margin: 48px auto; }

/* ---------- CTA ---------- */
.profile-cta {
  margin-top: clamp(56px, 8vw, 84px);
  padding-top: clamp(44px, 6vw, 60px);
  border-top: 1px solid rgba(201,169,97,0.28);
  text-align: center;
}
.profile-cta-lede {
  font-family: var(--serif-jp);
  font-size: clamp(14px, 1.6vw, 16px);
  letter-spacing: 0.1em;
  color: var(--brown);
  line-height: 2;
  margin-bottom: 32px;
}
.profile-cta-actions {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 18px 22px;
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 46px;
  background: linear-gradient(135deg, var(--gold-hi) 0%, var(--gold) 100%);
  color: #FFF;
  font-family: var(--serif-jp);
  font-size: 15px; letter-spacing: 0.28em;
  white-space: nowrap;
  border-radius: 999px; border: 0; cursor: pointer;
  box-shadow: 0 14px 34px -12px rgba(184,149,86,0.55);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease-out);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(184,149,86,0.65); }
.btn-gold:hover::before { left: 120%; }
.btn-gold .arrow { font-family: serif; font-size: 18px; transition: transform 0.35s; }
.btn-gold:hover .arrow { transform: translateX(4px); }

.btn-line {
  display: inline-flex; align-items: center; gap: 12px;
  padding: clamp(14px, 2vw, 18px) clamp(28px, 5vw, 44px);
  background: #06C755; color: #FFF;
  font-family: var(--serif-jp);
  font-size: clamp(13px, 1.5vw, 15px); letter-spacing: 0.22em;
  white-space: nowrap;
  border-radius: 999px;
  box-shadow: 0 14px 30px -10px rgba(6,199,85,0.55);
  transition: background 0.35s, transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn-line::before {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease-out);
}
.btn-line:hover { background: #05B04B; transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(6,199,85,0.7); }
.btn-line:hover::before { left: 120%; }
.arrow-serif-lg { font-family: serif; font-size: 18px; }

/* ---------- footer ---------- */
.site-footer { position: relative; z-index: 1; padding: 60px 24px 40px; border-top: 1px solid rgba(201,169,97,0.28); background: linear-gradient(180deg, transparent 0%, rgba(248,232,215,0.45) 100%); text-align: center; }
.footer-brand-ja { font-family: var(--serif-jp); font-weight: 500; font-size: 18px; letter-spacing: 0.35em; color: var(--brown); margin-bottom: 8px; }
.footer-brand-en { font-family: var(--serif-en); font-style: italic; font-size: 11px; letter-spacing: 0.35em; color: var(--gold); margin-bottom: 24px; }
.footer-copy { font-size: 11px; letter-spacing: 0.15em; color: var(--brown-pale); }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; } }
@media (max-width: 760px) {
  .site-header { padding: 14px 16px; flex-wrap: wrap; gap: 12px 18px; }
  .site-nav { gap: 16px; font-size: 11px; letter-spacing: 0.13em; flex-wrap: wrap; }
  .nav-cta { padding: 9px 18px; white-space: nowrap; }
  .page-title { padding-top: 150px; }
  .profile-cta-actions { flex-direction: column; }
  .btn-gold { padding: 16px 26px; font-size: 13.5px; letter-spacing: 0.16em; gap: 10px; }
  .btn-line { padding: 15px 24px; font-size: 12.5px; letter-spacing: 0.14em; gap: 8px; }
  h1, h2, h3, h4 { text-wrap: balance; line-break: strict; }
  p { line-break: strict; }
}
