/* =========================================================================
   Components (Buttons, Cards, Seciton specifics)
   ========================================================================= */

/* Typography */
.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: var(--sp-xl);
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
    margin-bottom: var(--sp-lg);
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100svh;
  background-image: url('https://placehold.co/1920x1080/2c1a14/f5e6d0?text=Hero+Image');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 var(--sp-md);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(44, 26, 20, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-copy {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-md);
}

.hero-subcopy {
  color: var(--c-warm);
  font-size: 15px;
  line-height: 1.8;
  font-family: var(--font-body);
}

.scroll-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding-bottom: var(--sp-lg);
  color: #fff;
  font-size: 24px;
}

/* Problem Section */
#problem {
  background-color: var(--c-warm);
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-md);
}

.problem-card {
  background: #fff;
  border-radius: 12px;
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.problem-card .icon {
  font-size: 40px;
  margin-bottom: var(--sp-sm);
}

.problem-card p {
  font-weight: 500;
  font-size: 16px;
}

/* Solution Section */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

.feature-item {
  display: flex;
  gap: var(--sp-lg);
  align-items: center;
}

.feature-text {
  flex: 1;
}
.feature-image {
  flex: 1;
}
.feature-image img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.feature-num {
  border-left: 3px solid var(--c-accent);
  padding-left: var(--sp-sm);
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: var(--sp-sm);
}

.feature-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--sp-md);
}

@media (max-width: 767px) {
  .feature-item {
    flex-direction: column-reverse;
    gap: var(--sp-md);
  }
  .feature-image img {
    /* Hide on SP as specified */
    display: none;
  }
}

/* Proof Section */
.voice-slider {
  display: flex;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.voice-card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: var(--sp-lg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.voice-header {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}

.voice-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.voice-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.voice-star {
  color: #F5A623;
  letter-spacing: 2px;
}

.voice-text {
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .voice-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: var(--sp-md);
  }
  .voice-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 80vw;
    max-width: 320px;
  }
}

/* Stat Numbers */
.stat-numbers {
  display: flex;
  justify-content: center;
  gap: var(--sp-xl);
  text-align: center;
  background: var(--c-warm);
  padding: var(--sp-lg);
  border-radius: 16px;
}

.stat-item dt {
  font-size: 14px;
  color: var(--c-muted);
  margin-bottom: var(--sp-sm);
  font-weight: 600;
}

.stat-item dd {
  color: var(--c-accent);
  font-family: var(--font-heading);
}

.stat-item .count {
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.stat-item .unit {
  font-size: 20px;
  margin-left: 4px;
}

@media (max-width: 767px) {
  .stat-numbers {
    flex-direction: column;
    gap: var(--sp-md);
  }
}

/* CTA Section */
#cta {
  background-color: var(--c-bg);
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-lead {
  font-size: 18px;
  margin-bottom: var(--sp-lg);
  font-weight: 500;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  background: var(--c-line);
  color: #fff;
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  min-width: 280px;
  transition: opacity 0.2s;
}

.btn-line:hover {
  opacity: 0.8;
}

.google-form-link {
  margin: var(--sp-md) 0 var(--sp-xl);
}
.google-form-link a {
  color: var(--c-muted);
  text-decoration: underline;
  font-size: 14px;
}

.salon-info {
  width: 100%;
  max-width: 600px;
  margin-bottom: var(--sp-lg);
  text-align: left;
}
.salon-info dl {
  background: #fff;
  padding: var(--sp-lg);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.info-row {
  display: flex;
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid #eee;
}
.info-row:last-child {
  border-bottom: none;
}
.info-row dt {
  width: 120px;
  font-weight: 600;
  color: var(--c-muted);
}
.info-row dd {
  flex: 1;
}

.map-embed {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
}

/* Footer */
footer {
  background: var(--c-base);
  color: #fff;
  text-align: center;
  padding: var(--sp-lg) 0;
  font-size: 14px;
}

/* Fixed CTA */
#fixed-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  padding: var(--sp-sm) var(--sp-md);
  box-shadow: 0 -2px 12px rgba(0,0,0,.08);
  z-index: 100;
  text-align: center;
}
#fixed-cta .btn-line {
  min-width: 100%;
}
