/* ============================================
   FUWALY v5 PREMIUM
   東京レーベルLPレベルのプレミアム演出
   ============================================ */

/* ---------- Variables ---------- */
:root {
  --gold: #C8A859;
  --gold-light: #E2C98C;
  --gold-dark: #B8984A;
  --pink: #F8D6DA;
  --pink-light: #FEF5F3;
  --pink-dark: #E91E63;
  --navy: #1a1a2e;
  --navy-light: #2a2a4e;
  --text-dark: #1a1a1a;
  --text-medium: #3a3a3a;
  --text-light: #6a6a6a;
  --white: #FFFFFF;
  --bg-cream: #FFFBF5;
  --bg-blush: #FDF8F6;
  
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --font-display: "Cormorant Garamond", serif;
  
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 35px rgba(200, 168, 89, 0.4);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.9;
  background: var(--white);
  overflow-x: hidden;
  font-weight: 400;
}

body.loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Utility ---------- */
.gold { color: var(--gold); }
.sp-only { display: none; }

@media (max-width: 768px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
}

/* ============================================
   LOADER - ローディング画面
   ============================================ */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--white) 50%, var(--bg-cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__logo {
  margin-bottom: 2rem;
}

.loader__logo-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 0.3rem;
  animation: fadeInDown 0.8s ease forwards;
}

.loader__logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--text-dark);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.loader__bar {
  width: 200px;
  height: 2px;
  background: rgba(200, 168, 89, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader__bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: loaderBar 2s ease forwards;
}

.loader__text {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--text-light);
  animation: pulse 1.5s ease infinite;
}

@keyframes loaderBar {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ============================================
   SAKURA PARTICLES - 桜パーティクル
   ============================================ */

.sakura-container {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.sakura {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--pink) 0%, rgba(248, 214, 218, 0.6) 100%);
  border-radius: 50% 0 50% 50%;
  opacity: 0;
  animation: sakuraFall linear infinite;
  filter: blur(0.5px);
}

.sakura::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(45deg);
}

@keyframes sakuraFall {
  0% {
    opacity: 0;
    transform: translateY(-10vh) rotate(0deg) translateX(0);
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(110vh) rotate(720deg) translateX(100px);
  }
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.header__logo-sub {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.header__logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--text-dark);
}

.header.scrolled .header__logo-main {
  color: var(--text-dark);
}

.header:not(.scrolled) .header__logo-main {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header:not(.scrolled) .header__logo-sub {
  color: var(--gold-light);
}

.header__nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.header__nav a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--text-medium);
  padding: 0.5rem 0;
  position: relative;
}

.header:not(.scrolled) .header__nav a {
  color: var(--white);
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__nav-cta {
  padding: 0.6rem 1.5rem !important;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 4px;
  text-shadow: none !important;
}

.header__nav-cta:hover {
  background: var(--gold-dark);
}

.header__nav-cta::after {
  display: none;
}

.header__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
}

.header__tel a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.header__tel span {
  font-size: 0.65rem;
  color: var(--text-light);
}

.header:not(.scrolled) .header__tel span {
  color: rgba(255,255,255,0.8);
}

.header__menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.header__menu span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

.header:not(.scrolled) .header__menu span {
  background: var(--white);
}

.header__menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__menu.active span:nth-child(2) {
  opacity: 0;
}

.header__menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  transition: var(--transition);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__nav {
  padding: 6rem 2rem 2rem;
}

.mobile-menu__nav ul {
  list-style: none;
}

.mobile-menu__nav li {
  border-bottom: 1px solid #eee;
}

.mobile-menu__nav a {
  display: block;
  padding: 1.2rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--text-dark);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* Primary Button (Gold + Glow) */
.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 45px rgba(200, 168, 89, 0.5);
}

.btn--glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s infinite;
}

/* White Button */
.btn--white {
  background: var(--white);
  color: var(--gold);
}

.btn--white:hover {
  background: var(--navy);
  color: var(--white);
}

/* White Outline */
.btn--white-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn--white-outline:hover {
  background: var(--white);
  color: var(--gold);
}

/* Outline Button */
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* LINE Button */
.btn--line {
  background: #06C755;
  color: var(--white);
}

.btn--line:hover {
  background: #05a648;
}

@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* ============================================
   SECTION BASE
   ============================================ */

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-label--light {
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.section-title--center {
  text-align: center;
}

.section-title--light {
  color: var(--white);
}

.section-lead {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 2;
  margin-bottom: 2rem;
  text-align: center;
}

.section-lead--light {
  color: rgba(255,255,255,0.85);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   AUTH PAGE - 認証ページ
   ============================================ */

.auth-body {
  background: var(--pink-light);
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.auth-bg {
  position: absolute;
  inset: 0;
}

.auth-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: bgZoom 25s ease-in-out infinite alternate;
}

.auth-bg-slide.active {
  opacity: 1;
}

.auth-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.2) 0%,
    rgba(255,255,255,0.4) 40%,
    rgba(255,255,255,0.85) 100%
  );
}

.auth-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 750px;
}

.auth-logo {
  margin-bottom: 2.5rem;
}

.auth-logo-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.auth-logo-main {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--text-dark);
}

.auth-catch {
  margin-bottom: 2.5rem;
}

.auth-catch-main {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.auth-catch-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.15em;
  color: var(--text-medium);
}

.auth-cta {
  margin-bottom: 2.5rem;
}

.auth-age-notice {
  margin-bottom: 2rem;
}

.auth-age-en {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.auth-age-ja {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.auth-seo-text {
  margin-bottom: 2rem;
}

.auth-seo-text p {
  font-size: 0.95rem;
  line-height: 2.2;
  color: var(--text-medium);
}

.auth-footer p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 0.3rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.scroll-indicator span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.scroll-indicator__line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   HERO - スライダー付き
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: bgZoom 25s ease-in-out infinite alternate;
}

.hero__bg-slide.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.1) 50%,
    rgba(255,255,255,0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero__catch {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 15px rgba(0,0,0,0.6), 0 0 30px rgba(0,0,0,0.4);
}

.hero__title {
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.7), 0 2px 10px rgba(0,0,0,0.5), 0 0 60px rgba(0,0,0,0.3);
  line-height: 1.4;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 15px rgba(0,0,0,0.6), 0 0 30px rgba(0,0,0,0.4);
}

.hero__text {
  font-size: 1.05rem;
  line-height: 2.2;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 15px rgba(0,0,0,0.6), 0 0 30px rgba(0,0,0,0.4);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.hero__scroll span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease infinite;
}

@keyframes bgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* ============================================
   ABOUT - カウントアップ付き
   ============================================ */

.about {
  padding: 8rem 0;
  background: var(--bg-blush);
  position: relative;
}

.about__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about__text {
  margin-bottom: 3rem;
}

.about__text p {
  font-size: 1.1rem;
  line-height: 2.4;
  color: var(--text-medium);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.stat__unit {
  font-size: 1.2rem;
  color: var(--gold);
  margin-left: 0.2rem;
}

.stat__label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

/* ============================================
   MEMBERS SECTION
   ============================================ */

.members-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--pink-light) 100%);
}

.members__content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.members__benefits {
  font-size: 1.05rem;
  line-height: 2.2;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.members__form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}

.members__input {
  flex: 1;
  padding: 1rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.members__input:focus {
  outline: none;
  border-color: var(--gold);
}

.members__submit {
  padding: 1rem 2rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition);
}

.members__submit:hover {
  background: var(--navy-light);
}

.members__line {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.members__line p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* ============================================
   NEW FACE / PICKUP - Ladies Grid
   ============================================ */

.newface {
  padding: 6rem 0;
  background: var(--white);
}

.pickup {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.pickup__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #2a2a5e 100%);
}

.pickup__overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  background-size: 30px 30px;
}

.pickup .container {
  position: relative;
  z-index: 2;
}

.ladies-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.ladies-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.ladies-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Lady Card */
.lady-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.lady-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.lady-card--dark {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.lady-card__image {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.lady-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.5s ease;
}

.lady-card:hover .lady-card__image img {
  transform: scale(1.08);
}

.lady-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.lady-card:hover .lady-card__overlay {
  opacity: 1;
}

.lady-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  background: var(--gold);
  color: var(--white);
  border-radius: 2px;
  z-index: 5;
}

.lady-card__badge--pink {
  background: var(--pink-dark);
}

.lady-card__content {
  padding: 1.5rem;
}

.lady-card--dark .lady-card__content {
  color: var(--white);
}

.lady-card__name {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.lady-card__spec {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.lady-card--dark .lady-card__spec {
  color: rgba(255,255,255,0.7);
}

.lady-card__type {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.lady-card--dark .lady-card__type {
  color: rgba(255,255,255,0.8);
}

.lady-card__coming {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.lady-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  transition: var(--transition);
}

.lady-card__link:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.lady-card__link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: var(--transition);
}

.lady-card__link:hover svg {
  transform: translateX(3px);
}

/* Drip Feed Blur */
.blur-heavy {
  filter: blur(20px);
}

.blur-light {
  filter: blur(8px);
}

/* ============================================
   CONCEPT SECTION
   ============================================ */

.concept {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.concept__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: bgZoom 30s ease-in-out infinite alternate;
}

.concept__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.8) 50%,
    rgba(255,255,255,0.6) 100%
  );
}

.concept__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.concept__text {
  margin-bottom: 2rem;
}

.concept__text p {
  font-size: 1.1rem;
  line-height: 2.4;
  color: var(--text-medium);
}

/* ============================================
   QUALITY SECTION
   ============================================ */

.quality {
  padding: 6rem 0;
  background: var(--bg-blush);
}

.quality__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.quality-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.quality-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.quality-item__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
}

.quality-item__icon span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.quality-item__title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.quality-item__text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  background-size: 20px 20px;
}

.cta-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-section__title .gold {
  color: rgba(255,255,255,0.8);
}

.cta-section__tel {
  margin-bottom: 0.5rem;
}

.cta-section__tel a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--white);
  letter-spacing: 0.1em;
}

.cta-section__hours {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 4rem 0 2rem;
  position: relative;
  background: var(--navy);
  color: var(--white);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__logo-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.footer__logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer__nav ul {
  list-style: none;
}

.footer__nav li {
  margin-bottom: 0.6rem;
}

.footer__nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
}

.footer__tel a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer__copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer__note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   MOBILE CTA
   ============================================ */

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 0.8rem 1rem;
}

.mobile-cta {
  display: flex;
  gap: 0.5rem;
}

.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.mobile-cta__btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.mobile-cta__btn--tel {
  background: var(--gold);
  color: var(--white);
}

.mobile-cta__btn--reserve {
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .ladies-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .quality__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header__nav,
  .header__tel {
    display: none;
  }
  
  .header__menu {
    display: flex;
  }
  
  .hero {
    min-height: 600px;
  }
  
  .ladies-grid--4,
  .ladies-grid--3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .quality__grid {
    grid-template-columns: 1fr;
  }
  
  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .stat {
    padding: 1.5rem 0.5rem;
  }
  
  .stat__number {
    font-size: 2rem;
  }
  
  .members__form {
    flex-direction: column;
  }
  
  .cta-section__buttons {
    flex-direction: column;
  }
  
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer {
    padding-bottom: 5rem;
  }
  
  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .auth-logo-main {
    letter-spacing: 0.1em;
  }
  
  .hero__title-line {
    font-size: 1.8rem;
  }
  
  .about__stats {
    grid-template-columns: 1fr;
  }
}

/* PC only - hide mobile CTA */
@media (min-width: 769px) {
  .mobile-cta {
    display: none;
  }
}

/* ==========================================================================
   Ladies Single Page Styles
   ========================================================================== */
.profile-section { padding: 5rem 0; background: var(--white); }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; }
.profile-images { display: flex; flex-direction: column; gap: 1rem; }
.profile-images__main { width: 100%; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; background: var(--bg-cream); }
.profile-images__main img { width: 100%; height: 100%; object-fit: cover; }
.profile-images__subs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.profile-images__sub { aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; background: var(--bg-cream); }
.profile-images__sub img { width: 100%; height: 100%; object-fit: cover; }
.coming-soon { aspect-ratio: 3/4; background: linear-gradient(135deg, rgba(248, 214, 218, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-radius: 8px; border: 1px solid rgba(201, 160, 80, 0.1); }
.coming-soon__text { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.15em; }
.coming-soon__label { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--gold); margin-top: 8px; letter-spacing: 0.1em; }
.profile-info { display: flex; flex-direction: column; }
.profile-info__header { margin-bottom: 1.5rem; }
.type-badge { display: inline-block; padding: 0.4rem 1.2rem; background: linear-gradient(135deg, #1a1a2e, #2a2a4e); color: white; font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.15em; border-radius: 4px; margin-bottom: 1rem; }
.profile-info__name { font-family: var(--font-body); font-size: 2.2rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.profile-info__job { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; }
.profile-info__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.profile-tag { display: inline-block; padding: 0.4rem 1rem; background: var(--bg-cream); color: var(--text-medium); font-size: 0.8rem; border-radius: 20px; letter-spacing: 0.05em; }
.profile-specs { border-top: 1px solid rgba(201, 160, 80, 0.15); border-bottom: 1px solid rgba(201, 160, 80, 0.15); padding: 1.5rem 0; margin: 1.5rem 0; }
.profile-specs__row { display: flex; padding: 0.6rem 0; }
.profile-specs__label { width: 100px; font-size: 0.85rem; color: var(--text-light); letter-spacing: 0.1em; }
.profile-specs__value { font-size: 0.95rem; color: var(--text-dark); }
.profile-cta { display: flex; gap: 1rem; margin-top: 2rem; }
.profile-cta .btn { flex: 1; text-align: center; padding: 1rem 1.5rem; }
.btn--gold { background: linear-gradient(135deg, var(--gold), #B8934A); color: white; border: none; border-radius: 8px; text-decoration: none; font-size: 0.95rem; letter-spacing: 0.1em; transition: var(--transition); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 160, 80, 0.3); }
.btn--gold-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); border-radius: 8px; text-decoration: none; font-size: 0.95rem; letter-spacing: 0.1em; transition: var(--transition); }
.btn--gold-outline:hover { background: var(--gold); color: white; }

/* Comment Section */
.comment-section { padding: 5rem 0; background: var(--bg-blush); }
.comment-block { max-width: 800px; margin: 0 auto 3rem; background: var(--white); border-radius: 8px; padding: 2.5rem; box-shadow: var(--shadow-soft); }
.comment-block:last-child { margin-bottom: 0; }
.comment-block__title { font-family: var(--font-body); font-size: 1.1rem; font-weight: 500; color: var(--gold); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(201, 160, 80, 0.2); }
.comment-block__text { font-size: 0.95rem; color: var(--text-medium); line-height: 2.2; }
.comment-block--highlight { background: linear-gradient(135deg, rgba(201, 160, 80, 0.05), rgba(255, 255, 255, 1)); border: 1px solid rgba(201, 160, 80, 0.15); }
.comment-block__label { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1rem; }

/* Recommend Section */
.recommend-section { padding: 5rem 0; background: var(--white); }
.recommend-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.recommend-card { text-align: center; text-decoration: none; }
.recommend-card__image { aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; margin-bottom: 1rem; background: var(--bg-cream); }
.recommend-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.recommend-card:hover .recommend-card__image img { transform: scale(1.05); }
.recommend-card__name { font-family: var(--font-body); font-size: 1rem; color: var(--text-dark); letter-spacing: 0.1em; }

/* Back Link */
.back-link-section { padding: 3rem 0; background: var(--white); text-align: center; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); text-decoration: none; font-size: 0.95rem; letter-spacing: 0.1em; transition: var(--transition); }
.back-link:hover { opacity: 0.7; }
.back-link svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Responsive */
@media (max-width: 968px) { 
  .profile-grid { grid-template-columns: 1fr; gap: 2rem; } 
  .profile-images__main, .profile-images__subs { max-width: 400px; margin: 0 auto; } 
}
@media (max-width: 768px) { 
  .recommend-grid { grid-template-columns: repeat(2, 1fr); } 
  .profile-cta { flex-direction: column; } 
  .comment-block { padding: 2rem 1.5rem; } 
}
@media (max-width: 480px) { 
  .profile-info__name { font-size: 1.8rem; } 
  .profile-specs__label { width: 80px; } 
}


/* ============================================
   FIXED PAGES CSS
   Extracted from static HTML designs
   ============================================ */

/* ---------- Concept Page ---------- */
.concept-section { padding: 6rem 0; }
.concept-section--white { background: var(--white); }
.concept-section--blush { background: var(--bg-blush); }
.concept-block { max-width: 800px; margin: 0 auto; text-align: center; }
.concept-block__title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 2.5rem; line-height: 1.6; }
.concept-block__text { font-family: var(--font-serif); font-size: 1.05rem; line-height: 2.4; color: var(--text-medium); letter-spacing: 0.06em; }
.concept-block__text p + p { margin-top: 2rem; }
.cta-simple { text-align: center; padding: 5rem 0; background: var(--white); }
.cta-simple__text { font-family: var(--font-serif); font-size: 1.1rem; letter-spacing: 0.08em; color: var(--text-medium); margin-bottom: 2rem; }
.cta-simple__buttons { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }

/* ---------- FAQ Page ---------- */
.faq-section { padding: 5rem 0; }
.faq-section--white { background: var(--white); }
.faq-section--blush { background: var(--bg-blush); }
.faq-category { margin-bottom: 4rem; }
.faq-category:last-child { margin-bottom: 0; }
.faq-category__title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(201, 160, 80, 0.3); }
.faq-item { background: var(--white); border-radius: 8px; margin-bottom: 1rem; box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; cursor: pointer; transition: background 0.3s; }
.faq-question:hover { background: rgba(201, 160, 80, 0.05); }
.faq-question__text { font-family: var(--font-serif); font-size: 1rem; font-weight: 500; color: var(--text-dark); letter-spacing: 0.05em; padding-right: 1rem; }
.faq-question__icon { width: 24px; height: 24px; position: relative; flex-shrink: 0; }
.faq-question__icon::before, .faq-question__icon::after { content: ''; position: absolute; background: var(--gold); transition: transform 0.3s; }
.faq-question__icon::before { width: 14px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-question__icon::after { width: 2px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.active .faq-question__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer__inner { padding: 0 2rem 1.5rem; font-family: var(--font-serif); font-size: 0.95rem; line-height: 2; color: var(--text-medium); }
.faq-answer__inner p + p { margin-top: 1rem; }
.faq-answer__list { margin-top: 1rem; padding-left: 1rem; list-style: none; }
.faq-answer__list li { margin-bottom: 0.5rem; }

/* ---------- System Page ---------- */
.system-section { padding: 5rem 0; background: var(--bg-blush); }
.system-card { background: var(--white); border-radius: 8px; box-shadow: var(--shadow-soft); padding: 2.5rem; margin-bottom: 2rem; }
.system-card__title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid #eee; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.price-item { text-align: center; padding: 1.5rem 1rem; background: var(--bg-cream); border-radius: 8px; transition: var(--transition); }
.price-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.price-item__time { font-size: 1.1rem; color: var(--text-medium); margin-bottom: 0.5rem; }
.price-item__amount { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--gold); }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 1.2rem 1.8rem; text-align: left; border-bottom: 1px solid #eee; }
.info-table th { width: 40%; font-weight: 400; background: var(--bg-cream); }
.info-table .amount { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); }
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.area-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; background: var(--bg-cream); border-radius: 4px; }
.area-item__name { color: var(--text-dark); font-size: 0.95rem; }
.area-item__fee { font-family: var(--font-display); font-size: 1rem; color: var(--gold); }
.info-list { list-style: none; }
.info-list li { padding: 0.8rem 0; border-bottom: 1px solid #eee; font-size: 1rem; color: var(--text-medium); }
.info-list li:last-child { border-bottom: none; }
.notice-box { background: var(--pink-light); padding: 1.5rem 2rem; border-radius: 8px; border-left: 4px solid var(--gold); margin-top: 2rem; }
.notice-box__title { font-size: 1rem; color: var(--gold); margin-bottom: 0.8rem; letter-spacing: 0.1em; }
.notice-box p { font-size: 0.95rem; color: var(--text-medium); line-height: 2; }
.notice-box ul { list-style: none; margin-top: 0.8rem; }
.notice-box ul li { font-size: 0.95rem; color: var(--text-medium); padding: 0.3rem 0; }
.notice-box ul li::before { content: "・"; }

/* ---------- Reserve Page ---------- */
.reserve-section { padding: 5rem 0; background: var(--bg-blush); }
.reserve-intro { max-width: 700px; margin: 0 auto 4rem; text-align: center; }
.reserve-intro__text { font-size: 1rem; line-height: 2; color: var(--text-medium); }
.reserve-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; }
.reserve-card { background: var(--white); border-radius: 8px; box-shadow: var(--shadow-soft); padding: 2.5rem 2rem; text-align: center; transition: var(--transition); }
.reserve-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.reserve-card--primary { background: linear-gradient(135deg, var(--gold) 0%, #B8934A 100%); color: white; }
.reserve-card__icon { width: 70px; height: 70px; border-radius: 50%; background: var(--bg-cream); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.reserve-card--primary .reserve-card__icon { background: rgba(255,255,255,0.2); }
.reserve-card__icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.reserve-card--primary .reserve-card__icon svg { stroke: white; }
.reserve-card__title { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.8rem; }
.reserve-card--primary .reserve-card__title { color: white; }
.reserve-card__desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.8; }
.reserve-card--primary .reserve-card__desc { color: rgba(255,255,255,0.85); }
.reserve-card__contact { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.reserve-card__contact a { color: var(--gold); text-decoration: none; }
.reserve-card--primary .reserve-card__contact a { color: white; }
.reserve-card__hours { font-size: 0.85rem; color: var(--text-light); }
.reserve-card--primary .reserve-card__hours { color: rgba(255,255,255,0.75); }
.reserve-card__btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.8rem 2rem; background: var(--gold); color: white; border-radius: 50px; text-decoration: none; font-size: 0.95rem; letter-spacing: 0.05em; transition: var(--transition); }
.reserve-card__btn:hover { background: #B8934A; transform: scale(1.02); }
.reserve-card--primary .reserve-card__btn { background: white; color: var(--gold); }
.reserve-card--primary .reserve-card__btn:hover { background: #f5f5f5; }
.reserve-card__btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Reserve Flow */
.reserve-flow { background: var(--white); border-radius: 8px; box-shadow: var(--shadow-soft); padding: 3rem; margin-bottom: 3rem; }
.reserve-flow__title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.15em; color: var(--gold); text-align: center; margin-bottom: 2.5rem; }
.flow-type { margin-bottom: 3rem; }
.flow-type:last-child { margin-bottom: 0; }
.flow-type__title { font-size: 1.1rem; color: var(--text-dark); text-align: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(201, 160, 80, 0.2); }
.flow-steps { display: flex; justify-content: space-between; position: relative; }
.flow-steps--5 .flow-step { flex: 0 0 18%; }
.flow-steps--4 .flow-step { flex: 0 0 22%; }
.flow-steps::before { content: ''; position: absolute; top: 30px; left: 40px; right: 40px; height: 2px; background: var(--gold); opacity: 0.3; }
.flow-step { text-align: center; position: relative; z-index: 1; }
.flow-step__number { width: 60px; height: 60px; background: var(--gold); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-family: var(--font-display); font-size: 1.2rem; }
.flow-step__title { font-size: 0.95rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.5rem; }
.flow-step__desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* Offer Style */
.offer-style { background: var(--bg-cream); border-radius: 8px; padding: 3rem; margin-bottom: 3rem; text-align: center; }
.offer-style__title { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1.5rem; }
.offer-style__text { font-size: 1rem; line-height: 2.2; color: var(--text-medium); }

/* Reserve Notes */
.reserve-notes { background: var(--white); border-radius: 8px; box-shadow: var(--shadow-soft); padding: 2rem; }
.reserve-notes__title { font-size: 1rem; font-weight: 500; color: var(--gold); margin-bottom: 1rem; }
.notes-list__item { font-size: 0.9rem; color: var(--text-medium); line-height: 1.8; margin-bottom: 0.5rem; }
.notes-list__link { margin-top: 1rem; font-size: 0.9rem; }
.notes-list__link a { color: var(--gold); text-decoration: none; }

/* ---------- Members Page ---------- */
.members-section { padding: 5rem 0; background: var(--bg-blush); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.benefit-box { background: var(--white); border: 1px solid rgba(201, 160, 80, 0.2); border-radius: 8px; padding: 2rem 1.5rem; text-align: center; transition: var(--transition); }
.benefit-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.benefit-box__number { font-family: var(--font-display); font-size: 2rem; color: var(--gold); opacity: 0.5; margin-bottom: 0.5rem; }
.benefit-box__title { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem; }
.benefit-box__text { font-size: 0.9rem; line-height: 1.8; color: var(--text-medium); }

/* Form Section */
.form-section { background: var(--white); border-radius: 8px; box-shadow: var(--shadow-soft); padding: 3rem; margin-bottom: 3rem; }
.form-section__title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.15em; color: var(--gold); text-align: center; margin-bottom: 0.5rem; }
.form-section__subtitle { font-size: 0.9rem; color: var(--text-light); text-align: center; margin-bottom: 2rem; }
.form-notice { background: var(--bg-cream); border-radius: 8px; padding: 1.5rem; margin-bottom: 2rem; font-size: 0.85rem; color: var(--text-medium); line-height: 1.8; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 1rem; border: 1px solid rgba(201, 160, 80, 0.2); border-radius: 8px; font-size: 1rem; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-submit { text-align: center; }
.form-submit button { background: #1a1a2e; color: white; border: none; padding: 1rem 4rem; font-size: 1rem; letter-spacing: 0.1em; border-radius: 8px; cursor: pointer; transition: var(--transition); }
.form-submit button:hover { background: #2a2a4e; }
.form-note { font-size: 0.85rem; color: var(--text-light); text-align: center; margin-top: 1.5rem; }
.form-note a { color: var(--gold); }

/* LINE Section */
.line-section { background: var(--white); border-radius: 8px; box-shadow: var(--shadow-soft); padding: 3rem; text-align: center; margin-bottom: 3rem; }
.line-section__title { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem; }
.line-section__text { font-size: 0.95rem; color: var(--text-medium); margin-bottom: 1.5rem; }
.line-section__info { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.5rem; }
.line-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, var(--gold), #B8934A); color: white; padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-size: 1rem; transition: var(--transition); }
.line-btn:hover { transform: scale(1.02); box-shadow: 0 10px 30px rgba(201, 160, 80, 0.3); }
.line-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Privacy Note */
.privacy-note { background: var(--bg-cream); border-radius: 8px; padding: 2rem; text-align: center; margin-bottom: 3rem; }
.privacy-note__text { font-size: 0.95rem; color: var(--text-medium); line-height: 2; }
.privacy-note__link a { color: var(--gold); }

/* ---------- Recruit Page ---------- */
.recruit-section { padding: 5rem 0; background: var(--white); }
.recruit-section--alt { background: var(--bg-blush); }
.recruit-intro { max-width: 700px; margin: 0 auto; text-align: center; }
.recruit-intro__text { font-size: 1rem; line-height: 2.2; color: var(--text-medium); }
.member-info { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: 8px; padding: 2.5rem; box-shadow: var(--shadow-soft); text-align: center; }
.member-info__text { font-size: 0.95rem; line-height: 2.2; color: var(--text-medium); }
.style-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.style-card { background: var(--white); border: 1px solid rgba(201, 160, 80, 0.2); border-radius: 8px; padding: 2rem; text-align: center; }
.style-card__title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: var(--gold); margin-bottom: 1rem; }
.style-card__text { font-size: 0.9rem; line-height: 1.9; color: var(--text-medium); }
.reward-box { max-width: 600px; margin: 0 auto; background: var(--white); border: 1px solid var(--gold); border-radius: 8px; padding: 2.5rem; text-align: center; }
.reward-box__amount { font-family: var(--font-display); font-size: 2rem; color: var(--gold); margin-bottom: 1rem; letter-spacing: 0.1em; }
.reward-box__text { font-size: 0.95rem; line-height: 2; color: var(--text-medium); }
.env-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.env-item { background: var(--white); border-radius: 8px; padding: 1.5rem; text-align: center; box-shadow: var(--shadow-soft); }
.env-item__title { font-size: 0.95rem; font-weight: 500; color: var(--gold); margin-bottom: 0.5rem; }
.env-item__text { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.ideal-list { max-width: 600px; margin: 0 auto; }
.ideal-list__item { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(201, 160, 80, 0.1); }
.ideal-list__item:last-child { border-bottom: none; }
.ideal-list__dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.ideal-list__text { font-size: 0.95rem; color: var(--text-medium); }

/* Apply Section */
.apply-section { padding: 5rem 0; background: var(--bg-cream); }
.apply-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto 3rem; }
.apply-card { background: var(--white); border-radius: 8px; padding: 2rem; text-align: center; box-shadow: var(--shadow-soft); }
.apply-card--primary { background: linear-gradient(135deg, var(--gold), #B8934A); color: white; }
.apply-card__title { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.5rem; }
.apply-card--primary .apply-card__title { color: white; }
.apply-card__btn { display: inline-block; margin-top: 1rem; padding: 0.8rem 2rem; background: var(--gold); color: white; border-radius: 8px; text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.apply-card--primary .apply-card__btn { background: white; color: var(--gold); }
.apply-card__btn:hover { transform: translateY(-2px); }
.apply-form { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: 8px; padding: 3rem; box-shadow: var(--shadow-soft); }
.apply-form__title { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.1em; color: var(--gold); text-align: center; margin-bottom: 2rem; }
.form-row { margin-bottom: 1.5rem; }
.form-row label { display: block; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-row label .required { color: var(--gold); font-size: 0.8rem; margin-left: 0.5rem; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 0.8rem 1rem; border: 1px solid rgba(201, 160, 80, 0.2); border-radius: 8px; font-size: 0.95rem; transition: var(--transition); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); }
.form-row textarea { min-height: 100px; resize: vertical; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 1rem 0; background: var(--bg-cream); }
.breadcrumb__list { display: flex; align-items: center; gap: 0.5rem; list-style: none; padding: 0; margin: 0; font-size: 0.85rem; }
.breadcrumb__item { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb__item:not(:last-child)::after { content: '>'; color: var(--text-light); }
.breadcrumb__link { color: var(--gold); text-decoration: none; transition: var(--transition); }
.breadcrumb__link:hover { opacity: 0.7; }
.breadcrumb__current { color: var(--text-medium); }

/* ---------- Company Page ---------- */
.company-section { padding: 5rem 0; background: var(--white); }
.company-section--alt { background: var(--bg-blush); }
.company-section__intro { max-width: 700px; margin: 0 auto 3rem; text-align: center; line-height: 1.9; color: var(--text-medium); }

/* Company Info Table */
.info-table-company { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-soft); }
.info-table__row { display: flex; border-bottom: 1px solid rgba(201, 160, 80, 0.15); }
.info-table__row:last-child { border-bottom: none; }
.info-table__label { width: 160px; min-width: 160px; padding: 1.25rem 1.5rem; background: var(--bg-cream); font-size: 0.9rem; color: var(--text-dark); display: flex; align-items: center; }
.info-table__value { flex: 1; padding: 1.25rem 1.5rem; font-size: 0.95rem; color: var(--text-medium); line-height: 1.9; }
.info-table__value a { color: var(--gold); text-decoration: none; transition: var(--transition); }
.info-table__value a:hover { opacity: 0.7; }

/* Brand List */
.brand-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
a.brand-card { display: block; text-decoration: none; }
.brand-card { background: var(--white); border: 1px solid rgba(201, 160, 80, 0.2); border-radius: 8px; padding: 2rem 1.5rem; text-align: center; transition: var(--transition); }
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.brand-card__name { font-family: var(--font-serif); font-size: 1rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.5rem; }
.brand-card__note { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; }
.brand-card__link { display: inline-block; font-size: 0.85rem; color: var(--gold); text-decoration: none; transition: var(--transition); }
.brand-card__link:hover { opacity: 0.7; }

/* FC Section */
.fc-section { max-width: 700px; margin: 0 auto; text-align: center; }
.fc-section__text { font-size: 0.95rem; color: var(--text-medium); line-height: 1.9; margin-bottom: 1.5rem; }
.fc-section__link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); text-decoration: none; font-size: 1rem; transition: var(--transition); }
.fc-section__link:hover { opacity: 0.7; }
.fc-section__link svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Philosophy Section */
.philosophy-section { max-width: 700px; margin: 0 auto; text-align: center; padding: 3rem; background: var(--white); border-radius: 8px; box-shadow: var(--shadow-soft); border: 1px solid rgba(201, 160, 80, 0.1); }
.philosophy-section__quote { font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold); margin-bottom: 2rem; letter-spacing: 0.1em; }
.philosophy-section__text { font-size: 0.95rem; color: var(--text-medium); line-height: 2.2; }

/* ---------- Policy Page ---------- */
.policy-section { padding: 6rem 0; background: var(--white); }
.policy-section--alt { background: var(--bg-blush); }
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-intro { font-size: 0.95rem; line-height: 1.9; color: var(--text-medium); margin-bottom: 3rem; padding: 2rem; background: var(--bg-cream); border-radius: 8px; }
.policy-block { margin-bottom: 3rem; }
.policy-block__title { font-size: 1.1rem; font-weight: 500; color: var(--text-dark); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(201, 160, 80, 0.2); }
.policy-block__text { font-size: 0.95rem; line-height: 1.9; color: var(--text-medium); }
.policy-block__list { list-style: none; padding: 0; margin: 1rem 0; }
.policy-block__list li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; font-size: 0.95rem; line-height: 1.9; color: var(--text-medium); }
.policy-block__list li::before { content: '・'; position: absolute; left: 0; color: var(--gold); }
.policy-block__note { font-size: 0.9rem; color: var(--text-light); margin-top: 1rem; }
.policy-link { margin-top: 2rem; padding: 1.5rem; background: var(--bg-cream); border-radius: 8px; text-align: center; }
.policy-link__text { font-size: 0.95rem; color: var(--text-medium); margin-bottom: 0.5rem; }
.policy-link a { color: var(--gold); text-decoration: none; }
.policy-link a:hover { text-decoration: underline; }

/* ---------- Auth Overlay - Hide Content Until Verified ---------- */
body.auth-required main > *:not(.auth-page) { display: none !important; }
body.auth-required .pickup, body.auth-required .new-face, body.auth-required footer { display: none !important; }
body.authenticated .auth-page { display: none !important; }

/* ---------- Lady Card - Full Click Area ---------- */
.lady-card { position: relative; cursor: pointer; transition: var(--transition); }
.lady-card:hover { transform: translateY(-5px); }
.lady-card__fulllink { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; text-decoration: none; }
.lady-card__link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-top: 1rem; pointer-events: none; }
.lady-card__link svg { width: 16px; height: 16px; transition: var(--transition); }
.lady-card:hover .lady-card__link svg { transform: translateX(4px); }

/* ---------- Fixed Pages Responsive ---------- */
@media (max-width: 768px) {
  .concept-section { padding: 4rem 1.5rem; }
  .concept-block__title { font-size: 1.3rem; }
  .concept-block__text { font-size: 0.95rem; line-height: 2.2; }
  .faq-section { padding: 3rem 1rem; }
  .faq-question { padding: 1.2rem 1.5rem; }
  .faq-question__text { font-size: 0.95rem; }
  .faq-answer__inner { padding: 0 1.5rem 1.2rem; font-size: 0.9rem; }
  .cta-simple__buttons { flex-direction: column; align-items: center; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr; }
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { border-bottom: none; padding-bottom: 0.5rem; }
  .info-table td { padding-top: 0.5rem; padding-bottom: 1.5rem; }
  .reserve-methods { grid-template-columns: 1fr; }
  .flow-steps { flex-direction: column; gap: 2rem; }
  .flow-steps::before { display: none; }
  .flow-steps--5 .flow-step, .flow-steps--4 .flow-step { flex: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .form-section { padding: 2rem 1.5rem; }
  .style-grid, .env-grid, .apply-methods { grid-template-columns: 1fr; }
  .apply-form { padding: 2rem 1.5rem; }
  .info-table__row { flex-direction: column; }
  .info-table__label { width: 100%; padding: 1rem 1.25rem; }
  .info-table__value { padding: 1rem 1.25rem; }
  .brand-list { grid-template-columns: 1fr; }
  .philosophy-section { padding: 2rem 1.5rem; }
  .philosophy-section__quote { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================
   GUIDE ARTICLES STYLES
   ============================================ */

/* ---------- Filter Tabs (Wrap) ---------- */
.filter-tabs--wrap {
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tab__icon {
  margin-right: 0.3rem;
}

/* ---------- Articles Grid ---------- */
.guide-articles {
  padding: 4rem 0;
  background: var(--bg-cream);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.articles-grid--small {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ---------- Article Card ---------- */
.article-card {
  display: block;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.article-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.article-card:hover .article-card__image img {
  transform: scale(1.05);
}

.article-card__content {
  padding: 1.5rem;
}

.article-card__title {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__link {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

.article-card--small .article-card__content {
  padding: 1rem;
}

.article-card--small .article-card__title {
  font-size: 0.95rem;
}

/* ---------- No Articles ---------- */
.no-articles {
  text-align: center;
  padding: 4rem 2rem;
}

.no-articles p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* ---------- Related Categories ---------- */
.related-categories {
  padding: 4rem 0;
  background: var(--white);
}

/* ---------- Article Content ---------- */
.article-content {
  padding: 4rem 0;
  background: var(--white);
}

.container--narrow {
  max-width: 800px;
}

.article-body {
  font-size: 1.05rem;
  line-height: 2;
}

.article-body h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  color: var(--navy);
}

.article-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--navy);
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.75rem;
}

.article-body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--bg-cream);
  border-left: 4px solid var(--gold);
  font-style: italic;
}

.article-body a {
  color: var(--gold-dark);
  text-decoration: underline;
}

.article-body a:hover {
  color: var(--gold);
}

.article-body hr {
  margin: 2.5rem 0;
  border: none;
  border-top: 1px solid #eee;
}

.internal-link {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  background: var(--bg-cream);
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
}

.internal-link::before {
  content: '📖';
  margin-right: 0.4rem;
}

/* ---------- Article Footer ---------- */
.article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.article-tags {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.article-tags__label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.article-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background: var(--bg-cream);
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
}

.article-tag:hover {
  background: var(--gold);
  color: var(--white);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.article-share__label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.article-share__buttons {
  display: flex;
  gap: 0.5rem;
}

.article-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.article-share__btn--twitter {
  background: #000;
  color: var(--white);
}

.article-share__btn--twitter:hover {
  background: #333;
}

.article-share__btn--line {
  background: #06C755;
  color: var(--white);
}

.article-share__btn--line:hover {
  background: #05B04A;
}

/* ---------- Related Articles ---------- */
.related-articles {
  padding: 4rem 0;
  background: var(--bg-cream);
}

/* ---------- Hero Variations ---------- */
.hero--article .hero__title--article {
  font-size: 2rem;
  line-height: 1.4;
}

.hero__category {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background: rgba(200, 168, 89, 0.9);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--white);
}

.hero__meta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero__meta-sep {
  margin: 0 0.5rem;
}

.hero__overlay--dark {
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero__title-icon {
  margin-right: 0.5rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 4rem 0;
  background: var(--navy);
}

.cta-box {
  text-align: center;
  color: var(--white);
}

.cta-box__title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.cta-box__text {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-box__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Guide Articles Responsive ---------- */
@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .articles-grid--small {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .articles-grid--small {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero--article .hero__title--article {
    font-size: 1.5rem;
  }
  .article-body h2 {
    font-size: 1.3rem;
  }
  .article-body h3 {
    font-size: 1.1rem;
  }
  .filter-tabs--wrap {
    gap: 0.5rem;
  }
  .filter-tab {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .articles-grid--small {
    grid-template-columns: 1fr;
  }
  .cta-box__buttons {
    flex-direction: column;
  }
}
