/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red:       #D94040;
  --red-light: #FAEAEA;
  --red-dark:  #B03030;
  --green:     #5A9A3A;
  --green-light: #EAF3DE;
  --green-dark:  #3F7228;
  --yellow:    #E8B84B;
  --yellow-light: #FAEEDA;
  --ivory:     #FAF8F3;
  --ivory-2:   #F4F0E8;
  --ivory-3:   #EDE8DC;
  --dark:      #1C1C1C;
  --dark-2:    #2C2A27;
  --mid:       #6B6560;
  --light:     #B8B0A4;
  --border:    #E4DDD2;
  --serif:     'Noto Serif KR', serif;
  --sans:      'Noto Sans KR', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --page-max: 1200px;
  --main-green: #4F9634;
  --dark-green: #356F43;
  --light-green: #E8F2E5;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── HEADER / NAV ── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 243, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--page-max);
  min-height: 88px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 32px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-logo img {
  display: block;
  width: auto;
  height: 100px;
  max-height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  flex: 1;
  gap: 4px;
  list-style: none;
}

.nav-menu a {
  display: block;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: var(--mid);
  font-size: 13px;
  font-weight: 500;
  transition: color .2s, background .2s;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--ivory-2);
  color: var(--dark);
}

.nav-menu a.active {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
}

.nav-utils {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.btn-blog,
.btn-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: opacity .2s, border-color .2s, color .2s;
}

.btn-blog {
  background: var(--green-dark);
  color: #fff;
}

.btn-blog:hover {
  opacity: .85;
}

.btn-store {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--mid);
}

.btn-store:hover {
  border-color: var(--mid);
  color: var(--dark);
}

.nav-hamburger {
  display: none;
  padding: 4px;
  border: 0;
  background: none;
  cursor: pointer;
}

/* ── 공통 버튼 ── */
.btn-main,
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.btn-main {
  border: 0;
  background: var(--main-green);
  color: #fff;
}

.btn-main:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

.btn-line {
  border: 1px solid #CBD9C7;
  background: rgba(255,255,255,.7);
  color: var(--dark-green);
}

.btn-line:hover {
  border-color: var(--main-green);
  transform: translateY(-2px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(79,150,52,.28);
  outline-offset: 3px;
}

/* ── HERO ── */
.hero {
  max-width: 1200px; margin: 0 auto;
  padding: 72px 24px 64px;
  display: grid; grid-template-columns: 1fr 480px; gap: 64px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.8px;
  color: var(--red); background: var(--red-light);
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; line-height: 1.4;
  color: var(--dark); margin-bottom: 20px;
}
.hero-title .highlight { color: var(--red); }
.hero-desc {
  font-size: 15px; color: var(--mid);
  line-height: 1.85; margin-bottom: 36px;
  max-width: 440px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  background: var(--red); color: white;
  padding: 13px 24px; border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-green-solid {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  background: var(--green); color: white;
  padding: 13px 24px; border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}
.btn-green-solid:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--mid);
  padding: 13px 22px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--mid); color: var(--dark); transform: translateY(-1px); }
.hero-stats {
  display: flex; gap: 28px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; gap: 3px; }
.stat-num {
  font-family: var(--serif);
  font-size: 22px; font-weight: 700; color: var(--dark);
}
.stat-num span { color: var(--red); }
.stat-label { font-size: 11px; color: var(--light); letter-spacing: 0.3px; }

/* Hero 이미지 영역 */
.hero-visual { position: relative; }
.hero-img-main {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--ivory-2);
  overflow: hidden;
}
.hero-img-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-img-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: white; border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.badge-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.badge-text { display: flex; flex-direction: column; gap: 1px; }
.badge-text strong { font-size: 13px; font-weight: 700; color: var(--dark); }
.badge-text span { font-size: 11px; color: var(--mid); }
.hero-img-tag {
  position: absolute; top: 16px; right: -12px;
  background: var(--red); color: white;
  font-size: 11px; font-weight: 700;
  padding: 6px 14px; border-radius: 20px;
  letter-spacing: 0.3px;
}

/* ── SECTION 공통 ── */
.section {
  padding: 80px 24px;
}
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700; color: var(--dark);
  line-height: 1.4;
}
.section-title .accent { color: var(--red); }
.section-desc {
  margin-top: 12px; font-size: 14px;
  color: var(--mid); line-height: 1.8; max-width: 520px;
}

/* ── PAIN POINTS ── */
.pain-section { background: white; }
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: stretch; /* 추가 */
}
.pain-card {
  padding: 28px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--ivory);
  position: relative; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;           /* 추가 */
  flex-direction: column;  /* 추가 */
}
.pain-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.pain-card::before {
  content: attr(data-num);
  position: absolute; top: -10px; right: 16px;
  font-family: var(--serif);
  font-size: 72px; font-weight: 800;
  color: var(--ivory-3); line-height: 1;
  pointer-events: none;
}
.pain-card h3 {
  font-size: 15px; font-weight: 700;
  color: var(--dark); margin-bottom: 10px; line-height: 1.5;
}
.pain-card p { font-size: 13px; color: var(--mid); line-height: 1.8; }
.pain-answer {
  margin-top: auto;  padding: 12px 14px;
  background: var(--green-light); border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600; color: var(--green-dark);
  display: flex; align-items: flex-start; gap: 6px;
}
.pain-answer::before { content: '→'; flex-shrink: 0; }

/* ── SERVICES ── */
.services-section { background: var(--ivory-2); }
.service-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.service-card {
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card-top { display: flex; align-items: flex-start; gap: 16px; }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.icon-red { background: var(--red-light); }
.icon-green { background: var(--green-light); }
.icon-yellow { background: var(--yellow-light); }
.icon-blue { background: #E6F1FB; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.service-card p { font-size: 13px; color: var(--mid); line-height: 1.8; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: 20px;
  background: var(--ivory-2); color: var(--mid);
  border: 1px solid var(--border);
}
.service-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--red);
  margin-top: auto; padding-top: 4px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 8px; }
.service-link::after { content: '→'; }

/* ── PRODUCT ── */
.product-section { background: white; }
.product-card {
  background: var(--ivory);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px; display: flex; gap: 48px; align-items: center;
}
.product-img-wrap {
  width: 220px; flex-shrink: 0;
}
.product-img {
  width: 100%; aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  background: var(--yellow-light);
  border: 2px dashed #EFC87A;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: #BA7517; font-size: 13px;
  overflow: hidden;
}
.product-img-icon { font-size: 40px; }
.product-info { flex: 1; }
.product-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  background: var(--yellow-light); color: #854F0B;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.product-info h3 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 700;
  color: var(--dark); margin-bottom: 12px;
}
.product-info p { font-size: 14px; color: var(--mid); line-height: 1.85; margin-bottom: 20px; }
.product-uses {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.use-tag {
  font-size: 12px; padding: 5px 12px;
  border-radius: 20px; background: white;
  border: 1px solid var(--border); color: var(--mid);
}
.product-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── RESERVATION CTA ── */
.res-section { background: #3A2E28; }
.res-section .section-eyebrow { color: var(--red-light); }
.res-section .section-title { color: white; }
.res-section .section-desc { color: #A09890; }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.res-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.2s, border-color 0.2s;
}
.res-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.res-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 4px;
}
.res-icon-red { background: rgba(217,64,64,0.2); }
.res-icon-green { background: rgba(90,154,58,0.2); }
.res-icon-yellow { background: rgba(232,184,75,0.15); }
.res-card h3 { font-size: 15px; font-weight: 700; color: white; }
.res-card p { font-size: 13px; color: #8A8278; line-height: 1.7; flex: 1; }
.res-btn-wrap { margin-top: 4px; }
.res-btn {
  display: block; text-align: center;
  font-size: 13px; font-weight: 600;
  padding: 11px 16px; border-radius: var(--radius-sm);
  transition: opacity 0.2s, transform 0.15s;
}
.res-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.res-btn-red { background: var(--red); color: white; }
.res-btn-green { background: var(--green); color: white; }
.res-btn-outline { border: 1px solid rgba(255,255,255,0.2); color: #ccc; }
.res-process {
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.res-process-title {
  font-size: 13px; font-weight: 600; color: #8A8278;
  letter-spacing: 0.5px; margin-bottom: 20px;
}
.process-steps {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
}
.process-step {
  display: flex; align-items: center; gap: 8px;
}
.step-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #ccc; flex-shrink: 0;
}
.step-label { font-size: 12px; color: #8A8278; white-space: nowrap; }
.step-arrow { font-size: 12px; color: #4A4640; margin: 0 12px; }

/* ── REVIEWS ── */
.reviews-section { background: var(--ivory); }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card {
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--border); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-quote-mark {
  font-family: var(--serif);
  font-size: 48px; line-height: 1;
  color: var(--yellow); display: block;
  margin-bottom: -8px;
}
.review-text {
  font-size: 14px; color: #4A4640;
  line-height: 1.85;
}
.review-highlight-word {
  background: var(--yellow-light);
  padding: 0 4px; border-radius: 3px;
  color: #854F0B; font-weight: 600;
}
.review-footer {
  padding-top: 14px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.reviewer-info { display: flex; flex-direction: column; gap: 2px; }
.reviewer-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.reviewer-role { font-size: 11px; color: var(--light); }
.review-badge {
  font-size: 11px; font-weight: 600;
  background: var(--yellow-light); color: #854F0B;
  padding: 4px 10px; border-radius: 20px;
}

/* ── FINAL CTA ── */
.final-cta {
  background: #C63B3B; padding: 72px 24px;
  text-align: center;
}
.final-cta-inner { max-width: 640px; margin: 0 auto; }
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700; color: white;
  line-height: 1.45; margin-bottom: 14px;
}
.final-cta p {
  font-size: 14px; color: rgba(255,255,255,0.75);
  line-height: 1.85; margin-bottom: 32px;
}
.final-cta-btns {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 12px;
}
.btn-white {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700;
  background: white; color: var(--red);
  padding: 14px 28px; border-radius: var(--radius-sm);
  transition: opacity 0.2s, transform 0.15s;
}
.btn-white:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-white-outline {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5); color: white;
  padding: 13px 26px; border-radius: var(--radius-sm);
  transition: border-color 0.2s, transform 0.15s;
}
.btn-white-outline:hover { border-color: white; transform: translateY(-1px); }

/* ── FOOTER ── */
.footer,
.site-footer {
  min-height: 0;
  padding: 36px 24px 24px;
  background: var(--dark);
  color: rgba(255,255,255,.76);
}

.footer-inner,
.site-footer .footer-inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
}

.footer-top,
.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-brand {
  flex: 1;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 54px;
  object-fit: contain;
}

.footer-tagline {
  max-width: 280px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.7;
}

.footer-nav-group h4 {
  margin-bottom: 14px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-nav-group a {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  transition: color .2s;
}

.footer-nav-group a:hover,
.footer-nav-group a:focus-visible {
  color: #fff;
}

.footer-bottom,
.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
}

.footer-info,
.site-footer .footer-info {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  transition: color .2s;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); }

/* ── ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 40px; }
  .hero-visual { max-width: 440px; }
  .hero-img-badge { bottom: -12px; left: 12px; }
  .pain-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .product-card { flex-direction: column; gap: 28px; }
  .product-img-wrap { width: 100%; max-width: 240px; margin: 0 auto; }
  .footer-top { flex-direction: column; gap: 32px; }
  .process-steps { gap: 8px; }
}
.nav-menu-mobile-only { display: none; }

@media (max-width: 640px) {
  .nav-inner {
    justify-content: space-between;
    gap: 12px;
  }
  .nav-logo img { height: 36px; }
  .nav-menu { display: none; }
  .nav-utils { display: none; }
  .nav-hamburger { display: block; }
  .nav-menu.menu-open .nav-menu-mobile-only { display: block; }

  /* 햄버거 클릭 시 메뉴 펼치기 */
  .nav-menu.menu-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px 20px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.menu-open a {
    padding: 12px 8px;
    font-size: 14px;
  }

  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-btns { gap: 8px; }
  .btn-primary, .btn-green-solid, .btn-outline { font-size: 13px; padding: 11px 18px; }
  .section { padding: 56px 20px; }
  .final-cta { padding: 56px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── LAPTOP NAV ── */
@media (max-width: 1160px) and (min-width: 701px) {
  .nav-inner {
    padding-left: 18px;
    padding-right: 18px;
    gap: 14px;
  }

  .nav-menu a {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
  }

  .btn-blog,
  .btn-store {
    padding-left: 10px;
    padding-right: 10px;
  }
}
