:root {
  --brown-900: #3B2A20;
  --brown-700: #6E3B24;
  --brown-600: #8A4B2E;
  --brown-400: #8A7566;
  --brown-300: #A08A78;
  --brown-200: #E9D9C4;
  --cream-100: #FFF3E4;
  --cream-50: #FFF8EF;
  --peach-100: #FFE8CC;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream-50);
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--brown-900);
}

a { color: var(--brown-600); text-decoration: none; }
a:hover { color: var(--brown-700); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brown-600);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  background: var(--cream-50);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Hero */
.hero {
  padding: 40px 24px 30px;
  text-align: center;
  position: relative;
}
.badge {
  display: inline-block;
  background: var(--brown-600);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
}
.brand {
  font-size: 32px;
  font-weight: 900;
  color: var(--brown-900);
  margin: 18px 0 0;
  line-height: 1.4;
}
.tagline {
  font-size: 19px;
  color: #6B5544;
  margin-top: 12px;
  line-height: 1.6;
}

/* Call CTA */
.cta-wrap { padding: 0 24px 32px; }
.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brown-600);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  padding: 22px 0;
  border-radius: 100px;
  animation: pulseCall 2.2s ease-in-out infinite;
}
.call-sub {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  color: var(--brown-600);
  font-weight: 500;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section titles */
.section { padding: 30px 24px; }
.section--white { background: #fff; }
.section--cream { background: var(--cream-50); }
.section-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--brown-900);
  margin: 0 0 6px;
}
.section-sub {
  font-size: 15px;
  color: var(--brown-400);
  margin: 0 0 16px;
}

/* Gallery slider */
.gallery { padding: 30px 0; }
.gallery .section-title,
.gallery .section-sub { padding: 0 24px; }
.gallery .section-sub { padding-bottom: 16px; }
.slider-wrap { position: relative; }
.slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 14px;
  padding: 0 24px 8px;
  scrollbar-width: none;
  list-style: none;
  margin: 0;
}
.slider::-webkit-scrollbar { display: none; }
.slide {
  flex: 0 0 90%;
  scroll-snap-align: center;
}
.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(59, 42, 32, 0.18);
}
.slider-btn {
  position: absolute;
  top: 180px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(59, 42, 32, 0.55);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slider-btn--prev { left: 6px; }
.slider-btn--next { right: 6px; }

/* Feature grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(59, 42, 32, 0.06);
}
.feature-icon { font-size: 24px; }
.feature-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown-900);
  margin-top: 6px;
}

/* Reviews */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.review-card {
  border: 2px solid var(--peach-100);
  border-radius: 16px;
  padding: 18px;
}
.review-text {
  font-size: 17px;
  color: var(--brown-900);
  line-height: 1.6;
  margin: 0;
}
.review-author {
  margin-top: 8px;
  font-size: 14px;
  color: var(--brown-300);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-card {
  background: var(--cream-100);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
}
.service-icon { font-size: 28px; }
.service-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown-900);
  margin-top: 8px;
}
.service-desc {
  font-size: 13px;
  color: var(--brown-400);
  margin-top: 4px;
}
.price-note {
  margin-top: 14px;
  font-size: 15px;
  color: var(--brown-400);
  text-align: center;
}

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; }
.step { display: flex; gap: 16px; }
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brown-600);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-line {
  width: 2px;
  flex: 1;
  background: var(--brown-200);
  margin: 4px 0;
}
.step:last-child .step-line { background: transparent; }
.step-content { padding-bottom: 26px; }
.step-title { font-size: 17px; font-weight: 700; color: var(--brown-900); }
.step-desc { font-size: 15px; color: var(--brown-400); margin-top: 4px; line-height: 1.5; }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 2px 10px rgba(59, 42, 32, 0.06);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: var(--brown-900);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '▾';
  font-size: 18px;
  color: var(--brown-600);
  transition: transform 0.3s ease;
  margin-left: 12px;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer {
  font-size: 15px;
  color: #6B5544;
  margin-top: 12px;
  line-height: 1.6;
}

/* Contact */
.contact-section { background: var(--cream-100); }
.success-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
}
.success-icon { font-size: 36px; }
.success-title { font-size: 18px; font-weight: 700; color: var(--brown-900); margin-top: 10px; }
.success-desc { font-size: 15px; color: var(--brown-400); margin-top: 6px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form[hidden] {
  display: none;
}
.contact-form label {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown-900);
  margin-bottom: 4px;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-size: 17px;
  padding: 16px;
  border-radius: 12px;
  border: 2px solid var(--brown-200);
  font-family: inherit;
  background: #fff;
}
.contact-form textarea { resize: vertical; }
.submit-btn {
  margin-top: 6px;
  background: var(--brown-600);
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  padding: 18px 0;
  border: none;
  border-radius: 100px;
  cursor: pointer;
}

/* Sticky bottom CTA */
.bottom-spacer { height: 90px; }
.sticky-cta {
  position: sticky;
  bottom: 0;
  padding: 14px 20px;
  background: #fff;
  border-top: 1px solid #F0E4D6;
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brown-600);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  padding: 18px 0;
  border-radius: 100px;
}

/* Footer */
.site-footer {
  padding: 24px;
  background: var(--cream-50);
  border-top: 1px solid #F0E4D6;
  font-size: 12px;
  color: var(--brown-300);
  line-height: 1.8;
}

@keyframes pulseCall {
  0%, 100% { box-shadow: 0 8px 20px rgba(138, 75, 46, 0.3); }
  50% { box-shadow: 0 8px 30px rgba(138, 75, 46, 0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .call-btn { animation: none; }
  .reveal { transition: none; }
}
