:root {
  --ink: #1d1712;
  --muted: #6d6258;
  --line: rgba(29, 23, 18, 0.12);
  --paper: #fbfaf7;
  --paper-2: #f2eee7;
  --brand: #b02f21;
  --brand-dark: #7f1e16;
  --gold: #c99a46;
  --green: #214f3c;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(29, 23, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  color: var(--ink);
  background: var(--paper);
  word-break: keep-all;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(29, 23, 18, 0.54);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}

.brand,
.nav-links,
.hero-actions,
.trust-strip,
.feature-line,
.slider-controls {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 0;
}

.nav-links {
  gap: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.header-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--brand-dark);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("./assets/hero-gukbap.png") center right / cover no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 12, 8, 0.92) 0%, rgba(18, 12, 8, 0.74) 39%, rgba(18, 12, 8, 0.16) 100%),
    linear-gradient(0deg, rgba(18, 12, 8, 0.45), transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 700px) 280px;
  align-items: end;
  gap: 54px;
  padding-top: 120px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 64px);
}

.hero-sub {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.7;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.header-cta:hover,
.phone-btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 18px 42px rgba(176, 47, 33, 0.32);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-strip span,
.feature-line span {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card p,
.hero-card span {
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-card strong {
  display: block;
  margin: 10px 0;
  font-size: 52px;
  line-height: 1;
}

.section {
  padding: 120px 0;
}

.section-head {
  max-width: 640px;
}

.section-head.center {
  margin: 0 auto 54px;
  text-align: center;
}

.section h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.pain-grid,
.metric-grid,
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pain-card,
.metric-card,
.concept-card,
.day-card,
.compare-board,
.slider,
.contact-panel {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(29, 23, 18, 0.08);
}
.contact-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--green);
  padding: 56px;
  border-radius: 16px;
  color: var(--white);
}
.contact-single .eyebrow {
  color: var(--gold);
  grid-column: 1;
}
.contact-single h2,
.contact-single > p,
.contact-single .promo {
  grid-column: 1;
  color: var(--white);
}
.contact-single .promo {
  background: rgba(255,255,255,0.12);
  border-left: none;
  color: var(--white);
  opacity: 1;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
}
.contact-single .lead-form {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
}
.contact-single .lead-form {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
}
.contact-single .lead-form label {
  color: var(--muted);
}
.contact-single .lead-form input {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}
.contact-single .lead-form input::placeholder {
  color: var(--muted);
}

.pain-card,
.metric-card,
.concept-card {
  min-height: 260px;
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pain-card:hover,
.metric-card:hover,
.concept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-index {
  color: var(--brand);
  font-weight: 900;
}

.pain-card h3,
.concept-card h3,
.day-card h3 {
  margin: 22px 0 14px;
  font-size: 25px;
}

.pain-card p,
.concept-card p,
.schedule span,
.metric-card p,
.note,
.faq p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.pain-card b {
  display: inline-block;
  margin-top: 18px;
  color: var(--brand);
  font-size: 24px;
}

.compare-section {
  background: var(--paper-2);
}

.split,
.story-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.compare-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px;
}

.compare-col {
  padding: 28px;
}

.compare-col.muted {
  background: #f5f2ec;
}

.compare-col.accent {
  background: var(--green);
  color: var(--white);
}

.compare-col h3 {
  margin: 0 0 20px;
  font-size: 24px;
}

.compare-col ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-col li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.compare-col.muted li {
  border-color: var(--line);
}

.impact {
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: min(390px, calc(100% - 40px));
  transform: translateX(-50%);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 18px 46px rgba(176, 47, 33, 0.28);
}

.impact span {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  opacity: 0.85;
}

.impact strong {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.process {
  background: var(--ink);
  color: var(--white);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.day-card {
  position: relative;
  padding: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.day-label {
  display: inline-flex;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.schedule {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.schedule p {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  margin: 0;
}

.schedule time {
  color: var(--gold);
  font-weight: 900;
}

.proof {
  background: var(--paper);
}

.metric-card {
  min-height: 220px;
}

.metric-card span,
.concept-card span {
  color: var(--brand);
  font-size: 17px;
  font-weight: 900;
}

.metric-card strong {
  display: block;
  margin: 18px 0 12px;
  font-size: clamp(31px, 4vw, 43px);
  line-height: 1.14;
}

.note {
  margin-top: 24px;
  font-size: 14px;
}

.stories {
  background: #181411;
  color: var(--white);
}

.slider {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #241d18;
  border-color: rgba(255, 255, 255, 0.12);
}

.slides {
  position: relative;
  min-height: 270px;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 44px;
  opacity: 0;
  transform: translateX(26px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial p {
  margin: 0;
  font-size: 25px;
  line-height: 1.72;
}

.testimonial b {
  color: var(--gold);
}

.slider-controls {
  position: absolute;
  left: 44px;
  bottom: 34px;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
}

.dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
}

.concept-card {
  background:
    linear-gradient(180deg, rgba(201, 154, 70, 0.1), rgba(255, 255, 255, 0) 45%),
    var(--white);
}

.feature-line {
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.feature-line span {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.faq {
  background: var(--paper-2);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 24px 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}

summary::marker {
  color: var(--brand);
}

details p {
  margin: 16px 0 0;
}

.final-cta {
  padding-top: 90px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  padding: 48px;
  background:
    linear-gradient(120deg, rgba(33, 79, 60, 0.09), rgba(176, 47, 33, 0.08)),
    var(--white);
}

.contact-copy h2 {
  font-size: clamp(38px, 5vw, 62px);
  margin: 0 0 18px;
}

.phone-btn {
  display: inline-flex;
  margin: 18px 0;
  padding: 15px 22px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease;
}

.promo {
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--brand);
  background: #fff7eb;
  font-weight: 900;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lead-form label:nth-child(n+3),
.lead-form button {
  grid-column: span 2;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: #fffdf9;
  color: var(--ink);
  outline: 0;
}

.lead-form input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(176, 47, 33, 0.12);
}

.full {
  grid-column: 1 / -1;
  width: 100%;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.is-open {
  display: flex;
}
.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-icon {
  font-size: 2.5rem;
}
.modal-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
}
.modal-box p {
  color: #555;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    inset: 10px 12px auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-inner,
  .split,
  .story-layout,
  .faq-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 28px;
    align-items: start;
  }

  .hero-card {
    width: min(100%, 360px);
  }

  .pain-grid,
  .metric-grid,
  .concept-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .compare-board {
    grid-template-columns: 1fr;
  }

  .impact {
    position: static;
    width: 100%;
    transform: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 48px, 1160px);
  }

  .site-header {
    padding: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 10px 14px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(18, 12, 8, 0.92) 0%, rgba(18, 12, 8, 0.76) 56%, rgba(18, 12, 8, 0.24) 100%);
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 84px 0;
  }

  .pain-card,
  .metric-card,
  .concept-card,
  .day-card,
  .testimonial,
  .contact-panel {
    padding: 24px;
  }

  .testimonial p {
    font-size: 20px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }
}

/* Editorial redesign: fewer boxes, stronger rhythm, more brand-site energy. */
body {
  background:
    radial-gradient(circle at 18% 8%, rgba(176, 47, 33, 0.13), transparent 34%),
    linear-gradient(180deg, #f7f2e8 0%, #fffaf0 46%, #17110d 46%, #17110d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(29, 23, 18, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 23, 18, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: multiply;
}

.site-header {
  inset: 20px 28px auto;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 14px 14px 18px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(19, 13, 9, 0.66);
  box-shadow: none;
  transition: background 0.25s ease, inset 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  inset: 12px 28px auto;
  background: rgba(19, 13, 9, 0.9);
  backdrop-filter: blur(18px);
}

.site-footer {
  background: #1a1410;
  color: var(--muted);
  font-size: 13px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-inner nav {
  display: flex;
  gap: 20px;
}
.footer-inner nav a {
  color: var(--muted);
  text-decoration: none;
}
.footer-inner nav a:hover {
  color: var(--white);
}


.header-cta,
.btn {
  border-radius: 0;
}

.hero {
  min-height: 100vh;
}

.hero-bg {
  background-position: 0% center;
  filter: saturate(0.95) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 9, 6, 0.95) 0%, rgba(13, 9, 6, 0.76) 42%, rgba(13, 9, 6, 0.12) 100%),
    linear-gradient(0deg, rgba(13, 9, 6, 0.72), transparent 42%);
}

.hero-inner {
  grid-template-columns: minmax(0, 770px) 250px;
  padding-top: 10px;
}

.hero-copy::before {
  content: "01";
  display: block;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.8;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: 0;
}

.hero-sub {
  max-width: 680px;
  font-size: 20px;
}

.btn.primary {
  background: var(--brand);
}

.btn.secondary {
  background: transparent;
}

.trust-strip {
  align-items: stretch;
  gap: 0;
  width: min(760px, 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.trust-strip span {
  flex: 1;
  padding: 16px 14px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  border-radius: 0;
  text-align: center;
}

.hero-card {
  align-self: center;
  padding: 26px 0 0;
  border: 0;
  border-top: 4px solid var(--gold);
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-card strong {
  color: var(--gold);
  font-size: 72px;
}

.marquee {
  overflow: hidden;
  color: #fff4de;
  background: var(--brand-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee span {
  padding: 18px 34px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding: 132px 0;
}

.section-head {
  max-width: 780px;
}

.eyebrow {
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0;
}

.section h2 {
  font-size: clamp(42px, 5vw, 76px);
  white-space: nowrap;
  letter-spacing: 0;
}

.pain {
  background: #f7f2e8;
}

.pain .section-head {
  max-width: 100%;
  margin-left: 0;
  padding-left: min(8vw, 92px);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid rgba(29, 23, 18, 0.22);
}

.pain-card {
  display: grid;
  grid-template-columns: 92px minmax(280px, 0.7fr) minmax(360px, 1fr) minmax(250px, 0.78fr);
  align-items: center;
  column-gap: clamp(28px, 3.2vw, 56px);
  min-height: 150px;
  padding: 26px min(5vw, 54px);
  border: 0;
  border-bottom: 1px solid rgba(29, 23, 18, 0.22);
  background: transparent;
  box-shadow: none;
}

.pain-card:hover {
  transform: none;
  box-shadow: none;
  background: rgba(176, 47, 33, 0.06);
}

.pain-card .card-index {
  color: rgba(29, 23, 18, 0.34);
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1;
}

.pain-card h3 {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 44px);
  white-space: nowrap;
  width: 100%;
  min-width: 0;
}

.pain-card p {
  margin: 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
}

.pain-card b {
  justify-self: end;
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(30px, 3vw, 46px);
  white-space: nowrap;
  max-width: 100%;
}

.compare-section {
  overflow: hidden;
  background: #17110d;
  color: var(--white);
}

.compare-section::before {
  content: "VS";
  position: absolute;
  right: -30px;
  top: 60px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 260px;
  font-weight: 900;
  line-height: 1;
}

.compare-section .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.compare-section .split {
  display: block;
  width: min(1180px, calc(100% - 48px));
}

.compare-section .section-head {
  max-width: 100%;
  margin-bottom: 56px;
}

.compare-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  box-shadow: none;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.compare-col {
  min-height: 0;
  padding: clamp(30px, 3.4vw, 48px);
}

.compare-col.muted {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
}

.compare-col.accent {
  color: var(--white);
  background:
    linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 52%, #33110d 100%);
}

.compare-col h3 {
  margin-bottom: 34px;
  font-size: clamp(30px, 3vw, 46px);
  white-space: nowrap;
}

.compare-col li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: baseline;
  gap: 20px;
  min-height: 82px;
  padding: 16px 0;
}

.compare-col li b {
  justify-self: start;
  font-size: clamp(28px, 3vw, 44px);
  white-space: nowrap;
}

.compare-col li span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.compare-col.muted li span {
  color: rgba(255, 255, 255, 0.64);
}

.impact {
  position: static;
  grid-column: 1 / -1;
  width: 100%;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 28px 34px;
  text-align: center;
  color: var(--ink);
  background: var(--gold);
  box-shadow: none;
}

.impact strong {
  font-size: 20px;
}

.process {
  overflow: hidden;
  background: #fffaf0;
  color: var(--ink);
}

.process::before {
  content: "1 WEEK";
  position: absolute;
  left: 3vw;
  top: 80px;
  color: rgba(176, 47, 33, 0.08);
  font-size: clamp(82px, 16vw, 220px);
  font-weight: 900;
  line-height: 0.8;
}

.timeline {
  gap: 0;
  border-top: 1px solid rgba(29, 23, 18, 0.2);
  border-bottom: 1px solid rgba(29, 23, 18, 0.2);
}

.timeline::before {
  background: rgba(29, 23, 18, 0.2);
}

.day-card {
  padding: 54px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.day-card h3,
.contact-copy h2 {
  white-space: nowrap;
}

.concept-card h3 {
  white-space: normal;
}

.day-label {
  border-radius: 0;
  color: var(--white);
  background: var(--ink);
}

.schedule p {
  grid-template-columns: 86px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid rgba(29, 23, 18, 0.14);
}

.schedule span {
  color: var(--muted);
}

.proof {
  background: var(--brand-dark);
  color: var(--white);
}

.proof .eyebrow {
  color: var(--gold);
}

.metric-grid {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.metric-card {
  min-height: 0;
  padding: 32px 28px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  box-shadow: none;
}
.metric-card:last-child {
  border-right: 0;
}

.metric-card:hover {
  transform: none;
  box-shadow: none;
}

.metric-card span {
  color: var(--gold);
}

.metric-card strong {
  color: var(--white);
  font-size: clamp(45px, 5vw, 72px);
}

.metric-card p,
.note {
  color: rgba(255, 255, 255, 0.68);
}

.stories {
  background: #fffaf0;
  color: var(--ink);
}

.story-layout {
  grid-template-columns: minmax(360px, 0.9fr) minmax(540px, 1.1fr);
  gap: clamp(48px, 6vw, 90px);
  align-items: center;
}

.slider {
  min-height: 360px;
  border: 0;
  border-left: 8px solid var(--brand);
  background: transparent;
  box-shadow: none;
}

.slides {
  min-height: 300px;
}

.testimonial {
  padding: 24px 0 62px clamp(32px, 3.5vw, 48px);
}

.testimonial p {
  max-width: 720px;
  font-size: clamp(25px, 2.45vw, 38px);
  font-weight: 900;
  line-height: 1.48;
  word-break: keep-all;
}

.testimonial b {
  display: block;
  margin-top: 8px;
  color: var(--brand);
  font-size: 17px;
}

.stories-photo {
  width: 100%;
  margin-top: 28px;
  border-radius: 12px;
  object-fit: cover;
  max-height: 280px;
}

.interior-photo {
  width: 100%;
  margin-top: 40px;
  border-radius: 12px;
  object-fit: cover;
  max-height: 340px;
}

.slider-controls {
  left: 42px;
}

.dot {
  border-radius: 0;
  background: rgba(29, 23, 18, 0.2);
}

.dot.active {
  background: var(--brand);
}

.interior {
  background: #f7f2e8;
}

.concept-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  min-height: auto;
}

.concept-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 360px;
  padding: 40px 34px 38px;
  border: 0;
  color: var(--ink);
  background: #f0e8d8;
  box-shadow: none;
  gap: 0;
}

.concept-card:nth-child(2) {
  background: var(--brand);
  color: var(--white);
}

.concept-card:nth-child(3) {
  background: #17110d;
  color: var(--white);
}

.concept-card:hover {
  transform: none;
  box-shadow: none;
}

/* ── 카드 아이콘 ── */
.concept-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 32px;
  background: rgba(176, 47, 33, 0.1);
  color: var(--brand);
}

.concept-card:nth-child(2) .concept-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.concept-card:nth-child(3) .concept-icon {
  background: rgba(228, 180, 91, 0.15);
  color: var(--gold);
}

/* ── 카드 레이블 ── */
.concept-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 12px;
  opacity: 1;
}

.concept-card p:not(.concept-label) {
  color: rgba(23, 17, 13, 0.65);
  margin-top: 14px;
  line-height: 1.7;
  font-size: 15px;
}

.concept-card:nth-child(2) .concept-label {
  color: #e0d0d0;
}

.concept-card:nth-child(3) .concept-label {
  color: #c8c0b8;
}

.concept-card:nth-child(2) p:not(.concept-label) {
  color: rgba(255, 255, 255, 0.8);
}

.concept-card:nth-child(3) p:not(.concept-label) {
  color: rgba(255, 255, 255, 0.68);
}

.feature-line {
  justify-content: stretch;
  gap: 0;
  border-top: 1px solid rgba(29, 23, 18, 0.2);
  border-bottom: 1px solid rgba(29, 23, 18, 0.2);
}

.feature-line span {
  flex: 1;
  border: 0;
  border-right: 1px solid rgba(29, 23, 18, 0.2);
  background: transparent;
  border-radius: 0;
  text-align: center;
}

/* ── Benefits ── */
.benefits {
  background: #fffaf0;
}

.benefits .section-head {
  margin-bottom: 54px;
}

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

.benefit-card {
  padding: 34px 30px;
  border-top: 3px solid var(--brand);
  background: var(--white);
  transition: transform 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* Process step cards */
.process .day-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* ── Gallery ── */
.gallery {
  background: #fffaf0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 54px;
}

.gallery-item {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e2d9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/* placeholder when image missing */
.gallery-item:not(:has(img[src])) {
  border: 2px dashed rgba(29, 23, 18, 0.15);
}

/* ── Video ── */
.video-section {
  background: #17110d;
  color: var(--white);
}

.video-section .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 54px auto 0;
  aspect-ratio: 16 / 9;
  background: #2a201a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.video-placeholder-icon {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── FAQ ── */
.faq {
  background: #17110d;
  color: var(--white);
}

.faq .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

details {
  padding: 26px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
}

details p {
  color: rgba(255, 255, 255, 0.68);
}

.final-cta {
  background: #fffaf0;
}

.contact-panel {
  grid-template-columns: 1fr 1fr;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-copy {
  padding: 54px 46px;
  color: var(--white);
  background: var(--green);
}

.contact-copy .eyebrow {
  color: var(--gold);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.phone-btn {
  border-radius: 0;
  color: var(--ink);
  background: var(--gold);
}

.promo {
  border-left: 0;
  color: var(--ink);
  background: #fffaf0;
}

.lead-form {
  padding: 46px;
  background: var(--white);
  border: 1px solid rgba(29, 23, 18, 0.14);
}

.lead-form input {
  border-radius: 0;
}

@media (max-width: 900px) {
  body {
    background: #fffaf0;
  }

  .day-card {
    padding: 32px 28px;
  }

  .metric-card {
    padding: 32px 28px;
  }

  .proof .section-head,
  .process .section-head {
    padding-left: 28px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 72px;
    gap: 48px;
  }

  .pain .section-head {
    padding-left: 0;
  }

  .pain-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
  }

  .pain-card p,
  .pain-card b {
    grid-column: 2;
    justify-self: start;
  }

  .section h2,
  .pain-card h3,
  .pain-card b,
  .day-card h3,
  .concept-card h3,
  .contact-copy h2,
  .compare-col h3,
  .compare-col li b {
    white-space: normal;
  }

  .compare-col {
    min-height: auto;
  }

  .compare-board {
    grid-template-columns: 1fr;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    display: none;
  }

  .contact-single {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 16px;
  }

  .contact-single .lead-form {
    grid-column: 1;
    grid-row: auto;
  }

  .impact {
    width: 100%;
  }

  .metric-grid,
  .concept-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero {
    min-height: 640px;
  }

  .concept-card {
    min-height: 300px;
  }

  .video-wrap {
    margin-top: 36px;
  }
}

@media (max-width: 620px) {
  /* ── 기본 레이아웃 ── */
  .container {
    width: min(100% - 40px, 1160px);
  }

  .section {
    padding: 56px 0;
  }

  .final-cta {
    padding: 56px 0;
  }

  /* ── Hero ── */
  .hero {
    min-height: auto;
  }

  /* ── 헤더 ── */
  .site-header {
    inset: 8px 10px auto;
    padding: 10px 12px;
  }

  .site-header.is-scrolled {
    inset: 6px 10px auto;
  }

  /* ── 타이포그래피 (clamp 최솟값 override) ── */
  .section h2 {
    font-size: 26px;
    line-height: 1.25;
    white-space: normal;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
    white-space: normal;
  }

  .hero-copy::before {
    font-size: 36px;
    margin-bottom: 28px;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 32px;
    gap: 10px;
  }

  .trust-strip {
    margin-top: 40px;
  }

  .eyebrow {
    font-size: 11px;
    margin-bottom: 10px;
  }

  /* ── Hero ── */
  .trust-strip span,
  .feature-line span {
    min-width: 50%;
    flex: 0 0 50%;
    font-size: 13px;
    padding: 12px 8px;
  }

  /* ── Pain ── */
  .pain-card {
    padding: 20px 0;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .pain-card .card-index {
    font-size: 28px;
  }

  .pain-card h3 {
    font-size: 18px;
    white-space: normal;
  }

  .pain-card p {
    font-size: 14px;
  }

  .pain-card b {
    font-size: 18px;
    white-space: normal;
  }

  /* ── Compare ── */
  .compare-board,
  .metric-grid,
  .feature-line {
    border-left: 0;
    border-right: 0;
  }

  .compare-col {
    padding: 20px 16px;
  }

  .compare-col h3 {
    font-size: 18px;
    margin-bottom: 14px;
    white-space: normal;
  }

  .compare-col li {
    grid-template-columns: 70px 1fr;
    gap: 8px;
    min-height: 0;
    padding: 10px 0;
  }

  .compare-col li b {
    font-size: 15px;
    white-space: normal;
  }

  .compare-col li span {
    font-size: 12px;
  }

  .impact {
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    text-align: center;
  }

  .impact span {
    font-size: 14px;
  }

  .impact strong {
    font-size: 18px;
  }

  /* ── Process / Steps ── */
  .day-card {
    padding: 24px 20px;
  }

  .proof .section-head,
  .process .section-head {
    padding-left: 20px;
  }

  .day-card h3 {
    font-size: 18px;
    white-space: normal;
    margin: 14px 0 10px;
  }

  .day-card p {
    font-size: 14px;
  }

  .schedule p {
    grid-template-columns: 60px 1fr;
    gap: 8px;
  }

  /* ── Metrics ── */
  .metric-card {
    padding: 24px 20px;
  }

  .metric-card strong {
    font-size: 36px;
    margin: 10px 0 8px;
  }

  .metric-card span {
    font-size: 13px;
  }

  .metric-card p {
    font-size: 13px;
  }

  /* ── Testimonials ── */
  .testimonial {
    padding: 24px 20px 56px 20px;
  }

  .testimonial p {
    font-size: 18px;
    line-height: 1.55;
  }

  /* ── Interior ── */
  .concept-card {
    min-height: 0;
    padding: 28px 20px;
  }

  .concept-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin-bottom: 22px;
  }

  .concept-icon svg {
    width: 32px;
    height: 32px;
  }

  .concept-card h3 {
    font-size: 18px;
    white-space: normal;
  }

  .concept-card p:not(.concept-label) {
    font-size: 13px;
    margin-top: 10px;
  }

  /* ── Benefits ── */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .benefit-card {
    padding: 20px;
  }

  .benefit-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .benefit-card p {
    font-size: 14px;
  }

  /* ── Gallery ── */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  /* ── FAQ ── */
  summary {
    font-size: 15px;
  }

  details p {
    font-size: 14px;
  }

  /* ── Contact ── */
  .contact-single {
    padding: 24px 20px;
  }

  .lead-form {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lead-form label:nth-child(n+3),
  .lead-form button {
    grid-column: span 1;
  }

  .contact-copy {
    padding: 24px 20px;
  }

  .contact-copy h2 {
    font-size: 24px;
    white-space: normal;
  }

  /* ── Section heads ── */
  .section-head.center {
    margin-bottom: 32px;
  }

  .benefits .section-head {
    margin-bottom: 28px;
  }

  .note {
    font-size: 12px;
  }
}

/* ── 햄버거 메뉴 버튼 ── */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  color: inherit;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .menu-btn {
    display: flex;
  }
}

/* ── 모바일 전체화면 내비게이션 ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #17110d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mobile-nav nav a {
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 800;
  color: #fffaf0;
  text-decoration: none;
  padding: 14px 32px;
  letter-spacing: -0.02em;
  transition: color 0.2s;
  opacity: 0;
  transform: translateY(16px);
  transition: color 0.2s, opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.is-open nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.is-open nav a:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav.is-open nav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.is-open nav a:nth-child(4) { transition-delay: 0.20s; }

.mobile-nav nav a:hover {
  color: var(--brand);
}

.mobile-nav-cta {
  margin-top: 40px;
  background: var(--brand);
  color: #fff;
  padding: 16px 44px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease 0.25s, transform 0.3s ease 0.25s, background 0.2s;
}

.mobile-nav.is-open .mobile-nav-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-cta:hover {
  background: #8f1f14;
}
