/*
Theme Name: Magical Facial Academy
Theme URI: https://example.com
Description: マジカルフェイシャルアカデミー専用のWordPressテーマ。明朝体×薄いピンク赤基調のミニマルで上品なデザイン。
Author: Magical Facial Academy
Author URI: https://example.com
Version: 1.1.2
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: magical-facial-academy
Domain Path: /languages
*/

/* =========================================
   RESET & BASE
========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
  color: #5C3A3A;
  background-color: #FCF3F0;
  letter-spacing: 0.08em;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1), color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

a:hover {
  opacity: 0.7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.6;
  margin: 0;
}

p {
  margin: 0 0 1.5em;
}

/* =========================================
   HEADER
========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(252, 243, 240, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #E8BFBB;
  transition: background-color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  line-height: 1;
}

.site-branding {
  display: flex;
  align-items: center;
}

.custom-logo {
  max-height: 80px;
  width: auto !important;
  display: block !important;
}

.site-tagline {
  display: none;
}

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

.global-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.global-nav ul a {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #5C3A3A;
  position: relative;
  padding: 4px 0;
}

.global-nav ul a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #C95656;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.global-nav ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background-color: #C95656;
  color: #FFF8F8;
  font-size: 12px;
  letter-spacing: 0.2em;
  border: 1px solid #C95656;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.btn-header:hover {
  background-color: transparent;
  color: #C95656;
}

@media (max-width: 960px) {
  .site-header-inner {
    height: 64px;
    padding: 0 24px;
  }

  .site-logo { font-size: 22px; }

  .global-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FCF3F0;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    padding: 48px 24px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .global-nav.is-open { transform: translateX(0); }

  .global-nav ul {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .global-nav ul a { font-size: 15px; }
}

/* =========================================
   HERO BANNER
========================================= */
.hero-banner {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background-color: #F5D9D6;
  margin-top: 80px;
}

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

.hero-desktop {
  display: block !important;
}

.hero-mobile {
  display: none !important;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .hero-banner {
    height: 350px;
    margin-top: 60px;
  }

  .hero-desktop {
    display: none !important;
  }

  .hero-mobile {
    display: block !important;
  }
}

.hero-banner.is-placeholder {
  background: linear-gradient(135deg, #F5D9D6 0%, #E8BFBB 50%, #D9A9A3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner.is-placeholder::after {
  content: '＜ ビューティーイメージの写真が入ります ＞';
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.3em;
  color: #8B5555;
  font-size: 14px;
  display: none;
}

@media (max-width: 768px) {
  .hero-banner {
    height: 70vh;
    min-height: 420px;
  }
}

/* =========================================
   INTRO SECTION
========================================= */
.intro {
  background-color: #FCF3F0;
  padding: 0;
  text-align: center;
}

.intro-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #C95656;
  line-height: 1;
  margin: 0 0 20px;
}

.intro-subtitle {
  font-size: 13px;
  letter-spacing: 0.4em;
  color: #B08484;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.intro-divider {
  width: 40px;
  height: 1px;
  background-color: #C95656;
  margin: 0 auto 48px;
}

.intro-copy {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 2.6;
  letter-spacing: 0.15em;
  color: #5C3A3A;
  max-width: 720px;
  margin: 0 auto 0;
}

.intro-copy p { margin-bottom: 1.5em; }
.intro-copy p:last-child { margin-bottom: 0; }

.intro-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto 0;
  border-radius: 8px;
  display: block;
}

.intro-cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .intro { padding: 72px 0 80px; }
  .intro-brand { margin-bottom: 16px; }
  .intro-cta { margin-top: 40px; }
}

/* =========================================
   CONTAINER & SECTIONS
========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
  background-color: #FCF3F0;
}

.section-alt {
  background-color: #F5D9D6;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
}

/* =========================================
   AUTHORITY SECTION
========================================= */
.authority-section {
  background-color: #FCF3F0;
  padding: 0 0 100px;
  text-align: center;
}

.authority-content {
  max-width: 1400px;
  margin: 0 auto;
}

.authority-image {
  width: 100%;
  max-width: 1708px;
  height: auto;
  margin: 0 auto 48px;
  border-radius: 8px;
  display: block;
}

.authority-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #B08484;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.authority-title {
  font-family: "Noto Serif JP", serif;
  font-size: 8px;
  font-weight: 300;
  color: #5C3A3A;
  margin: 0 0 1.5em;
  line-height: 2;
}

.authority-subtitle {
  margin-top: 0;
}

.authority-divider {
  width: 40px;
  height: 1px;
  background-color: #C95656;
  margin: 0 auto 48px;
}

.authority-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  margin-bottom: 56px;
}

.stat-item {
  padding: 32px 24px;
  background-color: #F5D9D6;
  border-radius: 4px;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #C95656;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #5C3A3A;
  text-transform: uppercase;
  font-weight: 500;
}

.authority-copy {
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.08em;
  color: #5C3A3A;
  max-width: 700px;
  margin: 0 auto;
}

.authority-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #E8BFBB;
}

.authority-link-item {
  text-align: center;
}

.authority-link-title {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #C95656;
  margin-bottom: 16px;
  font-weight: 500;
}

.authority-link {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #5C3A3A;
  padding: 12px 20px;
  border: 1px solid #E8BFBB;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.authority-link:hover {
  background-color: #C95656;
  color: #FFF8F8;
  border-color: #C95656;
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .authority-section { padding: 72px 0; }
  .authority-image { max-width: 100%; margin-bottom: 32px; }
  .authority-title { font-size: clamp(36px, 6vw, 48px); }
  .authority-stats { gap: 24px; }
  .stat-item { padding: 24px 16px; }
  .stat-number { font-size: 24px; }
  .authority-links { grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
}

/* =========================================
   COURSES SECTION
========================================= */
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #C95656;
  text-align: center;
  margin-bottom: 60px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.course-card {
  background-color: #FFF8F8;
  padding: 60px 48px;
  border: 1px solid #E8BFBB;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201, 86, 86, 0.08);
}

.course-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #C95656;
  margin-bottom: 16px;
}

.course-subtitle {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #D97777;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.course-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #C95656;
  margin-bottom: 32px;
}

.course-price-sub {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #B08484;
  margin-bottom: 32px;
}

.course-divider {
  width: 30px;
  height: 1px;
  background-color: #E8BFBB;
  margin-bottom: 24px;
}

.course-features {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #3E3A35;
}

.course-features li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.course-features li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #C95656;
  font-size: 8px;
}

.course-highlight {
  background-color: #F5DFD9;
  padding: 20px;
  margin: 32px 0;
  border-left: 3px solid #C95656;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #5C3A3A;
}

.course-highlight strong {
  font-weight: 500;
  color: #C95656;
}

.btn-course {
  display: inline-block;
  width: 100%;
  padding: 14px 24px;
  text-align: center;
  background-color: #C95656;
  color: #FFF8F8;
  font-size: 12px;
  letter-spacing: 0.2em;
  border: 1px solid #C95656;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  margin-top: 24px;
}

.btn-course:hover {
  background-color: transparent;
  color: #C95656;
}

@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .course-card {
    padding: 40px 32px;
  }
}

/* =========================================
   FEATURES SECTION
========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  margin-bottom: 0;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background-color: rgba(201, 86, 86, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.feature-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #C95656;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #B08484;
}

/* =========================================
   TESTIMONIALS
========================================= */
.testimonials-section {
  padding: 120px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background-color: #FFF8F8;
  padding: 40px;
  border: 1px solid #E8BFBB;
}

.testimonial-text {
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #5C3A3A;
  margin-bottom: 24px;
}

.testimonial-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #C95656;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #B08484;
  margin-top: 4px;
}

/* Testimonial course type differentiation */
.testimonial-selfcare {
  background-color: #FFF8F8;
  border-left: 4px solid #C95656;
}

.testimonial-trainer {
  background-color: #F5DFD9;
  border-left: 4px solid #D97777;
}

/* =========================================
   CTA SECTION
========================================= */
.cta-section {
  padding: 140px 0;
  text-align: center;
  background-color: #F5D9D6;
}

.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #C95656;
  margin-bottom: 32px;
}

.cta-text {
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.1em;
  color: #5C3A3A;
  max-width: 700px;
  margin: 0 auto 56px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
  padding: 24px 32px;
  background-color: #C95656;
  color: #FFF8F8;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.15em;
  border: 1px solid #C95656;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  max-width: 320px;
  text-align: center;
  font-weight: 400;
}

.btn-cta:hover {
  background-color: #D97777;
  border-color: #D97777;
  transform: translateY(-4px);
}

.btn-experience,
.btn-consultation {
  flex: 1;
  min-width: 280px;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
  background-color: #5C3A3A;
  color: #F5D9D6;
  padding: 80px 0 40px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 40px;
}

.footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.footer-text {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #E8BFBB;
  margin-bottom: 40px;
}

.footer-sns {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(232, 191, 187, 0.3);
}

.footer-sns-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #E8BFBB;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sns-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(201, 86, 86, 0.15);
  border: 1px solid rgba(232, 191, 187, 0.5);
  color: #F5D9D6;
  font-size: 11px;
  letter-spacing: 0.15em;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 4px;
}

.sns-btn span {
  display: block;
  font-weight: 500;
}

.sns-btn:hover {
  background-color: #C95656;
  border-color: #C95656;
  transform: translateY(-4px);
}

/* SNS specific styles can be added here for future customization */

.footer-product {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(232, 191, 187, 0.3);
}

.product-link {
  display: inline-block;
  padding: 20px 32px;
  background-color: rgba(201, 86, 86, 0.1);
  border: 1px solid rgba(232, 191, 187, 0.5);
  border-radius: 4px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-link:hover {
  background-color: #C95656;
  border-color: #C95656;
  transform: translateY(-4px);
}

.product-company {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #E8BFBB;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-name {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #F5D9D6;
  font-weight: 500;
  line-height: 1.6;
}

.product-link:hover .product-company,
.product-link:hover .product-name {
  color: #FFF8F8;
}

/* =========================================
   TRAINERS PAGE
========================================= */
.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #C95656;
  text-align: center;
  margin-bottom: 60px;
  margin-top: 40px;
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.trainer-card {
  background-color: #FFF;
  border: 1px solid rgba(201, 86, 86, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 12px rgba(201, 86, 86, 0.05);
}

.trainer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(201, 86, 86, 0.12);
}

.trainer-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #F5DFD9;
}

.trainer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #F5DFD9;
  color: #B08484;
  font-size: 14px;
}

.trainer-info {
  padding: 24px;
}

.trainer-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #C95656;
  margin: 0 0 16px 0;
}

.trainer-region,
.trainer-specialty {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #5C3A3A;
  margin-bottom: 12px;
}

.trainer-region strong,
.trainer-specialty strong {
  font-weight: 500;
  color: #C95656;
}

.trainer-description {
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #5C3A3A;
  margin-bottom: 20px;
}

.trainer-sns {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(201, 86, 86, 0.15);
  border: 1px solid rgba(232, 191, 187, 0.5);
  color: #C95656;
  font-size: 11px;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.sns-link span {
  display: none;
}

.sns-link:hover {
  background-color: #C95656;
  color: #FFF;
  transform: translateY(-2px);
}

.btn-booking {
  display: block;
  width: 100%;
  padding: 12px 20px;
  text-align: center;
  background-color: #C95656;
  color: #FFF8F8;
  font-size: 12px;
  letter-spacing: 0.1em;
  border: 1px solid #C95656;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.btn-booking:hover {
  background-color: transparent;
  color: #C95656;
}

/* Trainer Single Page */
.trainer-single-header {
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(201, 86, 86, 0.1);
  padding-bottom: 40px;
}

.trainer-single-header h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #C95656;
  margin: 0 0 20px 0;
}

.trainer-back-link {
  font-size: 13px;
  letter-spacing: 0.08em;
  margin: 0;
}

.trainer-back-link a {
  color: #B08484;
  transition: color 0.3s ease;
}

.trainer-back-link a:hover {
  color: #C95656;
}

.trainer-single-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.trainer-single-photo {
  width: 100%;
}

.trainer-single-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.trainer-single-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.trainer-info-item {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #5C3A3A;
  margin-bottom: 24px;
}

.trainer-info-item strong {
  font-weight: 500;
  color: #C95656;
  display: block;
  margin-bottom: 8px;
}

.trainer-sns-section {
  margin-bottom: 40px;
}

.trainer-sns-section h3 {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #C95656;
  margin: 0 0 20px 0;
}

.trainer-sns-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sns-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: rgba(201, 86, 86, 0.1);
  border: 1px solid rgba(232, 191, 187, 0.5);
  color: #C95656;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  width: fit-content;
}

.sns-link:hover {
  background-color: #C95656;
  color: #FFF;
}

.btn-booking-large {
  display: inline-block;
  padding: 16px 32px;
  background-color: #C95656;
  color: #FFF8F8;
  font-size: 13px;
  letter-spacing: 0.1em;
  border: 1px solid #C95656;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.btn-booking-large:hover {
  background-color: transparent;
  color: #C95656;
}

.trainer-description-full {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #5C3A3A;
}

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .trainers-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trainers-list-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trainer-single-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trainer-single-header h1 {
    font-size: 32px;
  }

  .trainer-sns {
    flex-wrap: wrap;
  }
}

.footer-divider {
  width: 40px;
  height: 1px;
  background-color: #C95656;
  margin: 40px auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  font-size: 12px;
  letter-spacing: 0.15em;
}

.footer-nav a {
  color: #F5D9D6;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #C95656;
}

.footer-bottom {
  border-top: 1px solid #E8BFBB;
  padding-top: 32px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #B08484;
}

@media (max-width: 900px) {
  .cta-buttons {
    flex-direction: column;
    gap: 24px;
  }

  .btn-cta {
    max-width: 100%;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .site-footer { padding: 60px 0 32px; }
  .footer-content { padding: 0 24px; }
  .cta-section { padding: 80px 0; }

  .cta-buttons {
    flex-direction: column;
    gap: 20px;
  }

  .btn-cta {
    padding: 20px 24px;
    font-size: 12px;
    max-width: 100%;
  }
}

/* =========================================
   MENU TOGGLE
========================================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 0;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: #5C3A3A;
  position: absolute;
  left: 6px;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 22px; }

.menu-toggle.is-open span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  top: 18px;
  transform: rotate(-45deg);
}

@media (max-width: 960px) {
  .menu-toggle { display: block; }
}

/* Trainers Link Section */
.trainers-link-section {
  margin: 60px 0;
  text-align: center;
}

.trainers-link-image {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.trainers-link-image img {
  max-width: 800px;
  height: auto;
  display: block;
  border-radius: 4px;
}

.trainers-desktop {
  display: block !important;
}

.trainers-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .trainers-link-image img {
    max-width: 90%;
  }

  .trainers-desktop {
    display: none !important;
  }

  .trainers-mobile {
    display: block !important;
  }
}
  box-shadow: 0 8px 20px rgba(201, 86, 86, 0.1);
}

.trainers-link-image:hover img {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(201, 86, 86, 0.2);
}
