/* ==========================================================================
    Luna Nail Salon - Premium LP Stylesheet
   ========================================================================== */

/* 1. Design System & Variables */
:root {
  /* Colors */
  --primary: #D8A7B1;        /* Dusty Rose */
  --primary-light: #F4E8EA;  /* Soft Pink Blush */
  --secondary: #F7F3EE;      /* Warm Off-white / Cream */
  --accent: #C9A86A;         /* Refined Gold */
  --accent-hover: #B79558;   /* Deep Gold */
  --text: #333333;           /* Charcoal */
  --text-muted: #666666;     /* Muted Grey */
  --bg-light: #FCFAF7;       /* Very Soft Beige */
  --white: #FFFFFF;
  --line-color: #06C755;     /* Official LINE Green */
  --line-color-hover: #05B34C;
  --border-color: #E2DDD5;

  /* Fonts */
  --font-heading: 'Cinzel', 'Playfair Display', 'Noto Serif JP', serif;
  --font-body: 'Inter', 'Noto Sans JP', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(216, 167, 177, 0.12);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.08);

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

/* 2. Reset & Base Styles */
*, *::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);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 400;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

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

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

/* 3. Reusable Components */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-padding {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

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

.highlight {
  color: var(--primary);
  font-family: var(--font-heading);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  outline: none;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 12px;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(216, 167, 177, 0.4);
}

.btn-primary:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(216, 167, 177, 0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(216, 167, 177, 0.4);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(216, 167, 177, 0.2);
  transform: translateY(-2px);
}

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

.btn-secondary-outline:hover {
  background-color: var(--white);
  color: var(--text);
  transform: translateY(-2px);
}

.btn-line {
  background-color: var(--line-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

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

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

.btn-outline:hover {
  background-color: var(--secondary);
  border-color: var(--accent);
}

.icon-line {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* Section Header styling */
.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.sub-title {
  display: block;
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.section-title {
  font-size: 32px;
  color: var(--text);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title::after {
  content: none;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 5px;
}

/* 4. Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(226, 221, 213, 0.5);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  height: 118px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 8px 22px;
  flex-wrap: wrap;
  transition: var(--transition-smooth);
}

.site-header.scrolled .header-container {
  height: 96px;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text);
}

.nav-menu ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-menu ul li {
  margin: 0 12px;
}

.nav-menu ul li a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
}

.nav-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: var(--transition-fast);
}

.nav-menu ul li a:hover {
  color: var(--text);
}

.nav-menu ul li a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  justify-content: center;
  flex: 0 0 100%;
  order: 2;
}

#header-cta-btn {
  min-width: 168px;
  white-space: nowrap;
  line-height: 1;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger .bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--text);
  transition: var(--transition-fast);
}

/* 5. Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  overflow: hidden;
  color: var(--text);
  text-align: center;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s infinite alternate ease-in-out;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.25); /* Brightened soft translucent white overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-top: 120px; /* Offset for header */
}

.hero-subtext {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 44px;
  color: var(--white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.hero-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 42px;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
}

.hero-title .highlight {
  color: var(--white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.hero-description {
  font-size: 16px;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto 82px auto; /* Increased to push CTA buttons down */
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#hero-availability-btn {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid var(--white);
  box-shadow: 0 4px 18px rgba(43, 37, 35, 0.12);
  text-shadow: 0 1px 3px rgba(43, 37, 35, 0.24);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#hero-availability-btn:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--text);
  text-shadow: none;
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-indicator .line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: var(--text);
  animation: scrollDown 2s infinite ease-in-out;
}

/* 6. Pain Points Section */
#problems {
  --problems-chevron-height: 100px;
  position: relative;
  z-index: 2; /* Layer on top of the overlapping promise section */
  background-color: #B8A0A4; /* Muted mauve taupe for a calmer concern section */
}

#problems::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: calc(var(--problems-chevron-height) * -1);
  left: 0;
  background:
    linear-gradient(rgba(184, 160, 164, 0.86), rgba(184, 160, 164, 0.9)),
    url('images/problems_bg.png');
  background-size: cover;
  background-position: 58% 46%;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--problems-chevron-height)), 50% 100%, 0 calc(100% - var(--problems-chevron-height)));
  filter: drop-shadow(0 2px 1px rgba(58, 41, 46, 0.22));
  z-index: 0;
}

#problems .container {
  position: relative;
  z-index: 1;
}

.problems-divider {
  position: absolute;
  bottom: -99px; /* Pull down further to overlap the taller chevron without sub-pixel gaps */
  left: 0;
  width: 100%;
  height: 100px; /* Increased height to make the V-shape point deeper and sharper */
  z-index: 10;
  pointer-events: none;
}

.problems-divider svg {
  display: none;
}

#problems .section-title {
  color: #3F3033;
}

#problems .sub-title::after {
  background-color: rgba(201, 168, 106, 0.65);
}

#problems .sub-title {
  color: #F8F0EC;
}

#problems .problem-icon {
  color: #8A6870;
}

.text-white {
  color: var(--white) !important;
}

.text-light {
  color: rgba(255, 255, 255, 0.85) !important;
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.problem-card {
  background-color: rgba(255, 252, 250, 0.94);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(248, 240, 236, 0.52);
  box-shadow: 0 12px 32px rgba(63, 48, 51, 0.12);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(63, 48, 51, 0.11);
  border-color: rgba(201, 168, 106, 0.48);
}

.problem-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.problem-icon svg, .problem-icon .material-symbols-outlined {
  width: 28px;
  height: 28px;
  font-size: 28px;
  line-height: 1;
}

.problem-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* 6. Promise / Benefit Section */
.promise-section {
  position: relative;
  z-index: 1; /* Slide underneath the problems section */
  margin-top: -110px; /* Pull the gold section up to overlap the deeper chevron with safety margin */
  padding-top: 260px; /* Offset the negative margin-top to keep spacing balanced */
  background-image: 
    linear-gradient(to bottom, transparent 60%, var(--white) 100%),
    linear-gradient(135deg, rgba(255, 252, 243, 0.88) 0%, rgba(244, 224, 184, 0.7) 100%), 
    url('images/gold_shimmer_bg.png');
  background-size: cover;
  background-position: center;
  color: var(--text);
  overflow: hidden;
  animation: shimmerShift 20s infinite alternate ease-in-out;
}

@keyframes shimmerShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.promise-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(201, 168, 106, 0.3) 1.5px, transparent 1.5px),
    radial-gradient(circle at 75% 15%, rgba(201, 168, 106, 0.4) 2px, transparent 2px),
    radial-gradient(circle at 10% 75%, rgba(201, 168, 106, 0.3) 1.5px, transparent 1.5px),
    radial-gradient(circle at 85% 85%, rgba(201, 168, 106, 0.4) 2px, transparent 2px),
    radial-gradient(circle at 50% 60%, rgba(201, 168, 106, 0.4) 1.5px, transparent 1.5px);
  background-size: 100% 100%;
  animation: sparkleGlow 5s infinite alternate ease-in-out;
  opacity: 0.8;
}

@keyframes sparkleGlow {
  0% { opacity: 0.5; transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1.03); }
}

.promise-section .sub-title {
  color: var(--accent-hover);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

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

.promise-title {
  font-size: 32px;
  font-weight: 500;
  color: #31210F;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  line-height: 1.4;
  display: inline-block;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9), 0 2px 8px rgba(255, 255, 255, 0.7);
}

.promise-title::after {
  content: none;
}

.promise-section .sub-title::after {
  background-color: var(--accent-hover);
}

.promise-desc {
  font-size: 16px;
  font-weight: 500;
  color: #4A3A2A;
  line-height: 2.0;
  max-width: 650px;
  margin: 0 auto;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9), 0 1px 5px rgba(255, 255, 255, 0.8);
}

/* 7. Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.feature-card {
  background-color: var(--white);
  padding: 40px 24px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.feature-num {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.feature-num::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 1px;
  background-color: var(--accent);
}

.feature-title {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 600;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 8. Gallery Section */
.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-tab {
  background: none;
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-muted);
}

.gallery-tab:hover, .gallery-tab.active {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  transition: var(--transition-smooth);
}

.gallery-item {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(226, 221, 213, 0.3);
}

.gallery-item.hidden {
  display: none;
}

.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(216, 167, 177, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  backdrop-filter: blur(2px);
}

.gallery-overlay span {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 500;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  padding: 16px;
  text-align: center;
}

.gallery-info h4 {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 500;
}

.gallery-info p {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* 9. Pricing Section */
.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.pricing-table {
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 10px 30px;
  box-shadow: var(--shadow-sm);
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px dashed var(--border-color);
}

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

.pricing-details {
  max-width: 70%;
}

.plan-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 4px;
}

.plan-name .ja-name {
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-muted);
  font-weight: 400;
}

.plan-desc {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--accent);
  font-weight: 600;
}

/* Campaign Banner */
.campaign-banner {
  background-color: #F3E7CF;
  border: 1px solid rgba(201, 168, 106, 0.46);
  padding: 58px 40px 50px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(111, 88, 48, 0.1);
}

.campaign-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 34px;
  width: 54px;
  height: 82px;
  background: linear-gradient(180deg, rgba(216, 167, 177, 0.96), rgba(190, 134, 146, 0.92));
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
  box-shadow: 0 8px 18px rgba(111, 88, 48, 0.12);
}

.campaign-banner h3 {
  font-size: 28px;
  color: var(--text);
  margin-bottom: 10px;
  font-family: var(--font-heading);
  position: relative;
  z-index: 1;
}

.campaign-details {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 35px;
  letter-spacing: 0.08em;
  text-shadow: none;
  position: relative;
  z-index: 1;
}

.campaign-details span {
  display: inline-block;
}

/* Benefits Grid */
.campaign-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background-color: var(--white);
  border: 1px solid rgba(201, 168, 106, 0.3);
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(201, 168, 106, 0.1);
}

/* Highlight Benefit 3 (Care) */
.benefit-card.font-featured {
  border-color: rgba(201, 168, 106, 0.3);
  background-color: var(--white);
}

.benefit-card.font-featured:hover {
  box-shadow: 0 8px 25px rgba(201, 168, 106, 0.1);
}

.benefit-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 4px;
}

.benefit-badge.special {
  background-color: var(--primary);
}

.benefit-card-primary .benefit-badge {
  font-size: 11px;
  padding: 4px 12px;
}

.benefit-highlight {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 14px 0 8px 0;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.benefit-card-primary .benefit-highlight {
  font-size: 18px;
}

.benefit-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.benefit-card-primary .benefit-desc {
  font-size: 13px;
}

.price-example {
  display: block;
  font-size: 11px;
  margin-top: 6px;
  color: var(--text-muted);
}

.benefit-card-primary .price-example {
  font-size: 12px;
}

.price-example strong {
  color: var(--primary);
  font-size: 13px;
}

.benefit-card-primary .price-example strong {
  font-size: 14px;
}

.value-label {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--text);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  margin-left: 2px;
}

.campaign-footer-action {
  padding-top: 30px;
  position: relative;
  z-index: 1;
}

.campaign-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.btn-campaign {
  padding: 16px 48px;
}

/* Media Query Adaptations for campaign cards */
@media (max-width: 900px) {
  .campaign-benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .campaign-banner {
    padding: 70px 20px 40px;
  }

  .campaign-banner::before {
    left: 14px;
    width: 32px;
    height: 54px;
  }

  .campaign-banner h3 {
    max-width: 82%;
    margin-left: auto;
    margin-right: auto;
  }

  .campaign-details {
    line-height: 1.8;
  }

  .campaign-details span {
    display: block;
  }
}

/* 10. Process Section */
#process {
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 232, 234, 0.9), transparent 28%),
    linear-gradient(90deg, rgba(252, 250, 247, 0.95) 0%, rgba(255, 255, 255, 0.98) 52%, rgba(244, 232, 234, 0.5) 100%);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 56px;
  align-items: center;
  min-height: 180px;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 178px;
  left: 89px;
  width: 2px;
  height: calc(100% - 122px);
  background-image: linear-gradient(to bottom, rgba(201, 168, 106, 0.45) 45%, transparent 0);
  background-size: 2px 12px;
  background-repeat: repeat-y;
}

.process-step:last-child::before {
  content: none;
}

.process-icon {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid rgba(201, 168, 106, 0.22);
  box-shadow: 0 18px 45px rgba(216, 167, 177, 0.14);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.process-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-content {
  padding: 8px 0;
}

.process-step .step-num {
  display: block;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 14px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.step-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* 11. Staff Section */
#staff {
  position: relative;
  overflow: hidden;
  background-color: var(--white);
  background-image: url('images/staff_botanical_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#staff .container {
  position: relative;
  z-index: 1;
}

.staff-card {
  display: flex;
  background-color: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.staff-img {
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
}

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

.staff-info {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.staff-role {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.staff-name {
  font-size: 28px;
  color: var(--text);
  margin-bottom: 4px;
}

.staff-exp {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
}

.staff-specialty {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}

.staff-specialty .tag {
  color: var(--text-muted);
}

.staff-specialty .spec-tag {
  background-color: var(--primary-light);
  color: var(--text);
  padding: 4px 12px;
  border-radius: 30px;
  font-weight: 500;
}

.staff-message {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--primary);
}

/* 12. Salon Atmosphere Section */
.salon-carousel-section {
  background-color: var(--bg-light);
  overflow: hidden;
  padding: 48px 0;
}

.salon-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.salon-carousel::before,
.salon-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.salon-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light), rgba(252, 250, 247, 0));
}

.salon-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light), rgba(252, 250, 247, 0));
}

.salon-carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: salonCarousel 38s linear infinite;
}

.salon-carousel:hover .salon-carousel-track {
  animation-play-state: paused;
}

.salon-gallery-item {
  flex: 0 0 clamp(260px, 24vw, 360px);
  background-color: var(--white);
  border: 1px solid rgba(226, 221, 213, 0.6);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.salon-gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@keyframes salonCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .salon-carousel-track {
    animation: none;
  }
}

/* 13. Reviews Section */
#reviews {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.68), transparent 32%),
    linear-gradient(135deg, #F7E8EC 0%, #F3DDE3 100%);
}

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

.review-card {
  background-color: var(--white);
  padding: 35px 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.review-comment {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.review-user {
  border-top: 1px solid rgba(226, 221, 213, 0.4);
  padding-top: 16px;
}

.user-info {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* 14. FAQ Section (Accordion) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.faq-question:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

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

.accordion-icon::before, .accordion-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-muted);
  transition: var(--transition-smooth);
}

/* Horizontal line */
.accordion-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

/* Vertical line */
.accordion-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.faq-question[aria-expanded="true"] .accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-question[aria-expanded="true"] .accordion-icon::before {
  background-color: var(--primary);
}

.faq-answer {
  padding: 0 30px 24px 30px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px dashed transparent;
  transition: var(--transition-smooth);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  border-top-color: var(--border-color);
}

/* 15. Access Section */
.access-content {
  max-width: 760px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.access-info-wrap {
  padding: 50px;
}

.access-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
  color: var(--text);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
}

.access-table tr {
  border-bottom: 1px solid rgba(226, 221, 213, 0.4);
}

.access-table tr:last-child {
  border-bottom: none;
}

.access-table th {
  text-align: left;
  font-weight: 500;
  color: var(--text);
  width: 100px;
  padding: 20px 0;
  vertical-align: top;
  font-size: 16px;
}

.access-table td {
  padding: 20px 0 20px 20px;
  color: var(--text-muted);
  font-size: 16px;
}

.access-table td .note {
  font-size: 14px;
  color: var(--primary);
  display: block;
  margin-top: 6px;
}

/* 16. Final CTA Section */
.cta-section {
  background:
    linear-gradient(rgba(255, 250, 248, 0.64), rgba(255, 250, 248, 0.72)),
    linear-gradient(rgba(216, 167, 177, 0.1), rgba(216, 167, 177, 0.1)),
    url('images/cta_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--white);
  position: relative;
}

.cta-sub {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.cta-headline {
  font-size: 36px;
  color: var(--text);
  margin-bottom: 16px;
}

.cta-subheadline {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
  line-height: 1.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cta-line-note {
  color: var(--accent-hover);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  margin: 0;
}

.cta-line-note::before,
.cta-line-note::after {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.cta-line-note::before {
  content: '\\';
  margin-right: 10px;
}

.cta-line-note::after {
  content: '/';
  margin-left: 10px;
}

/* 17. Footer */
.site-footer {
  background-color: #2b2523; /* Dark premium brown */
  color: rgba(255, 255, 255, 0.5);
  padding: 50px 0;
  font-size: 12px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--white);
  border-color: rgba(201, 168, 106, 0.75);
  background-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.social-icon-instagram {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon-threads {
  fill: currentColor;
}

.footer-copy {
  letter-spacing: 0.1em;
}

/* 18. Modals & Lightbox */
.modal-backdrop, .lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 37, 35, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-backdrop.active, .lightbox-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Booking Modal Inner Box */
.modal-container {
  background-color: var(--white);
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.active .modal-container {
  transform: scale(1);
}

.modal-close, .lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close:hover, .lightbox-close:hover {
  color: var(--primary);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.modal-form .form-group {
  margin-bottom: 20px;
}

.modal-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.modal-form label .required {
  color: var(--primary);
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"],
.modal-form input[type="datetime-local"],
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background-color: var(--bg-light);
  outline: none;
  transition: var(--transition-fast);
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(216, 167, 177, 0.2);
}

/* Lightbox specific styling */
.lightbox-backdrop {
  background-color: rgba(15, 12, 12, 0.95);
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.lightbox-backdrop.active #lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  text-align: center;
  color: var(--white);
  margin-top: 20px;
}

.lightbox-caption h4 {
  font-size: 18px;
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.lightbox-caption p {
  font-size: 12px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* 19. Sticky Mobile Bottom CTA Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: var(--white);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 999;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  border-top: 1px solid var(--border-color);
}

.cta-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  height: 100%;
}

.cta-bar-line {
  background-color: var(--line-color);
  color: var(--white);
}

.cta-bar-line:hover {
  background-color: var(--line-color-hover);
}

.cta-bar-web {
  background-color: var(--primary);
  color: var(--white);
}

.cta-bar-web:hover {
  background-color: #cb97a2;
}

.cta-bar-call {
  background-color: var(--white);
  color: var(--text);
}

.cta-bar-call:hover {
  background-color: var(--bg-light);
}

.cta-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 4px;
}

/* 20. Animation Definitions */
@keyframes kenBurns {
  0% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes scrollDown {
  0% {
    top: -20px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    top: 40px;
    opacity: 0;
  }
  100% {
    top: 40px;
    opacity: 0;
  }
}

/* Scroll Reveal Classes */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 21. Responsive Media Queries */

@media (max-width: 1240px) {
  .header-container {
    padding: 0 20px;
    gap: 14px;
  }

  .logo a {
    font-size: 17px;
    letter-spacing: 0.1em;
  }

  .nav-menu ul li {
    margin: 0 8px;
  }

  .nav-menu ul li a {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  #header-cta-btn {
    min-width: 160px;
    padding-inline: 24px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .header-container {
    height: 120px;
    row-gap: 8px;
  }

  .site-header.scrolled .header-container {
    height: 100px;
  }

  .logo {
    flex: 1 1 auto;
  }

  .nav-menu ul {
    justify-content: flex-end;
  }
}

/* Tablet Viewports */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .features-grid > :nth-child(4),
  .features-grid > :nth-child(5) {
    grid-column: span 1;
  }

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

  .process-steps {
    max-width: 820px;
    gap: 44px;
  }

  .process-step {
    grid-template-columns: 148px 1fr;
    gap: 40px;
    min-height: 148px;
  }

  .process-step::before {
    top: 146px;
    left: 73px;
    height: calc(100% - 90px);
  }

  .process-icon {
    width: 148px;
    height: 148px;
  }

  .step-title {
    font-size: 20px;
  }

}

/* Mobile Viewports */
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-padding.bg-light {
    padding-top: 96px;
  }

  .promise-section.section-padding {
    margin-top: -76px;
    padding-top: 220px;
  }

  .problems-divider {
    bottom: -75px;
    height: 76px;
  }

  #problems {
    --problems-chevron-height: 76px;
  }

  #problems::before {
    background-size: auto 104%;
    background-position: 64% top;
  }

  .section-title {
    font-size: 26px;
  }

  /* Sticky CTA display on mobile */
  .sticky-cta-bar {
    display: grid;
  }

  /* Padding body to avoid content covered by sticky CTA */
  body {
    padding-bottom: 64px;
  }

  /* Navigation Hamburger */
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    transition: var(--transition-smooth);
    z-index: 99;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
  }

  .nav-menu ul li {
    margin: 16px 0;
  }

  .nav-menu ul li a {
    font-size: 18px;
  }

  .header-cta {
    display: none; /* Hide top CTA in mobile header since sticky bottom exists */
  }

  /* Hero Adjustments */
  .hero-title {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Grids */
  .problems-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }


  .promise-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .promise-desc {
    font-size: 14px;
    line-height: 1.8;
  }

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

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

  .salon-carousel-section {
    padding: 40px 0;
  }

  .salon-carousel::before,
  .salon-carousel::after {
    width: 48px;
  }

  .salon-carousel-track {
    gap: 16px;
    animation-duration: 32s;
  }

  .salon-gallery-item {
    flex-basis: 240px;
  }

  .process-steps {
    gap: 34px;
    padding: 0 2px;
  }

  .process-step {
    grid-template-columns: 92px 1fr;
    gap: 20px;
    min-height: 118px;
    align-items: start;
  }

  .process-step::before {
    top: 92px;
    left: 45px;
    height: calc(100% - 40px);
  }

  .process-icon {
    width: 92px;
    height: 92px;
    box-shadow: 0 12px 30px rgba(216, 167, 177, 0.12);
  }

  .step-content {
    padding-top: 4px;
  }

  .process-step .step-num {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .step-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.45;
  }

  .step-text {
    font-size: 13px;
    line-height: 1.75;
  }

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

  /* Staff Card SP */
  .staff-card {
    flex-direction: column;
  }

  .staff-img {
    width: 100%;
    height: 300px;
  }

  .staff-info {
    padding: 30px 20px;
  }

  /* Access SP */
  .access-info-wrap {
    padding: 30px 20px;
  }

  .access-table th {
    width: 70px;
    font-size: 16px;
  }

  .access-table td {
    padding-left: 10px;
    font-size: 16px;
  }

  .access-table td .note {
    font-size: 14px;
  }

  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button-group {
    width: 100%;
    max-width: 320px;
  }

  .cta-buttons .btn {
    width: 100%;
    min-height: 64px;
    justify-content: center;
  }

  .modal-container {
    padding: 30px 20px;
  }
}
