/* ============================================================
   Secret Garden — 鑑定士詳細ページ共通スタイル
   index.html のパレットとレイアウトトークンを統一
   ============================================================ */
:root {
  --bg:#050505; --bg-2:#0B070F; --bg-3:#110A18; --card:#0D0913;
  --purple:#2a103d; --purple-2:#3D1858;
  --gold:#d4af37; --gold-2:#f3dc8a; --gold-dim:#8b7322;
  --white:#f8f4e8; --mute:#a09a8a;
  --green:#4ACF8C; --amber:#E2A547; --error:#E25757;
  --line:rgba(212,175,55,0.22); --line-soft:rgba(212,175,55,0.10);
  --shadow:0 14px 40px rgba(0,0,0,0.55);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg); color: var(--white);
  line-height: 1.85; font-size: 16px;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Noto Serif JP", serif; font-weight: 500; letter-spacing: 0.04em; line-height: 1.4; }
.en { font-family: "Cinzel", serif; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; }
a { color: var(--gold-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--white); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
nav.site-nav .inner {
  max-width: 1100px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; display: block; }
.nav-back {
  font-size: 11px; letter-spacing: 0.2em; color: var(--white);
  border: 1px solid var(--gold); padding: 9px 18px; font-weight: 500;
}
.nav-back:hover { background: var(--gold); color: var(--bg); }

/* ─── HERO ─── */
.t-hero {
  position: relative;
  padding: 140px 0 70px;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(61, 24, 88, 0.4), transparent 55%),
    radial-gradient(ellipse at 25% 80%, rgba(42, 16, 61, 0.35), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.t-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(243, 220, 138, 0.55), transparent 60%),
    radial-gradient(1.5px 1.5px at 70% 60%, rgba(243, 220, 138, 0.45), transparent 60%),
    radial-gradient(1px 1px at 40% 80%, rgba(248, 244, 232, 0.4), transparent 60%),
    radial-gradient(1.5px 1.5px at 85% 25%, rgba(248, 244, 232, 0.35), transparent 60%);
  opacity: .5; pointer-events: none;
}
.t-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 50px; align-items: center;
}
.t-photo {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.22), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(61, 24, 88, 0.4), transparent 70%),
    linear-gradient(160deg, var(--bg-3), var(--bg));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 60px rgba(61, 24, 88, 0.3);
}
.t-photo .initial {
  font-family: "Cormorant Garamond", serif;
  font-size: 180px; font-weight: 500;
  color: var(--gold);
  font-style: italic;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}
.t-photo .special-badge {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--bg);
  font-family: "Cinzel", serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em;
  padding: 5px 14px;
}
.t-info .master {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 12px; letter-spacing: 0.4em; color: var(--gold);
  padding: 5px 14px; border: 1px solid var(--gold);
  margin-bottom: 22px;
}
.t-info h1 {
  font-size: clamp(38px, 6vw, 56px);
  color: var(--white); margin-bottom: 18px;
}
.t-meta {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 24px;
}

.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: 0.1em;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.status-pill.on { color: var(--green); border-color: rgba(74, 207, 140, 0.4); }
.status-pill.on .dot { background: var(--green); box-shadow: 0 0 8px rgba(74, 207, 140, 0.6); }
.status-pill.off { color: var(--mute); }
.status-pill.off .dot { background: var(--mute); }
.status-pill.away { color: var(--amber); border-color: rgba(226, 165, 71, 0.4); }
.status-pill.away .dot { background: var(--amber); box-shadow: 0 0 8px rgba(226, 165, 71, 0.6); }

.years {
  font-family: "Cinzel", serif;
  font-size: 12px; letter-spacing: 0.2em; color: var(--gold-2);
}
.years .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px; font-weight: 600;
  color: var(--gold-2); margin-right: 6px; vertical-align: middle;
}
.t-base-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px; font-weight: 500;
  color: var(--gold-2);
}
.t-base-price .unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px; color: var(--mute);
  margin-left: 6px; letter-spacing: 0.1em; font-weight: 400;
}

.special-note {
  margin-top: 20px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
  border: 1px solid var(--gold);
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* ─── PROFILE ─── */
.profile {
  padding: 90px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.profile-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  max-width: 880px; margin: 0 auto;
}
.profile-block {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 36px;
  position: relative;
}
.profile-block .label {
  font-family: "Cinzel", serif;
  font-size: 11px; letter-spacing: 0.3em; color: var(--gold);
  margin-bottom: 8px;
}
.profile-block h3 {
  font-size: 20px; color: var(--gold-2);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.profile-block .chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.profile-block .chip {
  font-size: 13px;
  border: 1px solid var(--line);
  color: var(--white);
  padding: 6px 14px;
  background: rgba(42, 16, 61, 0.3);
  letter-spacing: 0.05em;
}
.profile-block .intro-text {
  font-family: "Noto Serif JP", serif;
  font-size: 15.5px; line-height: 2.05;
  color: var(--white); letter-spacing: 0.02em;
  position: relative; padding: 6px 16px;
}
.profile-block .intro-text::before,
.profile-block .intro-text::after {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold); opacity: 0.5;
  font-size: 48px; line-height: 1; position: absolute;
}
.profile-block .intro-text::before { content: "\201C"; left: -12px; top: -20px; }
.profile-block .intro-text::after  { content: "\201D"; right: -8px;  bottom: -28px; }

.profile-block .agency-note {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--white);
  letter-spacing: 0.02em;
  background:
    radial-gradient(circle at 0% 0%, rgba(61, 24, 88, 0.25), transparent 50%),
    transparent;
  padding: 0;
}

.profile-block.visions .vision-text {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--white);
}

/* ─── CALENDAR (予約可能日時) ─── */
.calendar {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(61, 24, 88, 0.15), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.shift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
a.shift-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 22px 22px;
  text-decoration: none;
  color: inherit;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
a.shift-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.10), transparent 60%);
  opacity: 0; transition: opacity .25s ease;
}
a.shift-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.12);
  color: inherit;
}
a.shift-card:hover::before { opacity: 1; }
.shift-card .date {
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  color: var(--gold-2);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  position: relative;
}
.shift-card .date .dow {
  font-size: 12px; color: var(--mute);
  margin-left: 4px; font-family: "Noto Sans JP", sans-serif;
}
.shift-card .time {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
  position: relative;
}
.shift-card .arrow {
  position: absolute; right: 14px; bottom: 16px;
  color: var(--gold); font-size: 12px;
  opacity: 0; transition: opacity .2s, transform .2s;
}
a.shift-card:hover .arrow { opacity: 1; transform: translateX(2px); }

.shift-loading, .no-shifts {
  text-align: center;
  color: var(--mute);
  padding: 40px 0;
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}

@media (max-width: 540px) {
  .calendar { padding: 50px 0; }
  .shift-grid { grid-template-columns: 1fr; gap: 10px; }
  .shift-card { padding: 18px 18px; }
  .shift-card .date { font-size: 15px; }
  .shift-card .time { font-size: 18px; }
}

/* ─── PRICING ─── */
.pricing {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(42, 16, 61, 0.3), transparent 60%),
    var(--bg);
}
.section-head { text-align: center; margin-bottom: 50px; }
.section-head .en { display: block; font-size: 12px; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 16px; color: var(--white); }
.section-head .sub { color: var(--mute); font-size: 14px; }
.divider {
  width: 60px; height: 1px; margin: 22px auto 18px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}
.divider::before {
  content: "\2756"; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); background: var(--bg);
  color: var(--gold); font-size: 10px; padding: 0 8px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  max-width: 900px; margin: 0 auto;
}
.price-btn {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 28px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  position: relative;
  text-decoration: none; color: inherit;
  transition: all .25s ease; overflow: hidden;
}
.price-btn::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.12), transparent 60%);
  opacity: 0; transition: opacity .25s;
}
.price-btn:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45), 0 0 30px rgba(212, 175, 55, 0.12);
  color: inherit;
}
.price-btn:hover::before { opacity: 1; }
.price-btn .time {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px; font-weight: 600;
  color: var(--gold-2);
  line-height: 1; margin-bottom: 8px;
  position: relative; letter-spacing: -0.02em;
}
.price-btn .time .min {
  font-size: 12px; margin-left: 4px;
  color: var(--mute);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400; letter-spacing: 0.1em;
}
.price-btn .price {
  font-size: 15px; color: var(--white);
  letter-spacing: 0.03em; position: relative; font-weight: 500;
}
.price-btn .price .yen { font-family: "Cormorant Garamond", serif; margin-right: 1px; }
.price-btn .arrow {
  position: absolute; bottom: 8px; right: 10px;
  color: var(--gold); font-size: 12px;
  opacity: 0; transition: opacity .2s, transform .2s;
}
.price-btn:hover .arrow { opacity: 1; transform: translateX(2px); }

.pricing-note {
  text-align: center; margin-top: 30px;
  font-size: 12px; color: var(--mute); line-height: 1.9;
}
.cancel-warn {
  margin: 30px auto 0;
  max-width: 720px;
  padding: 16px 20px;
  background: rgba(226, 87, 87, 0.06);
  border-left: 3px solid var(--error);
  color: #F5C9C9;
  font-size: 13px; line-height: 1.85;
}
.cancel-warn strong { color: var(--error); }

.closed-notice {
  max-width: 720px; margin: 0 auto;
  padding: 36px 32px;
  background:
    radial-gradient(circle at 0% 0%, rgba(61, 24, 88, 0.3), transparent 55%),
    var(--card);
  border: 1px solid var(--line);
  text-align: center;
}
.closed-notice .icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border: 1px solid var(--amber); border-radius: 50%;
  color: var(--amber);
  font-family: "Cinzel", serif; font-size: 26px;
  margin-bottom: 18px;
}
.closed-notice h3 {
  font-size: 22px; color: var(--gold-2); margin-bottom: 12px;
}
.closed-notice p {
  color: var(--mute); font-size: 14px; line-height: 1.95;
}

/* ─── FOOTER ─── */
footer.site-footer {
  background: var(--bg); padding: 70px 0 28px;
  font-size: 13px; color: var(--mute);
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  margin-bottom: 36px; padding-bottom: 32px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand .brand img { height: 50px; }
.footer-brand p { margin-top: 14px; font-size: 13px; line-height: 1.9; }
.footer-col h5 {
  color: var(--gold); font-size: 11px; letter-spacing: 0.3em;
  margin-bottom: 18px; font-family: "Cinzel", serif; text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--mute); }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 10px; color: #555;
  letter-spacing: 0.05em;
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: #666; font-size: 10px; }
.footer-legal a:hover { color: var(--gold-dim); }

/* ─── Responsive ─── */
@media (max-width: 880px) {
  .t-hero { padding: 110px 0 50px; }
  .t-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .t-photo { max-width: 260px; margin: 0 auto; aspect-ratio: 1 / 1; }
  .t-photo .initial { font-size: 130px; }
  .t-info { text-align: center; }
  .t-meta { justify-content: center; }
  .profile { padding: 60px 0; }
  .profile-block { padding: 28px 24px; }
  .pricing { padding: 60px 0; }
  .price-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .price-btn { padding: 22px 8px; }
  .price-btn .time { font-size: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
  .price-btn .time { font-size: 26px; }
  .price-btn .price { font-size: 13px; }
  .profile-block .intro-text { font-size: 14.5px; }
}
