:root{
  --bg: #f5f1e8;
  --bg-elevated: #ffffff;
  --card: #ffffff;
  --border: rgba(30,25,15,0.09);
  --text: #2b2620;
  --text-muted: #766c5c;
  --text-dim: #9b917e;
  --gold: #b8902e;
  --gold-light: #a67c1f;
  --gold-dim: #d8c48f;
}
*{box-sizing:border-box; margin:0; padding:0;}
body{
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,.serif{ font-family:'Playfair Display', serif; letter-spacing:.02em; }
a{ color:inherit; text-decoration:none; }
img{ display:block; width:100%; height:100%; object-fit:cover; }
/* 縦長の写真枠（顔が切れないよう上寄りにクロップ） */
.hero-photo img, .gallery-grid > div img, .l-card .thumb img{ object-position: center 20%; }

/* ===== 背景オーブ ===== */
.orb{
  position: fixed; border-radius:50%; filter: blur(90px);
  opacity: 0.28; pointer-events:none; z-index:0;
  animation: orb-drift 20s ease-in-out infinite alternate;
}
.orb-1{ width:460px; height:460px; background:#e8c46a; top:-140px; right:-100px; animation-delay:0s; }
.orb-2{ width:340px; height:340px; background:#d8c48f; bottom:8%; left:-120px; animation-delay:-7s; }
.orb-3{ width:220px; height:220px; background:#c9a227; top:45%; right:8%; animation-delay:-13s; }
@keyframes orb-drift{
  0%{ transform: translate(0,0) scale(1); }
  100%{ transform: translate(30px,40px) scale(1.12); }
}
header, main, footer{ position:relative; z-index:2; }

.ph{
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  color: rgba(30,25,15,0.28);
  font-size: 12px; letter-spacing:.15em;
  background: linear-gradient(135deg, #ebe5d6, #dcd4bf 70%);
  border: 1px solid var(--border);
}

/* ===== Header (共通) ===== */
header{
  position: sticky; top:0; z-index:50;
  background: rgba(245,241,232,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  max-width: 1180px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 28px;
}
.logo-wrap{ display:flex; flex-direction:column; gap:3px; cursor:pointer; user-select:none; }
.logo-row{ display:flex; align-items:baseline; gap:2px; line-height:1; }
.logo-of{ font-size:24px; font-weight:800; letter-spacing:-.3px; color: var(--text); font-family:'Playfair Display', serif; }
.logo-girls{
  font-size:24px; font-weight:800; letter-spacing:-.3px; font-family:'Playfair Display', serif;
  background: linear-gradient(90deg, #b8902e 0%, #e8c46a 40%, #b8902e 80%, #d8c48f 100%);
  background-size:200% auto;
  -webkit-background-clip:text; background-clip:text; color:transparent;
  animation: logo-shimmer 3.5s ease-in-out infinite;
}
@keyframes logo-shimmer{
  0%,100%{ background-position:0% center; }
  50%{ background-position:100% center; }
}
.logo-dot{ width:4px; height:4px; border-radius:50%; background: var(--gold); margin-left:3px; margin-bottom:4px; flex-shrink:0; }
.logo-region{
  font-family:'Noto Sans JP', sans-serif;
  font-size:10px; font-weight:700; letter-spacing:1.5px;
  color: var(--gold); border:1px solid var(--gold); border-radius:4px;
  padding:2px 6px; margin-left:7px; align-self:center;
  white-space:nowrap;
}
.logo-sub{ display:flex; align-items:center; gap:6px; }
.logo-sub-line{
  width:16px; height:1px;
  background: linear-gradient(90deg, transparent, rgba(184,144,46,0.6));
  animation: sub-line-pulse 3s ease-in-out infinite;
}
@keyframes sub-line-pulse{ 0%,100%{ opacity:.4; } 50%{ opacity:1; } }
.logo-sub-text{
  font-size:9.5px; font-weight:700; letter-spacing:2px; white-space:nowrap;
  background: linear-gradient(90deg, var(--text-dim) 0%, #b8902e 40%, #e8c46a 60%, var(--text-dim) 100%);
  background-size:250% auto;
  -webkit-background-clip:text; background-clip:text; color:transparent;
  animation: sub-shimmer 4s ease-in-out infinite;
}
@keyframes sub-shimmer{
  0%,100%{ background-position:0% center; }
  50%{ background-position:100% center; }
}
nav.main-nav{ display:flex; gap:34px; }
nav.main-nav a{
  font-size: 13.5px; color: var(--text-muted); letter-spacing:.04em;
  transition: color .2s;
}
nav.main-nav a:hover, nav.main-nav a.active{ color: var(--gold-light); }
.header-right{ display:flex; align-items:center; gap:10px; }
.burger, .lang-btn{
  width:44px; height:44px; border-radius:10px;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  background: linear-gradient(160deg, #fffdf7, #f1e9d4);
  border:1px solid var(--gold-dim);
  box-shadow: 0 2px 10px rgba(184,144,46,0.14), inset 0 1px 0 rgba(255,255,255,0.7);
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.burger:hover, .lang-btn:hover{
  border-color: var(--gold-light);
  box-shadow: 0 8px 20px rgba(184,144,46,0.26), inset 0 1px 0 rgba(255,255,255,0.7);
}
.burger:active, .lang-btn:active{ transform: scale(.93); }
.burger span{ display:block; width:16px; height:1.5px; background: var(--gold-light); position:relative; }
.burger span::before, .burger span::after{
  content:''; position:absolute; height:1.5px; background: var(--gold-light); left:0; transition: width .25s;
}
.burger span::before{ top:-5px; width:16px; }
.burger span::after{ top:5px; width:10px; }
.burger:hover span::after{ width:16px; }

/* language switcher */
.lang-switch{ position:relative; }
.lang-btn{
  font-size:11px; font-weight:700; letter-spacing:.03em;
  color: var(--gold-light); font-family:'Noto Sans JP', sans-serif;
}
.lang-menu{
  position:absolute; top:52px; right:0; width:130px;
  background: var(--bg-elevated); border:1px solid var(--gold-dim); border-radius:14px;
  padding:8px; display:none; flex-direction:column; gap:2px;
  box-shadow: 0 20px 50px rgba(30,25,15,0.2); z-index:60;
}
.lang-menu.open{ display:flex; }
.lang-menu button{
  padding:10px 14px; border-radius:9px; font-size:13px; color: var(--text-muted);
  text-align:left; background:none; border:none; cursor:pointer; font-family:'Noto Sans JP', sans-serif;
  transition: background .15s, color .15s;
}
.lang-menu button:hover{ background: rgba(184,144,46,0.08); color: var(--text); }
.lang-menu button.active{ color: var(--gold-light); font-weight:700; background: rgba(184,144,46,0.06); }
/* hamburger drawer */
.ham-overlay{
  position:fixed; inset:0; background:rgba(30,25,15,0.5); z-index:150;
  opacity:0; pointer-events:none; transition:opacity .3s;
}
.ham-overlay.open{ opacity:1; pointer-events:all; }
.ham-drawer{
  position:fixed; top:0; right:0; width:min(310px,85vw); height:100dvh;
  background: var(--bg-elevated); z-index:151; overflow-y:auto;
  transform:translateX(100%); transition:transform .4s cubic-bezier(.32,.72,0,1);
  box-shadow:-24px 0 60px rgba(30,25,15,0.22); padding-bottom:30px;
}
.ham-drawer.open{ transform:translateX(0); }
.ham-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:24px 22px 16px; border-bottom:1px solid var(--border);
}
.ham-eyebrow{ font-size:11px; letter-spacing:.22em; color: var(--gold-light); font-weight:700; }
.ham-close{
  width:32px; height:32px; border-radius:50%; border:1px solid var(--border);
  background: var(--bg); color: var(--text-muted); cursor:pointer; font-size:14px;
  display:flex; align-items:center; justify-content:center; transition:.2s;
}
.ham-close:hover{ border-color: var(--gold-light); color: var(--gold-light); }
.ham-section-label{
  padding:20px 22px 8px; font-size:10.5px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color: var(--gold-light); display:flex; align-items:center; gap:7px;
}
.ham-section-label svg{ width:12px; height:12px; }
.ham-item{
  display:flex; align-items:center; gap:14px; padding:13px 22px;
  border-bottom:1px solid var(--border); text-decoration:none; color: var(--text);
  transition: background .15s;
}
.ham-item:hover{ background: rgba(184,144,46,0.06); }
.ham-item.active .ham-item-title{ color: var(--gold-light); }
.ham-item-icon{
  width:40px; height:40px; border-radius:12px; flex-shrink:0; color: var(--gold-light);
  background: linear-gradient(135deg, rgba(184,144,46,0.12), rgba(232,196,106,0.2));
  border:1px solid var(--gold-dim); display:flex; align-items:center; justify-content:center;
}
.ham-item-icon svg{ width:18px; height:18px; }
.ham-item-text{ flex:1; min-width:0; }
.ham-item-title{ font-size:14px; font-weight:700; display:block; }
.ham-item-sub{ font-size:11px; color: var(--text-muted); margin-top:2px; display:block; }
.ham-chevron{ width:13px; height:13px; flex-shrink:0; color: var(--text-dim); }
.ham-divider{ height:1px; background: var(--border); margin:10px 22px; }
.ham-item-quiet .ham-item-icon{ background: rgba(30,25,15,0.04); border-color: var(--border); color: var(--text-dim); }
.ham-close svg{ width:16px; height:16px; }
.saved-sheet{
  position:fixed; top:0; right:0; width:min(310px,85vw); height:100dvh;
  background: var(--bg-elevated); z-index:152; overflow-y:auto;
  transform:translateX(100%); transition:transform .4s cubic-bezier(.32,.72,0,1);
  box-shadow:-24px 0 60px rgba(30,25,15,0.22); padding-bottom:30px;
}
.saved-sheet.open{ transform:translateX(0); }

/* ===== Breadcrumb ===== */
.breadcrumb{
  max-width:1180px; margin:0 auto; padding: 22px 28px 0;
  font-size:12px; color: var(--text-dim);
}
.breadcrumb a:hover{ color: var(--gold-light); }

/* ===== Hero ===== */
.hero{
  max-width:1180px; margin:0 auto; padding: 26px 28px 10px;
  display:grid; grid-template-columns: 380px 1fr; gap:48px; align-items:end;
}
.hero-photo{
  position:relative; width:100%;
  aspect-ratio: 3/4; border-radius:18px; overflow:hidden;
  box-shadow: 0 20px 50px rgba(30,25,15,0.14);
}
/* ===== Hero slideshow (複数枚の写真をスライドで見せる) ===== */
.hero-slide{ position:absolute; inset:0; opacity:0; transition: opacity .7s ease; }
.hero-slide.active{ opacity:1; }
.hero-dots{
  position:absolute; bottom:14px; left:50%; transform:translateX(-50%);
  display:flex; gap:6px; z-index:3;
}
.hero-dot{
  width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,0.55);
  cursor:pointer; transition: width .25s, background .25s; box-shadow:0 1px 3px rgba(0,0,0,0.25);
}
.hero-dot.active{ background: var(--gold); width:18px; border-radius:4px; }
.hero-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:34px; height:34px; border-radius:50%; border:none; cursor:pointer;
  background: rgba(20,16,12,0.35); color:#fff; display:flex; align-items:center; justify-content:center;
  transition: background .2s, transform .2s;
}
.hero-arrow:hover{ background: rgba(20,16,12,0.6); }
.hero-arrow:active{ transform: translateY(-50%) scale(0.92); }
.hero-arrow svg{ width:18px; height:18px; }
.hero-arrow.prev{ left:10px; }
.hero-arrow.next{ right:10px; }
.hero-save-btn{
  position:absolute; top:12px; right:12px; z-index:4;
  width:38px; height:38px; border-radius:50%; border:none; cursor:pointer;
  background: rgba(20,16,12,0.35); color:#fff; display:flex; align-items:center; justify-content:center;
  transition: background .2s, transform .2s;
}
.hero-save-btn:hover{ background: rgba(20,16,12,0.55); }
.hero-save-btn:active{ transform: scale(0.92); }
.hero-save-btn svg{ width:18px; height:18px; fill:none; stroke:currentColor; transition: fill .2s; }
.hero-save-btn.saved{ background: var(--gold); color:#1a1408; }
.hero-save-btn.saved svg{ fill:currentColor; }
.hero-save-btn.pulse{ animation: save-glow .6s ease; }
.hero-info .vol{
  font-size:12px; letter-spacing:.2em; color: var(--gold-light); font-weight:700; margin-bottom:16px;
}
.hero-badges{ display:flex; gap:8px; margin-bottom:18px; }
.hero-badge{
  font-size:11px; font-weight:700; letter-spacing:.05em; padding:5px 12px; border-radius:20px;
}
.hero-badge.status{ background: var(--gold); color:#1a1408; }
.hero-badge.country{
  display:inline-flex; align-items:center; gap:6px;
  background: #e6e0d2; border:1px solid var(--gold-dim); color: var(--text-muted);
}
.hero-badge.country .flag{ width:16px; height:12px; border-radius:2px; overflow:hidden; }
.hero-info h1{ font-size:46px; font-weight:700; margin-bottom:16px; display:flex; align-items:center; gap:12px; }
.hero-info h1 .verified-badge{
  display:inline-flex; align-items:center; gap:5px;
  font-family:'Noto Sans JP', sans-serif; font-size:12px; font-weight:700; letter-spacing:.03em;
  background: linear-gradient(120deg,#e8c46a,#b8902e); color:#1a1408;
  padding:5px 12px 5px 8px; border-radius:20px; vertical-align:middle;
  box-shadow: 0 2px 8px rgba(184,144,46,0.35);
}
.hero-info h1 .verified-badge svg{ width:14px; height:14px; flex-shrink:0; }
@media (max-width:900px){
  .hero-info h1{ justify-content:center; flex-wrap:wrap; }
}
.hero-info .catch{
  font-size:16px; color: var(--text-muted); font-weight:500; max-width:520px;
  padding-left:16px; border-left:2px solid var(--gold-dim);
}
.hero-links{ display:flex; gap:12px; margin-top:24px; flex-wrap:wrap; }
.hero-links .sns-link{ max-width:240px; background: var(--bg-elevated); }
.hero-links .sns-link.onlyfans-link{ border-color: var(--gold); background: rgba(184,144,46,0.07); }
.hero-share{ display:flex; gap:10px; margin-top:26px; }
.share-btn{
  display:flex; align-items:center; gap:7px;
  border:1px solid var(--border); border-radius:8px; padding:9px 16px;
  font-size:12.5px; color: var(--text-muted); background: var(--bg-elevated);
  transition: border-color .2s, color .2s;
}
.share-btn:hover{ border-color: var(--gold-light); color: var(--gold-light); }
.save-btn{ cursor:pointer; border:1px solid var(--border); font-family:'Noto Sans JP', sans-serif; }
.save-btn svg{ width:15px; height:15px; flex-shrink:0; }
.save-btn svg path{ fill:none; stroke:currentColor; transition: fill .2s; }
.save-btn.saved{ border-color: var(--gold); color: var(--gold-light); background: rgba(184,144,46,0.08); }
.save-btn.saved svg path{ fill:currentColor; }
.save-btn.pulse{ animation: save-glow .6s ease; }
@keyframes save-glow{
  0%{ box-shadow: 0 0 0 0 rgba(184,144,46,0.45); }
  45%{ box-shadow: 0 0 0 9px rgba(184,144,46,0); transform: scale(1.06); }
  100%{ box-shadow: 0 0 0 0 rgba(184,144,46,0); transform: scale(1); }
}

/* ===== Layout: main + sidebar ===== */
.layout{
  max-width:1180px; margin:0 auto; padding: 26px 28px 60px;
  display:grid; grid-template-columns: 1fr 300px; gap:56px;
}

/* Editorial body */
.editorial .eyebrow{
  font-size:11px; letter-spacing:.15em; color: var(--gold-light); font-weight:700; margin-bottom:12px;
}
.editorial h2{ font-size:24px; font-weight:600; margin-bottom:20px; }
.editorial p{ color: var(--text); font-size:15px; margin-bottom:18px; }
.editorial p.lead{
  font-family:'Playfair Display', serif; font-size:19px; font-style:italic;
  color: var(--text); line-height:1.6; margin-bottom:26px;
}
.editorial p.drop-cap::first-letter{
  font-family:'Playfair Display', serif; font-size:52px; font-weight:700;
  color: var(--gold-light); float:left; line-height:0.8;
  padding:6px 8px 0 0;
}
.editor-note{
  margin: 22px 0 26px; padding: 14px 18px; border-left: 3px solid var(--gold);
  background: rgba(184,144,46,0.06); border-radius: 0 10px 10px 0;
}
.editor-note p{ margin-bottom:0; font-size:13.5px; color: var(--text-muted); line-height:1.65; }
.editor-note strong{ color: var(--gold-light); font-weight:700; }
.qa{ margin-top:36px; padding-top:32px; border-top:1px solid var(--border); }
.qa-item{ margin-bottom:26px; }
.qa-item .q{ font-family:'Playfair Display', serif; font-size:16px; font-weight:600; color: var(--gold-light); margin-bottom:8px; }
.qa-item .a{ font-size:14.5px; color: var(--text-muted); }

/* Gallery */
.gallery{ margin-top:48px; }
.gallery-grid{
  display:grid; grid-template-columns: repeat(6, 1fr); gap:14px;
}
.gallery-grid > div{ grid-column: span 2; aspect-ratio: 3/4; border-radius:14px; overflow:hidden; }
.gallery-grid > div:first-child{ grid-column: span 4; aspect-ratio: 4/3; }

/* Pull quote */
.pull-quote{ margin:44px 0; padding:0 8px; text-align:center; }
.pull-quote::before{
  content:'"'; display:block; font-family:'Playfair Display', serif; font-style:normal;
  font-size:60px; line-height:1; color: var(--gold-dim); opacity:.55; margin-bottom:-12px;
}
.pull-quote p{
  font-family:'Playfair Display', serif; font-style:italic; font-weight:600;
  font-size:26px; line-height:1.55; color: var(--gold-light);
  max-width:560px; margin:0 auto;
}

/* CTA inline */
.cta-inline{
  margin-top:48px; padding: 30px 32px; border-radius:16px;
  background: linear-gradient(120deg, #2b2620, #1e1a15);
  color:#f2ede2; display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.cta-inline h3{ font-size:18px; margin-bottom:6px; color:#f2ede2; }
.cta-inline p{ color:#c9c0af; font-size:13px; }
.btn-gold{
  background: var(--gold); color:#1a1408; padding:12px 22px; border-radius:8px;
  font-size:13px; font-weight:700; white-space:nowrap;
}

/* Sidebar */
.sidebar-card{
  background: var(--bg-elevated); border:1px solid var(--border); border-radius:16px;
  padding:26px 24px; margin-bottom:20px;
}
.sidebar-card h4{ font-size:13px; letter-spacing:.08em; color: var(--text-dim); margin-bottom:16px; text-transform:uppercase; }
.profile-row{ display:flex; justify-content:space-between; font-size:13.5px; padding:10px 0; border-bottom:1px solid var(--border); }
.profile-row:last-child{ border-bottom:none; }
.profile-row .k{ color: var(--text-dim); }
.profile-row .v{ color: var(--text); font-weight:500; }
.sns-links{ display:flex; flex-direction:column; gap:10px; }
.sns-link{
  display:flex; align-items:center; gap:12px;
  border:1px solid var(--border); border-radius:10px; padding:10px 14px;
  font-size:13px; color: var(--text-muted); transition: border-color .2s, box-shadow .2s;
}
.sns-link:hover{ border-color: var(--gold-light); box-shadow: 0 4px 14px rgba(184,144,46,0.14); }
.sns-link-text{ display:flex; flex-direction:column; flex:1; min-width:0; }
.sns-link-title{ font-size:13px; font-weight:600; color: var(--text); }
.sns-link-handle{ font-size:12px; color: var(--text-dim); margin-top:1px; }
.icon-badge{
  width:38px; height:38px; border-radius:11px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(184,144,46,0.14), rgba(232,196,106,0.22));
  border:1px solid var(--gold-dim); color: var(--gold-light);
}
.icon-badge svg{ width:19px; height:19px; }
.icon-badge.instagram{ color:#c1447e; background: linear-gradient(135deg, rgba(193,68,126,0.14), rgba(232,152,106,0.2)); border-color: rgba(193,68,126,0.35); }
.icon-badge.onlyfans{ color:#00a8e0; background: linear-gradient(135deg, rgba(0,168,224,0.12), rgba(0,168,224,0.2)); border-color: rgba(0,168,224,0.35); }
.icon-badge.x{ color:#1a1408; background: linear-gradient(135deg, rgba(30,25,15,0.08), rgba(30,25,15,0.16)); border-color: rgba(30,25,15,0.28); }
.sidebar-cta{
  text-align:center; border:1.5px solid var(--gold); border-radius:14px;
  padding:26px 20px; background: rgba(184,144,46,0.05);
}
.sidebar-cta .icon-badge{ margin:0 auto 14px; width:46px; height:46px; border-radius:13px; }
.sidebar-cta .icon-badge svg{ width:23px; height:23px; }
.sidebar-cta p{ font-size:13px; color: var(--text-muted); margin-bottom:16px; }

.sidebar-support{ text-align:center; }
.support-btn{
  display:inline-flex; align-items:center; gap:9px;
  border:1.5px solid var(--gold); border-radius:30px; background: var(--bg-elevated);
  color: var(--gold-light); padding:12px 26px; font-size:16px; font-weight:700;
  cursor:pointer; transition: background .2s, color .2s, transform .15s;
  font-family:'Noto Sans JP', sans-serif;
}
.support-btn svg{ width:19px; height:19px; transition: transform .2s; }
.support-btn:hover{ background: rgba(184,144,46,0.08); }
.support-btn:active{ transform: scale(0.95); }
.support-btn.supported{
  background: linear-gradient(120deg,#e8c46a,#b8902e); color:#1a1408; border-color: var(--gold);
}
.support-btn.supported svg{ transform: scale(1.15); }
.support-btn:disabled{ cursor:default; }
.support-btn.pulse svg{ animation: support-pulse .4s ease; }
@keyframes support-pulse{
  0%{ transform: scale(1); } 40%{ transform: scale(1.4); } 100%{ transform: scale(1.15); }
}
.support-note{ font-size:12px; color: var(--text-dim); margin-top:12px; margin-bottom:0; }
.btn-block{
  display:block; width:100%; text-align:center;
  background: var(--gold); color:#1a1408; padding:13px; border-radius:8px;
  font-size:13.5px; font-weight:700;
}

/* Related */
.related{ max-width:1180px; margin:0 auto; padding: 10px 28px 70px; }
.related h2{ font-size:24px; font-weight:600; margin-bottom:26px; }
.related-grid{ display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:20px; }
.related-grid > a{ min-width:0; display:block; }
.l-card{ background: var(--card); border:1px solid var(--border); border-radius:14px; overflow:hidden; box-shadow: 0 2px 14px rgba(30,25,15,0.05); transition: transform .25s, border-color .25s; min-width:0; }
.l-card:hover{ transform: translateY(-4px); border-color: var(--gold-dim); }
.l-card .thumb{ aspect-ratio: 1/1; position:relative; }
.l-card .body{
  position:relative; padding:14px 16px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #faf5e8 100%);
}
.l-card .body::before{
  content:''; position:absolute; top:0; left:16px; right:16px; height:1px;
  background: linear-gradient(90deg, transparent, rgba(184,144,46,0.4), transparent);
}
.l-card h4{
  font-family:'Playfair Display', serif; font-size:16px; font-weight:600;
  letter-spacing:.01em; margin-bottom:6px; color: var(--text);
  display:flex; align-items:center; gap:5px;
}
.l-card .verified-icon{ width:14px; height:14px; flex-shrink:0; }
.l-card .country{
  font-size:11.5px; color: var(--text-muted); letter-spacing:.02em;
  display:flex; align-items:center; gap:6px;
}
.l-card .country::before{
  content:''; width:3px; height:3px; border-radius:50%; background: var(--gold); flex-shrink:0;
}
.badge-pill{
  position:absolute; top:10px; left:10px; z-index:2; overflow:hidden;
  font-size:10px; font-weight:700; letter-spacing:.06em;
  padding:5px 12px; border-radius:20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.badge-pill.new{ background: linear-gradient(120deg,#8a5a2e,#c17a3a); color:#fff8ec; }
.badge-pill.popular{
  color:#1a1408;
  background: linear-gradient(120deg, #a67c1f 0%, #e8c46a 45%, #b8902e 75%, #d8c48f 100%);
  background-size: 220% auto;
  animation: badgeShimmer 3.5s ease-in-out infinite;
}
.badge-pill.popular::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: badgeShine 3.5s ease-in-out infinite;
  pointer-events:none;
}
@keyframes badgeShimmer{
  0%,100%{ background-position:0% center; }
  50%{ background-position:100% center; }
}
@keyframes badgeShine{
  0%{ background-position:150% 0; }
  60%,100%{ background-position:-50% 0; }
}
@media (prefers-reduced-motion: reduce){
  .badge-pill.popular{ animation:none; }
  .badge-pill.popular::after{ animation:none; display:none; }
}
.thumb-verified{
  position:absolute; top:10px; right:10px; z-index:2;
  width:24px; height:24px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg,#e8c46a,#b8902e);
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
}
.thumb-verified svg{ width:13px; height:13px; }

footer{
  border-top:1px solid var(--border); padding: 40px 28px; text-align:center;
  color: var(--text-dim); font-size:12px;
}
footer .f-links{ display:flex; justify-content:center; gap:22px; margin-bottom:16px; flex-wrap:wrap; }
footer .f-links a{ color: var(--text-muted); }
footer .f-links a:hover{ color: var(--gold-light); }

@media (max-width: 900px){
  nav.main-nav{ display:none; }
  .hero{ grid-template-columns: 1fr; }
  .hero-photo{ max-width:280px; margin:0 auto; }
  .hero-info{ text-align:center; }
  .hero-badges, .hero-share, .hero-links{ justify-content:center; }
  .hero-info .catch{ margin:0 auto; text-align:left; }
  .layout{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-grid > div:first-child{ grid-column: span 2; }
  .pull-quote{ margin:32px 0; }
  .pull-quote::before{ font-size:44px; margin-bottom:-8px; }
  .pull-quote p{ font-size:19px; }
  .cta-inline{ flex-direction:column; text-align:center; }
  .related-grid{ grid-template-columns: repeat(2,1fr); }
  .l-card .thumb{ aspect-ratio: 4/5; }
  .l-card .body{ padding:9px 11px 10px; line-height:1.3; }
  .l-card h4{ font-size:13.5px; margin-bottom:3px; }
  .l-card .country{ font-size:10px; }
  .badge-pill{ top:8px; left:8px; padding:4px 10px; font-size:9px; }
}

/* ===== Scroll reveal ===== */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ transition:none; opacity:1; transform:none; }
}
