/* =========================================================
   V.I.P  —  高級デリバリーヘルス  共通デザインシステム
   黒 × ゴールド / 明朝ベースの上質な世界観
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Noto+Sans+JP:wght@300;400;500;700&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

:root {
  /* color — warm brown × gold (BLENDA V.I.P) */
  --bg:        #130f0a;
  --bg-2:      #181208;
  --surface:   #1d1710;
  --surface-2: #241c12;
  --surface-3: #2c2317;
  --line:      rgba(201, 169, 97, .20);
  --line-soft: rgba(201, 169, 97, .11);
  --gold:      #c9a961;
  --gold-2:    #e8d49a;
  --gold-deep: #9a7b3e;
  --gold-soft: rgba(201, 169, 97, .08);
  --text:      #ece4d2;
  --text-dim:  #b6ab93;
  --text-mute: #786c54;
  --rose:      #c77d86;

  /* type */
  --serif:  "Shippori Mincho", serif;
  --sans:   "Noto Sans JP", sans-serif;
  --latin:  "Cormorant Garamond", serif;
  --logo:   "Cinzel", serif;

  /* layout */
  --maxw: 1200px;
  --gut: 24px;
  --header-h: 92px;
  --top-h: 130px;

  --shadow: 0 18px 50px -20px rgba(0,0,0,.8);
  --shadow-gold: 0 0 0 1px var(--line), 0 24px 60px -28px rgba(201,169,97,.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: #16110a; }

/* ------- shared atoms ------- */

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 880px; margin-inline: auto; padding-inline: var(--gut); }

.gold { color: var(--gold); }
.serif { font-family: var(--serif); }
.latin { font-family: var(--latin); }

/* divider with diamond */
.rule {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--gold); margin: 0 auto;
}
.rule::before, .rule::after {
  content: ""; height: 1px; width: 56px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.rule .dia { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }

/* section eyebrow + title */
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head .eyebrow {
  font-family: var(--latin); font-style: italic; font-size: 20px;
  color: var(--gold); letter-spacing: .12em; margin-bottom: 8px;
}
.sec-head h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(26px, 3.4vw, 40px); letter-spacing: .14em;
  color: var(--text);
}
.sec-head .sub { color: var(--text-mute); font-size: 13px; letter-spacing: .2em; margin-top: 12px; }

section.block { padding: clamp(64px, 9vw, 120px) 0; position: relative; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--serif); font-weight: 500; letter-spacing: .14em;
  padding: 16px 38px; border: 1px solid var(--gold);
  color: var(--gold); background: transparent;
  transition: all .35s cubic-bezier(.2,.7,.2,1); position: relative; overflow: hidden;
  font-size: 15px;
}
.btn::before {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  transform: translateY(101%); transition: transform .4s cubic-bezier(.2,.7,.2,1); z-index: -1;
}
.btn:hover { color: #16110a; }
.btn:hover::before { transform: translateY(0); }
.btn.solid { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #16110a; border-color: var(--gold-2); }
.btn.solid:hover { box-shadow: var(--shadow-gold); }
.btn.solid::before { display: none; }
.btn.sm { padding: 11px 24px; font-size: 13px; }

/* image placeholder */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(201,169,97,.05) 0 10px, rgba(201,169,97,.018) 10px 20px),
    linear-gradient(160deg, var(--surface-2), var(--surface));
  display: flex; align-items: center; justify-content: center;
}
/*
.ph::after {
  content: attr(data-label);
  font-family: "SFMono-Regular", ui-monospace, Menlo, monospace;
  font-size: 11px; letter-spacing: .14em; color: var(--text-mute);
  text-transform: uppercase; padding: 4px 8px; text-align: center;
}
*/

/* badges */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; letter-spacing: .1em; font-weight: 500;
  padding: 4px 10px; border: 1px solid var(--line);
  color: var(--gold); background: var(--gold-soft); font-family: var(--sans);
}
.badge.new   { color: var(--rose); border-color: rgba(199,125,134,.4); background: rgba(199,125,134,.1); }
.badge.solid { background: var(--gold); color: #16110a; border: none; }

/* tags */
.tag { font-size: 11px; color: var(--text-dim); border: 1px solid var(--line-soft);
  padding: 3px 9px; letter-spacing: .06em; background: rgba(255,255,255,.015); }

/* page hero (lower pages) */
.page-hero {
  padding: calc(var(--top-h) + 50px) 0 48px; text-align: center; position: relative;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(700px 280px at 50% 0, rgba(201,169,97,.1), transparent 70%),
    var(--bg-2);
}
.page-hero .latin-bg {
  font-family: var(--latin); font-style: italic;
  font-size: clamp(48px, 10vw, 120px); color: rgba(201,169,97,.06);
  position: absolute; top: 38%; left: 50%; transform: translate(-50%,-50%);
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.page-hero .eyebrow { font-family: var(--latin); font-style: italic; font-size: 19px; color: var(--gold); letter-spacing: .12em; position: relative; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 600; position: relative;
  font-size: clamp(28px, 4.4vw, 50px); letter-spacing: .16em; margin-top: 6px;
}
.breadcrumb { font-size: 12px; color: var(--text-mute); letter-spacing: .08em; margin-top: 22px; position: relative; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; color: var(--line); }

/* =========================================================
   HEADER (injected by site.js)
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header .header-bar { height: var(--header-h); display: flex; align-items: center; transition: height .4s, background .4s; }
.site-header.scrolled { background: rgba(15,11,7,.92); backdrop-filter: blur(14px); border-bottom-color: var(--line-soft); }
.site-header.scrolled .header-bar { height: 66px; }
.site-header.scrolled .marquee { height: 0; opacity: 0; border: none; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand .mark {
  width: 42px; height: 42px; border: 1px solid var(--gold); display: grid; place-items: center;
  transform: rotate(45deg); flex: none;
}
.brand .mark span { transform: rotate(-45deg); font-family: var(--logo); color: var(--gold); font-size: 15px; letter-spacing: .04em; }
.brand .name { display: flex; flex-direction: column; line-height: 1.1; }
.brand .name b { font-family: var(--logo); font-weight: 600; font-size: 22px; letter-spacing: .28em; color: var(--text); }
.brand .name small { font-size: 9.5px; letter-spacing: .34em; color: var(--gold); margin-top: 3px; }

.nav-main { display: flex; align-items: flex-end; gap: 22px; }
.nav-main a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: var(--text-dim); position: relative; padding: 4px 0; transition: color .3s;
}
.nav-main a .en { font-family: var(--latin); font-style: italic; font-size: 15px; letter-spacing: .1em; }
.nav-main a i { font-family: var(--serif); font-size: 10px; letter-spacing: .14em; color: var(--text-mute); font-style: normal; transition: color .3s; }
.nav-main a::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 0; background: var(--gold); transition: width .3s; }
.nav-main a:hover, .nav-main a.active { color: var(--gold-2); }
.nav-main a:hover i, .nav-main a.active i { color: var(--gold); }
.nav-main a:hover::after, .nav-main a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.tel-mini { text-align: right; line-height: 1.15; }
.tel-mini small { font-size: 8.5px; letter-spacing: .24em; color: var(--gold); display: block; }
.tel-mini b { font-family: var(--latin); font-size: 24px; color: var(--text); letter-spacing: .03em; white-space: nowrap; display: block; }
.tel-mini em { font-size: 10px; letter-spacing: .1em; color: var(--text-mute); font-style: normal; }

.burger { display: none; width: 40px; height: 40px; border: 1px solid var(--line); background: transparent; position: relative; }
.burger i { position: absolute; left: 9px; right: 9px; height: 1px; background: var(--gold); transition: .3s; }
.burger i:nth-child(1) { top: 14px; } .burger i:nth-child(2) { top: 20px; } .burger i:nth-child(3) { top: 26px; }
.burger.open i:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.open i:nth-child(2) { opacity: 0; }
.burger.open i:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99; background: rgba(8,6,4,.97); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; padding: calc(var(--header-h) + 16px) var(--gut) 40px;
  transform: translateX(100%); transition: transform .45s cubic-bezier(.2,.7,.2,1); overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer a {
  font-family: var(--serif); font-size: 19px; letter-spacing: .14em; color: var(--text-dim);
  padding: 16px 4px; border-bottom: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center;
}
.drawer a .en { font-family: var(--latin); font-style: italic; font-size: 13px; color: var(--gold); }
.drawer .dl-cta { margin-top: 28px; display: grid; gap: 12px; }

/* =========================================================
   FOOTER (injected by site.js)
   ========================================================= */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line-soft); padding: 70px 0 0; margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--line-soft); }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { color: var(--text-mute); font-size: 13px; line-height: 2; max-width: 32ch; }
.footer-col h4 { font-family: var(--serif); font-size: 14px; letter-spacing: .14em; color: var(--gold); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 13px; padding: 7px 0; transition: color .3s, padding .3s; }
.footer-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom small { color: var(--text-mute); font-size: 11px; letter-spacing: .08em; }
.footer-tel { text-align: center; padding: 36px 0; border-bottom: 1px solid var(--line-soft); }
.footer-tel small { font-size: 11px; letter-spacing: .26em; color: var(--gold); }
.footer-tel b { font-family: var(--latin); font-size: 42px; color: var(--text); display: block; letter-spacing: .04em; line-height: 1.2; }
.footer-tel .hours { color: var(--text-mute); font-size: 12px; letter-spacing: .1em; }

/* =========================================================
   AGE GATE (injected by site.js)
   ========================================================= */
.age-gate {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  background: radial-gradient(800px 500px at 50% 30%, rgba(201,169,97,.1), transparent 60%), #06050300;
  background-color: #050403; padding: 24px;
}
.age-gate.hide { opacity: 0; visibility: hidden; transition: opacity .6s, visibility .6s; }
.age-box { max-width: 540px; text-align: center; }
.age-box .brand { justify-content: center; margin-bottom: 28px; }
.age-box h2 { font-family: var(--serif); font-size: clamp(22px,3vw,30px); letter-spacing: .16em; margin-bottom: 8px; }
.age-box .latin { font-family: var(--latin); font-style: italic; color: var(--gold); font-size: 20px; margin-bottom: 26px; }
.age-box .brand-line { font-family: var(--logo); letter-spacing: .28em; font-size: 18px; color: var(--text); margin: 6px 0 18px; }
.age-box .brand-line .vip { color: var(--gold-2); }
.age-box p { color: var(--text-dim); font-size: 13.5px; line-height: 2; margin-bottom: 34px; }
.age-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.age-actions .btn { min-width: 180px; }
.age-deny { color: var(--text-mute); font-size: 12px; border-bottom: 1px solid var(--line); padding: 16px 28px; transition: color .3s; }
.age-deny:hover { color: var(--rose); }

/* =========================================================
   COMPONENTS — girl cards / grids
   ========================================================= */
.girl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.girl-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.girl-card { background: var(--surface); border: 1px solid var(--line-soft); transition: transform .4s, border-color .4s, box-shadow .4s; position: relative; }
.girl-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.girl-card .photo { aspect-ratio: 3/4; position: relative; overflow: hidden; }
.girl-card .photo .ph { position: absolute; inset: 0; }
.girl-card .photo .badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.girl-card .photo .heart { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border: 1px solid var(--line); background: rgba(8,6,4,.5); display: grid; place-items: center; color: var(--gold); z-index: 2; backdrop-filter: blur(4px); transition: .3s; }
.girl-card .photo .heart:hover { background: var(--gold); color: #16110a; }
.girl-card .photo .status { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 12px; font-size: 11px; letter-spacing: .08em; background: linear-gradient(transparent, rgba(6,5,3,.92)); color: var(--gold-2); display: flex; align-items: center; gap: 6px; }
.girl-card .photo .status .dot { width: 6px; height: 6px; border-radius: 50%; background: #6fcf7a; box-shadow: 0 0 8px #6fcf7a; }
.girl-card .info { padding: 16px; }
.girl-card .info .nm { font-family: var(--serif); font-size: 18px; letter-spacing: .08em; display: flex; align-items: baseline; gap: 8px; }
.girl-card .info .nm small { font-size: 12px; color: var(--text-mute); font-family: var(--sans); }
.girl-card .info .spec { font-family: var(--latin); color: var(--gold); font-size: 16px; letter-spacing: .06em; margin-top: 2px; }
.girl-card .info .cmt { color: var(--text-mute); font-size: 12px; margin-top: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.7; }

/* card list (news/diary) */
.list-row { display: flex; gap: 20px; padding: 22px 4px; border-bottom: 1px solid var(--line-soft); transition: background .3s; }
.list-row:hover { background: rgba(201,169,97,.025); }
.list-row .date { font-family: var(--latin); color: var(--gold); font-size: 15px; letter-spacing: .06em; flex: none; width: 92px; }
.list-row .date small { display: block; font-family: var(--sans); color: var(--text-mute); font-size: 10px; letter-spacing: .12em; }
.list-row .body h3 { font-family: var(--serif); font-size: 16px; font-weight: 500; letter-spacing: .04em; margin-bottom: 4px; }
.list-row .body p { color: var(--text-mute); font-size: 13px; }

/* panel / card surfaces */
.panel { background: var(--surface); border: 1px solid var(--line-soft); padding: 32px; }
.panel-gold { border-color: var(--line); box-shadow: var(--shadow-gold); }

/* table */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 18px 20px; border-bottom: 1px solid var(--line-soft); text-align: left; }
.price-table th { font-family: var(--serif); color: var(--gold); font-weight: 500; letter-spacing: .1em; font-size: 14px; width: 38%; }
.price-table td { color: var(--text); font-size: 15px; }
.price-table .big { font-family: var(--latin); font-size: 22px; color: var(--gold-2); }
.price-table tr:hover td, .price-table tr:hover th { background: rgba(201,169,97,.02); }

/* utilities */
.center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 56px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .girl-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; --top-h: 64px; --gut: 18px; }
  .nav-main, .header-cta .tel-mini { display: none; }
  .burger { display: block; }
  .brand .name b { font-size: 18px; letter-spacing: .22em; }
  .brand .mark { width: 36px; height: 36px; }
  .girl-grid, .girl-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-tel b { font-size: 34px; }
  .girl-card .info { padding: 12px; }
  .girl-card .info .nm { font-size: 16px; }
  .panel { padding: 22px; }
  .price-table th, .price-table td { padding: 13px 12px; font-size: 13px; }
  .price-table .big { font-size: 18px; }
  .list-row { gap: 14px; }
  .list-row .date { width: 72px; font-size: 13px; }
  /* SP fixed bottom nav appears */
  body { padding-bottom: 62px; }
}

/* SP bottom fixed action bar (injected) */
.sp-bar { display: none; }
@media (max-width: 768px) {
  .sp-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
    background: rgba(10,8,5,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  }
  .sp-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 9px 0; color: var(--text-dim); font-size: 10px; letter-spacing: .06em; border-right: 1px solid var(--line-soft); }
  .sp-bar a:last-child { border-right: none; }
  .sp-bar a.call { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #16110a; }
  .sp-bar a svg { width: 19px; height: 19px; }
}
