/*
Theme Name: THE LAULA BEAUTY
Theme URI: https://thelaula-beauty.com
Author: THE LAULA BEAUTY
Author URI: https://thelaula-beauty.com
Description: 青森市の女性専用痩身ダイエット専門サロン THE LAULA BEAUTY のオリジナルWordPressテーマ
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thelaula
Tags: one-column, custom-logo, custom-menu, featured-images, theme-options
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --color-main: #2C3E50;
  --color-accent: #C9A962;
  --color-accent-light: #D4B876;
  --color-sub: #A89F91;
  --color-base: #FAF9F7;
  --color-base-alt: #F0EFED;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #FFFFFF;
  --color-gold-dark: #8B7355;
  
  --font-serif: 'Noto Serif JP', 'Yu Mincho', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-display: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-heading: 'Montserrat', 'Noto Sans JP', sans-serif;
  
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-base);
  line-height: 1.8;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-main);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}

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

.section {
  padding: 120px 0;
}

.section-alt {
  background-color: var(--color-base-alt);
}

.section-dark {
  background-color: var(--color-main);
  color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-main);
}

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

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 24px auto 0;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-main);
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 0.15em;
  opacity: 0.7;
  display: block;
}

.header:not(.scrolled) .logo {
  color: var(--color-white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  color: var(--color-main);
}

.header:not(.scrolled) .nav-link {
  color: var(--color-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-main);
  border: 1px solid var(--color-main);
}

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

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

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

.btn-large {
  padding: 18px 48px;
  font-size: 14px;
}

/* ==========================================================================
   Mobile Menu Toggle
   ========================================================================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-main);
  transition: var(--transition-base);
}

.header:not(.scrolled) .menu-toggle span {
  background: var(--color-white);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3a4f63 0%, #2C3E50 50%, #1a2530 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 98, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 98, 0.1) 0%, transparent 40%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: 0 24px;
}

.hero-award {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 169, 98, 0.2);
  border: 1px solid rgba(201, 169, 98, 0.5);
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.hero-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.4;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-title-accent {
  color: var(--color-accent);
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 2;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto 20px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.hero-feature {
  font-size: 13px;
  opacity: 0.85;
  position: relative;
  padding-left: 16px;
}

.hero-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--color-accent);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  opacity: 0.6;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-white), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
  padding: 140px 0;
  text-align: center;
}

.about-content {
  max-width: 850px;
  margin: 0 auto;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--color-main);
  margin-bottom: 48px;
}

.about-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-main);
  margin-bottom: 32px;
  line-height: 2;
}

.about-text {
  font-size: 15px;
  line-height: 2.4;
  color: var(--color-text-light);
}

.about-highlights {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.about-highlight {
  text-align: center;
}

.about-highlight-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
}

.about-highlight-unit {
  font-size: 18px;
}

.about-highlight-label {
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 8px;
}

/* ==========================================================================
   Philosophy Section
   ========================================================================== */
.philosophy {
  padding: 120px 0;
}

.philosophy-content {
  text-align: center;
}

.philosophy-intro {
  font-size: 16px;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 80px;
}

.philosophy-brand {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.philosophy-item {
  flex: 1;
  padding: 40px 16px;
  text-align: center;
  position: relative;
}

.philosophy-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-sub), transparent);
}

.philosophy-item:last-child::after {
  display: none;
}

.philosophy-letter {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  font-style: italic;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 20px;
}

.philosophy-word {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-main);
  margin-bottom: 12px;
}

.philosophy-meaning {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

.philosophy-tagline {
  margin-top: 60px;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--color-sub);
  letter-spacing: 0.1em;
}

/* ==========================================================================
   Message Section
   ========================================================================== */
.message {
  padding: 100px 0;
  background: linear-gradient(135deg, #2C3E50 0%, #1a2530 100%);
  position: relative;
  overflow: hidden;
}

.message::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 40%);
}

.message-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-white);
}

.message-text {
  font-size: 15px;
  line-height: 2.4;
  opacity: 0.95;
}

.message-text strong {
  color: var(--color-accent);
  font-weight: 500;
}

.message-highlight {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-accent);
  margin: 16px 0;
}

.message-signature {
  margin-top: 40px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* ==========================================================================
   Concerns Section
   ========================================================================== */
.concerns {
  padding: 100px 0;
}

.concerns-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.concerns-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 48px;
  line-height: 1.8;
}

.concerns-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.concerns-item {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--color-base-alt);
  border-radius: 30px;
  font-size: 14px;
  color: var(--color-text);
}

.concerns-cta {
  font-size: 18px;
  color: var(--color-main);
  font-weight: 500;
}

/* ==========================================================================
   Method Section
   ========================================================================== */
.method {
  padding: 120px 0;
  background: var(--color-base-alt);
}

.method-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.method-intro-text {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-light);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.method-card {
  background: var(--color-white);
  border-radius: 8px;
  text-align: center;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(44, 62, 80, 0.1);
}

.method-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d4d4d4 0%, #a0a0a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.1em;
  background-size: cover;
  background-position: center;
}

.method-content {
  padding: 32px 28px 36px;
}

.method-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 8px;
}

.method-subtitle {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sub);
  margin-bottom: 20px;
}

.method-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-light);
  text-align: left;
}

/* ==========================================================================
   Results Section
   ========================================================================== */
.results {
  padding: 120px 0;
  background: var(--color-base-alt);
}

.results-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.results-intro-text {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-light);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.result-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-base);
}

.result-card:hover {
  box-shadow: 0 15px 40px rgba(44, 62, 80, 0.1);
}

.result-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d4d4d4 0%, #a0a0a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.1em;
  position: relative;
  background-size: cover;
  background-position: center;
}

.result-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 500;
  border-radius: 4px;
}

.result-content {
  padding: 24px;
}

.result-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-main);
  margin-bottom: 12px;
}

.result-detail {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.result-note {
  font-size: 11px;
  color: var(--color-sub);
  margin-top: 12px;
}

/* ==========================================================================
   Voice Section - Carousel
   ========================================================================== */
.voice {
  padding: 120px 0;
}

.voice-carousel {
  position: relative;
  margin: 0 -20px;
  padding: 0 20px;
}

.voice-swiper {
  overflow: hidden;
  padding: 10px 0;
}

.voice-swiper .swiper-wrapper {
  display: flex;
}

.voice-swiper .swiper-slide {
  width: 380px;
  height: auto;
  flex-shrink: 0;
}

.voice-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--color-base-alt);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.voice-result {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201, 169, 98, 0.15);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.voice-text {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 24px;
  flex: 1;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--color-base-alt);
  margin-top: auto;
}

.voice-avatar {
  width: 48px;
  height: 48px;
  background: var(--color-base-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-sub);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.voice-meta {
  font-size: 13px;
  color: var(--color-text-light);
}

.voice-meta strong {
  display: block;
  color: var(--color-main);
  font-weight: 500;
  margin-bottom: 4px;
}

/* Voice Navigation */
.voice-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.voice-nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-main);
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.voice-nav-btn:hover {
  background: var(--color-main);
}

.voice-nav-btn span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  transition: var(--transition-base);
}

.voice-nav-btn:hover span {
  border-color: var(--color-white);
}

.voice-prev span {
  transform: rotate(135deg);
  margin-left: 4px;
}

.voice-next span {
  transform: rotate(-45deg);
  margin-right: 4px;
}

.voice-pagination {
  display: flex;
  gap: 8px;
}

.voice-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--color-sub);
  opacity: 0.3;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-base);
}

.voice-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-accent);
}

.voice-more {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================================================
   Point Section
   ========================================================================== */
.point {
  padding: 100px 0;
  background: var(--color-base-alt);
}

.point-content {
  max-width: 900px;
  margin: 0 auto;
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.point-item {
  padding: 32px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.point-item:nth-child(odd) {
  border-right: 1px solid rgba(0,0,0,0.06);
}

.point-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.point-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--color-accent);
  flex-shrink: 0;
  opacity: 0.7;
}

.point-text-wrap {
  flex: 1;
}

.point-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-main);
  margin-bottom: 6px;
}

.point-text {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.news {
  padding: 100px 0;
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition-base);
}

.news-item:first-child {
  padding-top: 0;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item:hover {
  opacity: 0.7;
}

.news-date {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-sub);
  flex-shrink: 0;
  width: 100px;
}

.news-category {
  display: inline-block;
  padding: 2px 10px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 10px;
  letter-spacing: 0.05em;
  margin-right: 16px;
  flex-shrink: 0;
}

.news-title {
  font-size: 14px;
  color: var(--color-text);
  flex: 1;
}

.news-more {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================================================
   Column Section
   ========================================================================== */
.column {
  padding: 100px 0;
  background: var(--color-base-alt);
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.column-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-base);
}

.column-card:hover {
  box-shadow: 0 15px 40px rgba(44, 62, 80, 0.1);
  transform: translateY(-4px);
}

.column-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #d4d4d4 0%, #a0a0a0 100%);
  background-size: cover;
  background-position: center;
}

.column-content {
  padding: 24px;
}

.column-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.column-date {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--color-sub);
}

.column-cat {
  font-size: 10px;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

.column-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-main);
  line-height: 1.6;
  margin-bottom: 12px;
}

.column-excerpt {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.column-more {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================================================
   Flow Section
   ========================================================================== */
.flow {
  padding: 120px 0;
}

.flow-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-light));
}

.flow-step {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}

.flow-step:last-child {
  margin-bottom: 0;
}

.flow-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #a88a52 100%);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.flow-content {
  background: var(--color-base-alt);
  padding: 32px;
  border-radius: 8px;
  flex: 1;
}

.flow-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 12px;
}

.flow-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
  padding: 120px 0;
  background: var(--color-base-alt);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-main);
  transition: var(--transition-base);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question::before {
  content: 'Q.';
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-accent);
  margin-right: 12px;
  flex-shrink: 0;
}

.faq-question-text {
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-main);
  transition: var(--transition-base);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px 56px;
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ==========================================================================
   Staff Section
   ========================================================================== */
.staff {
  padding: 120px 0;
}

.staff-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.staff-image {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #d4d4d4 0%, #a0a0a0 100%);
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.staff-info h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 24px;
}

.staff-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.staff-credential {
  padding: 6px 16px;
  background: var(--color-base-alt);
  border-radius: 4px;
  font-size: 12px;
  color: var(--color-text);
}

.staff-text {
  font-size: 14px;
  line-height: 2.2;
  color: var(--color-text-light);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #2C3E50 0%, #1a2530 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 70%, rgba(201, 169, 98, 0.15) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-info {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-info-item {
  text-align: center;
}

.cta-info-text {
  text-align: center;
}

.cta-info-label {
  display: block;
  font-size: 11px;
  opacity: 0.7;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cta-info-value {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.05em;
}

.cta-info-value:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   Access Section
   ========================================================================== */
.access {
  padding: 120px 0;
  background: var(--color-base-alt);
}

.access-content {
  max-width: 800px;
  margin: 0 auto;
}

.access-map {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-sub);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.access-info {
  text-align: center;
}

.access-info h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 8px;
}

.access-info-sub {
  font-size: 13px;
  color: var(--color-sub);
  margin-bottom: 40px;
}

.access-details {
  max-width: 500px;
  margin: 0 auto 40px;
  text-align: left;
}

.access-row {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
}

.access-label {
  width: 100px;
  color: var(--color-sub);
  flex-shrink: 0;
  font-weight: 500;
}

.access-value {
  color: var(--color-text);
  line-height: 1.7;
}

.access-button {
  text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--color-main);
  color: var(--color-white);
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-text {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.5;
}

.footer-nav-list li {
  margin-bottom: 12px;
}

.footer-nav-list a {
  font-size: 14px;
  opacity: 0.8;
  transition: var(--transition-base);
}

.footer-nav-list a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer-social-list li {
  margin-bottom: 12px;
}

.footer-social-list a {
  font-size: 14px;
  opacity: 0.8;
  transition: var(--transition-base);
}

.footer-social-list a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.5;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-base);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  cursor: pointer;
  font-size: 28px;
  color: var(--color-main);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-list {
  text-align: center;
}

.mobile-menu-list li {
  margin-bottom: 24px;
}

.mobile-menu-list a {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--color-main);
}

/* ==========================================================================
   Floating Elements
   ========================================================================== */
.floating-reserve {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 998;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.floating-reserve.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-reserve .btn {
  width: 100%;
  padding: 18px;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
}

/* ==========================================================================
   Page Top Button
   ========================================================================== */
.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: var(--color-main);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 997;
}

.pagetop.visible {
  opacity: 1;
  visibility: visible;
}

.pagetop:hover {
  background: var(--color-accent);
}

.pagetop-text {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   Page Templates
   ========================================================================== */
.page-header {
  padding: 180px 0 80px;
  background: var(--color-main);
  text-align: center;
  color: var(--color-white);
}

.page-header-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.page-header-sub {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

.page-content {
  padding: 80px 0;
}

.page-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Single Post */
.single-header {
  padding: 180px 0 60px;
  background: var(--color-main);
  text-align: center;
  color: var(--color-white);
}

.single-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.single-date {
  font-family: var(--font-heading);
  font-size: 12px;
  opacity: 0.7;
}

.single-category {
  padding: 4px 12px;
  background: var(--color-accent);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.single-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.single-content {
  padding: 80px 0;
}

.single-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.single-content-inner h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-main);
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-base-alt);
}

.single-content-inner h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-main);
  margin: 32px 0 16px;
}

.single-content-inner p {
  margin-bottom: 24px;
  line-height: 2;
}

.single-content-inner img {
  border-radius: 8px;
  margin: 32px 0;
}

.single-content-inner ul,
.single-content-inner ol {
  margin: 24px 0;
  padding-left: 24px;
}

.single-content-inner li {
  margin-bottom: 8px;
  list-style: disc;
}

.single-content-inner ol li {
  list-style: decimal;
}

.single-thumbnail {
  max-width: 1000px;
  margin: -60px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.single-thumbnail img {
  width: 100%;
  border-radius: 8px;
}

/* Archive */
.archive-content {
  padding: 80px 0;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.archive-grid .voice-card {
  height: auto;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-base-alt);
  font-family: var(--font-heading);
  font-size: 13px;
  transition: var(--transition-base);
}

.pagination a:hover {
  background: var(--color-main);
  color: var(--color-white);
  border-color: var(--color-main);
}

.pagination .current {
  background: var(--color-main);
  color: var(--color-white);
  border-color: var(--color-main);
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */
.wp-block-image {
  margin: 32px 0;
}

.wp-block-image img {
  border-radius: 8px;
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 24px;
}

.alignright {
  float: right;
  margin-left: 24px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }
  
  .method-grid,
  .results-grid,
  .voice-grid,
  .column-grid,
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero {
    min-height: 700px;
  }
  
  .hero-features {
    gap: 12px;
  }
  
  .hero-feature {
    font-size: 11px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-scroll {
    display: none;
  }
  
  .about-highlights {
    gap: 32px;
  }
  
  .philosophy-brand {
    flex-wrap: wrap;
  }
  
  .philosophy-item {
    flex: 0 0 calc(50% - 1px);
    padding: 28px 12px;
  }
  
  .philosophy-item::after {
    display: none;
  }
  
  .philosophy-letter {
    font-size: 42px;
  }
  
  .philosophy-tagline {
    font-size: 16px;
    margin-top: 40px;
  }
  
  .message-text {
    font-size: 14px;
    line-height: 2.2;
  }
  
  .method-grid,
  .results-grid,
  .column-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }
  
  /* Voice Carousel Responsive */
  .voice-carousel {
    margin: 0 -16px;
    padding: 0 16px;
  }
  
  .voice-swiper .swiper-slide {
    width: 300px;
  }
  
  .voice-card {
    padding: 28px;
  }
  
  .voice-nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .point-grid {
    grid-template-columns: 1fr;
  }
  
  .point-item {
    padding: 24px 20px;
  }
  
  .point-item:nth-child(odd) {
    border-right: none;
  }
  
  .point-item:nth-last-child(1) {
    border-bottom: none;
  }
  
  .point-item:nth-last-child(2) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  
  .staff-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-info {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-nav {
    justify-content: center;
  }
  
  .footer-social-list {
    display: flex;
    justify-content: center;
    gap: 24px;
  }
  
  .footer-social-list li {
    margin-bottom: 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .floating-reserve {
    display: block;
  }
  
  .pagetop {
    bottom: 90px;
  }
  
  .news-item {
    flex-wrap: wrap;
  }
  
  .news-date {
    width: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .hero-award {
    font-size: 10px;
    padding: 6px 14px;
    word-break: keep-all;
    line-height: 1.6;
  }
  
  .hero-award span {
    display: inline-block;
  }
  
  .philosophy-brand {
    flex-direction: column;
    gap: 0;
  }
  
  .philosophy-item {
    flex: none;
    width: 100%;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .philosophy-item:last-child {
    border-bottom: none;
  }
  
  .philosophy-letter {
    font-size: 36px;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 50px;
  }
  
  .philosophy-item-content {
    flex: 1;
  }
  
  .philosophy-word {
    margin-bottom: 4px;
  }
  
  .philosophy-tagline {
    font-size: 14px;
  }
  
  .message {
    padding: 60px 0;
  }
  
  .message-text {
    font-size: 13px;
  }
  
  .point-grid {
    grid-template-columns: 1fr;
  }
  
  .point-item {
    padding: 24px 16px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 32px;
  }
  
  .concerns-list {
    gap: 10px;
  }
  
  .concerns-item {
    padding: 10px 16px;
    font-size: 12px;
  }
  
  .flow-step {
    gap: 20px;
  }
  
  .flow-number {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  
  .flow-content {
    padding: 24px;
  }
}
