/* ============================================================
   CSS Design System - Luxe Hair Salon
   ============================================================ */
:root {
  /* Colors */
  --color-primary: #A8BFA0;
  --color-primary-dark: #7A9E75;
  --color-primary-light: #D4E4D0;
  --color-accent: #C9A96E;
  --color-accent-dark: #A88548;
  --color-cta: #A8BFA0;
  --color-cta-hover: #C9A96E;
  --color-bg: #FFFFFF;
  --color-bg-soft: #F7F9F6;
  --color-bg-green: #EDF3EB;
  --color-text: #333333;
  --color-text-muted: #888888;
  --color-text-light: #AAAAAA;

  /* RGB for rgba() */
  --color-primary-rgb: 168, 191, 160;
  --color-accent-rgb: 201, 169, 110;
  --color-cta-rgb: 168, 191, 160;

  /* Fonts */
  --font-heading: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --font-en: "Cormorant Garamond", "Georgia", serif;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 4px 20px rgba(168, 191, 160, 0.45);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 1100px;
  --header-height: 80px;

  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-smooth: all 0.4s cubic-bezier(0.2, 1, 0.4, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
  background-color: var(--color-bg);
  opacity: 0;
  animation: pageIn 0.6s ease 0.1s forwards;
}

@keyframes pageIn {
  to { opacity: 1; }
}

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

ul { list-style: none; }

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h3 { font-size: clamp(1.0625rem, 2vw, 1.25rem); }

.gradient-text {
  background: linear-gradient(135deg, #A8BFA0 0%, #C9A96E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.section {
  padding-block: var(--space-4xl);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-label {
  font-family: var(--font-en);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 300;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  display: block;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text);
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-pill);
}

.section-sub {
  margin-top: var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  min-height: 48px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(var(--color-cta-rgb), 0.30);
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--color-accent-rgb), 0.45);
}

.btn-cta--lg {
  padding: 18px 40px;
  font-size: 1rem;
  min-height: 56px;
}

.btn-cta--sm {
  padding: 10px 24px;
  font-size: 0.875rem;
  min-height: 42px;
}

.btn-cta--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-cta--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-cta--outline-dark {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-primary);
}

.btn-cta--outline-dark:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 12px 28px;
  min-height: 48px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-primary-dark);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary-dark);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 2px;
  transition: var(--transition-base);
}

.btn-text-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  gap: var(--space-sm);
}

/* ============================================================
   Animations
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.2, 1, 0.4, 1) var(--delay, 0s),
              transform 0.7s cubic-bezier(0.2, 1, 0.4, 1) var(--delay, 0s);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.2, 1, 0.4, 1) var(--delay, 0s),
              transform 0.7s cubic-bezier(0.2, 1, 0.4, 1) var(--delay, 0s);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.2, 1, 0.4, 1) var(--delay, 0s),
              transform 0.7s cubic-bezier(0.2, 1, 0.4, 1) var(--delay, 0s);
}

.fade-in.is-visible,
.fade-in-left.is-visible,
.fade-in-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
   Header
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 191, 160, 0.20);
  transition: var(--transition-base);
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-lg);
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-nav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 14px;
  position: relative;
  text-decoration: none;
}

.header-nav li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-primary-dark);
  transition: width 0.3s ease, left 0.3s ease;
}

.header-nav li a:hover::after {
  width: calc(100% - 28px);
  left: 14px;
}

.nav-en {
  font-family: var(--font-en);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text);
  line-height: 1.2;
  display: block;
}

.nav-ja {
  font-size: 0.625rem;
  color: var(--color-text-muted);
  line-height: 1;
  display: block;
  margin-top: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.header-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
  white-space: nowrap;
  transition: var(--transition-base);
}

.header-tel:hover {
  color: var(--color-primary-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition-base);
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.10) 50%,
    rgba(0,0,0,0.50) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-3xl) var(--space-3xl);
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
}

.hero-label {
  font-family: var(--font-en);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 5vw, 3.25rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #c8e0c3 0%, #e8c98c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.90);
  line-height: 2;
  margin-bottom: var(--space-2xl);
  letter-spacing: 0.08em;
}

.hero-btns {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-en);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
}

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

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

.slider-dots {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-3xl);
  z-index: 2;
  display: flex;
  gap: var(--space-sm);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-base);
  padding: 0;
}

.dot.active {
  background: #fff;
  width: 24px;
}

/* ============================================================
   Wave Dividers
   ============================================================ */
.wave-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
}

.wave-divider--top {
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, var(--color-bg) 100%);
  margin-top: -80px;
  z-index: 2;
}

.wave-divider--green {
  background-color: var(--color-bg-green);
}

/* ============================================================
   Strengths
   ============================================================ */
.strengths {
  background: var(--color-bg);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.strength-card {
  background: #fff;
  border: 1px solid rgba(168, 191, 160, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.strength-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}

.strength-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-bg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--color-primary-dark);
  transition: var(--transition-smooth);
}

.strength-card:hover .strength-icon {
  background: var(--color-primary);
  color: #fff;
}

.strength-card h3 {
  font-size: 1.0625rem;
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.strength-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* ============================================================
   Pick Up
   ============================================================ */
.pickup {
  position: relative;
  background: var(--color-bg-green);
  overflow: hidden;
}

.pickup-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4xl);
  margin-bottom: var(--space-4xl);
}

.pickup-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.pickup-item--reverse {
  direction: rtl;
}

.pickup-item--reverse > * {
  direction: ltr;
}

.pickup-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}

.pickup-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.4, 1);
}

.pickup-img-wrap:hover img {
  transform: scale(1.05);
}

.pickup-body {
  padding: var(--space-xl) 0;
}

.pickup-label {
  font-family: var(--font-en);
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-sm);
}

.pickup-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.pickup-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 2;
  margin-bottom: var(--space-xl);
}

/* First Visit */
.first-visit {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(168, 191, 160, 0.25);
}

.first-visit-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.first-visit-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 2;
  margin-bottom: var(--space-xl);
}

.first-visit-coupon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.coupon-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--color-accent-dark);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================================
   CTA Band
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #f0f5ef 0%, #f7f0e6 100%);
  border-top: 1px solid rgba(168, 191, 160, 0.25);
  border-bottom: 1px solid rgba(168, 191, 160, 0.25);
  padding: var(--space-3xl) var(--space-md);
  text-align: center;
}

.cta-band-label {
  font-family: var(--font-en);
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-sm);
}

.cta-band-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.cta-band-sub {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-xl);
}

.cta-band-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  background: var(--color-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3/4;
}

.gallery-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.4, 1);
}

.gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.05);
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================================
   Information
   ============================================================ */
.info-section {
  background: var(--color-bg-soft);
}

.info-dl {
  border-top: 1px solid rgba(168, 191, 160, 0.30);
}

.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-md);
  align-items: baseline;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(168, 191, 160, 0.20);
}

.info-row dt {
  font-family: var(--font-en);
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.info-row dd a {
  color: var(--color-text);
  transition: var(--transition-base);
}

.info-row dd a:hover {
  color: var(--color-primary-dark);
}

.info-more {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ============================================================
   Blog
   ============================================================ */
.blog-section {
  background: var(--color-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(168, 191, 160, 0.20);
  transition: var(--transition-smooth);
}

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

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-bg-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-md);
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.4, 1);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.03);
}

.blog-card-img--placeholder {
  background: linear-gradient(135deg, var(--color-primary-light), rgba(201, 169, 110, 0.15));
}

.blog-placeholder-inner {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-primary-dark);
  opacity: 0.7;
}

.blog-card-body {
  padding: var(--space-lg);
}

.blog-date {
  font-family: var(--font-en);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: var(--space-sm);
}

.blog-title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
}

.blog-more {
  text-align: center;
}

/* ============================================================
   Access
   ============================================================ */
.access-section {
  background: var(--color-bg-soft);
}

.access-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.access-map iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.access-dl {
  border-top: 1px solid rgba(168, 191, 160, 0.30);
  margin-bottom: var(--space-xl);
}

.access-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(168, 191, 160, 0.20);
  font-size: 0.9375rem;
}

.access-item dt {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  padding-top: 2px;
  white-space: nowrap;
}

.access-item dd a {
  color: var(--color-primary-dark);
  transition: var(--transition-base);
}

.access-item dd a:hover {
  color: var(--color-accent);
}

.access-sns {
  display: flex;
  gap: var(--space-md);
}

.access-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-green);
  color: var(--color-primary-dark);
  transition: var(--transition-smooth);
}

.access-sns a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   Footer CTA
   ============================================================ */
.footer-cta {
  background: linear-gradient(135deg, #A8BFA0 0%, #7A9E75 100%);
  padding: var(--space-4xl) var(--space-md);
  text-align: center;
  color: #fff;
}

.footer-cta-label {
  font-family: var(--font-en);
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-sm);
}

.footer-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: var(--space-md);
}

.footer-cta-sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  margin-bottom: var(--space-2xl);
}

.footer-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.footer-cta .btn-cta {
  background: #fff;
  color: var(--color-primary-dark);
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.footer-cta .btn-cta:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.20);
}

.footer-cta .btn-cta--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  box-shadow: none;
}

.footer-cta .btn-cta--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  box-shadow: none;
}

.footer-cta-coupon {
  margin-top: var(--space-md);
}

.coupon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: var(--transition-base);
}

.coupon-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}

/* ============================================================
   Footer
   ============================================================ */
#site-footer {
  background: #111111;
  color: #fff;
  padding-top: var(--space-3xl);
}

.footer-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
  padding-bottom: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

.footer-logo img {
  opacity: 0.85;
}

.footer-address {
  font-size: 0.8125rem;
  color: #aaa;
  line-height: 1.8;
}

.footer-tel a {
  font-family: var(--font-en);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: #fff;
  transition: var(--transition-base);
}

.footer-tel a:hover {
  color: var(--color-primary-light);
}

.footer-sns {
  display: flex;
  gap: var(--space-md);
}

.footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  transition: var(--transition-smooth);
}

.footer-sns a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
}

.footer-nav a {
  font-size: 0.8125rem;
  color: #aaa;
  transition: var(--transition-base);
  letter-spacing: 0.04em;
}

.footer-nav a:hover {
  color: var(--color-primary-light);
}

.footer-copyright {
  background: #0a0a0a;
  padding: var(--space-md) var(--space-lg);
  text-align: center;
}

.footer-copyright p {
  font-family: var(--font-en);
  font-size: 0.8125rem;
  color: #666;
  letter-spacing: 0.08em;
}

/* ============================================================
   Floating CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.floating-cta a {
  display: block;
  width: 72px;
  opacity: 0.92;
  transition: var(--transition-smooth);
}

.floating-cta a:hover {
  opacity: 1;
  transform: translateX(-4px);
}

.floating-cta img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

/* ============================================================
   Page Top
   ============================================================ */
.page-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 99;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.page-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .header-nav li a {
    padding: 8px 10px;
  }

  .nav-en {
    font-size: 0.875rem;
  }

  .pickup-item {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .pickup-item--reverse {
    direction: ltr;
  }

  .access-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .header-logo img {
    height: 36px;
  }

  .header-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-xl) var(--space-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }

  .header-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .header-nav li a {
    flex-direction: row;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(168, 191, 160, 0.20);
    width: 100%;
  }

  .nav-en {
    font-size: 1rem;
  }

  .nav-ja {
    font-size: 0.75rem;
    margin-top: 0;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-content {
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-3xl);
    align-items: center;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .slider-dots {
    right: 50%;
    transform: translateX(50%);
    bottom: var(--space-lg);
  }

  .hero-scroll-hint {
    display: none;
  }

  /* Sections */
  .section {
    padding-block: var(--space-3xl);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid .gallery-item:last-child {
    grid-column: 1 / -1;
  }

  /* Access */
  .access-map iframe {
    height: 280px;
  }

  /* Floating */
  .floating-cta {
    top: auto;
    bottom: var(--space-md);
    right: var(--space-md);
    transform: none;
    flex-direction: row;
  }

  .floating-cta a {
    width: 56px;
    opacity: 1;
  }

  .floating-cta img {
    border-radius: var(--radius-md);
  }

  /* Page top */
  .page-top {
    bottom: var(--space-3xl);
    right: var(--space-md);
    width: 44px;
    height: 44px;
  }

  /* Info row */
  .info-row {
    grid-template-columns: 110px 1fr;
    font-size: 0.875rem;
  }

  /* First visit */
  .first-visit {
    padding: var(--space-xl);
  }

  .first-visit-coupon {
    flex-direction: column;
    gap: var(--space-md);
  }

  /* CTA band */
  .cta-band-btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }

  /* Footer CTA btns */
  .footer-cta-btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }

  /* Gallery cta */
  .gallery-cta {
    flex-direction: column;
    align-items: center;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  /* Hero btns */
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
}

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

  .gallery-item {
    aspect-ratio: 3/2;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
  }
}