@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;800&display=swap");

:root {
  --bg: #f3efe6;
  --paper: #fffdf8;
  --ink: #201914;
  --muted: #70665c;
  --line: #ded1c0;
  --wood: #9a6139;
  --wood-dark: #3f281b;
  --green: #45664e;
  --sage: #dfe7d8;
  --shadow: 0 22px 54px rgba(45, 31, 21, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, 0) 360px), var(--bg);
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand::before {
  content: "";
  width: 12px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--wood), var(--green));
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-menu a {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
}

.site-menu a:hover {
  background: var(--sage);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(96px, 13vw, 150px) clamp(20px, 5vw, 72px) clamp(56px, 8vw, 90px);
  background: linear-gradient(110deg, rgba(28, 19, 13, .88), rgba(28, 19, 13, .58) 48%, rgba(28, 19, 13, .34)), url("../img/hero.jpg") center / cover;
  color: #fffdf8;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -16vw;
  width: 42vw;
  max-width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 248, .22);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .badge {
  color: #f2d8aa;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, .88);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn,
.float-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
}

.btn.primary,
.float-call {
  background: var(--wood);
  color: #fff;
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, .56);
  color: #fff;
}

.hero-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: rgba(255, 253, 248, .14);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
}

.hero-panel img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.hero-panel div {
  padding: 24px;
}

.hero-panel b,
.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin: 6px 0 12px;
  font-size: 1.8rem;
}

.stats-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: -34px auto 0;
  padding: 0 clamp(20px, 4vw, 40px);
}

.stats-strip div {
  display: grid;
  gap: 4px;
  min-height: 104px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.stats-strip div:first-child {
  border-radius: 8px 0 0 8px;
}

.stats-strip div:last-child {
  border-radius: 0 8px 8px 0;
}

.stats-strip strong {
  color: var(--wood);
  font-size: 1.4rem;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 40px);
}

.band {
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2 + 40px));
  padding-right: max(20px, calc((100vw - 1180px) / 2 + 40px));
  background: #fff9ef;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 710px;
  margin-bottom: 28px;
}

.section-head h2,
.contact-box h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.section-head p,
.service-grid p,
.area-layout p,
.faq-list p,
.contact-box p {
  color: var(--muted);
}

.service-grid,
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article,
.faq-list details,
.contact-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-grid article::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(69, 102, 78, .12);
}

.service-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(45, 31, 21, .18);
}

.service-grid article > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--wood);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-grid h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) max(20px, calc((100vw - 1180px) / 2 + 40px));
  background: var(--wood-dark);
  color: #fffdf8;
}

.showcase-copy {
  max-width: 520px;
}

.showcase .eyebrow {
  color: #f2d8aa;
}

.showcase h2 {
  margin: 10px 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.showcase p {
  color: rgba(255, 253, 248, .78);
}

.showcase img {
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.brand-journey {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(60px, 9vw, 110px) max(20px, calc((100vw - 1180px) / 2 + 40px));
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .96), rgba(255, 253, 248, .84)),
    url("../img/renovation.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.journey-intro {
  position: sticky;
  top: 104px;
  align-self: start;
}

.journey-intro h2 {
  margin: 10px 0 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.journey-intro p {
  color: var(--muted);
}

.journey-intro::after {
  content: "";
  display: block;
  width: min(100%, 300px);
  aspect-ratio: 4 / 3;
  margin-top: 28px;
  border: 1px solid rgba(154, 97, 57, .28);
  border-radius: 8px;
  background: url("../img/furniture.jpg") center / cover;
  box-shadow: 0 22px 54px rgba(45, 31, 21, .16);
}

.journey-line {
  display: grid;
  gap: 18px;
  position: relative;
}

.journey-line::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--wood), var(--green));
}

.journey-line article {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .95), rgba(250, 244, 235, .95));
  box-shadow: var(--shadow);
}

.journey-line article span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--wood-dark);
  color: #fffdf8;
  font-weight: 800;
  grid-row: 1 / 3;
}

.journey-line h3 {
  grid-column: 2;
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.journey-line p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--wood);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(45, 31, 21, .08);
}

.process-list b,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 12px;
  color: var(--muted);
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 32px;
  align-items: start;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.chips li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, #fffdf8, #f7f0e6);
  color: var(--wood-dark);
  font-weight: 700;
}

.area-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 26px;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .35s ease;
}

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

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 18px 18px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(180deg, transparent, rgba(24, 17, 12, .84));
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 5vw, 42px);
  background: linear-gradient(120deg, rgba(255, 253, 248, .96), rgba(255, 253, 248, .84)), url("../img/furniture.jpg") center / cover;
}

.detail-page {
  background: var(--bg);
}

.detail-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: clamp(86px, 12vw, 140px) clamp(20px, 5vw, 72px) clamp(42px, 7vw, 76px);
  background: linear-gradient(115deg, rgba(31, 22, 16, .86), rgba(31, 22, 16, .44)), var(--detail-bg) center / cover;
  color: #fffdf8;
}

.detail-hero > div {
  max-width: 820px;
}

.detail-hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.detail-hero p {
  max-width: 720px;
  color: rgba(255, 253, 248, .86);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 253, 248, .78);
  font-size: .92rem;
  font-weight: 700;
}

.breadcrumb a {
  color: #f2d8aa;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 253, 248, .46);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 82px) clamp(20px, 4vw, 40px);
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 26px;
}

.detail-card img {
  width: 100%;
  height: 230px;
  margin: -26px -26px 22px;
  max-width: calc(100% + 52px);
  border-radius: 8px 8px 0 0;
  object-fit: cover;
}

.detail-card p,
.detail-card li {
  color: var(--muted);
}

.detail-card h3 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
}

.detail-card ul {
  padding-left: 20px;
}

.detail-seo {
  padding-top: 0;
}

.detail-journey {
  padding-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(245, 236, 223, .96)),
    url("../img/renovation.jpg") center / cover;
}

.mini-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.mini-timeline article {
  position: relative;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(248, 240, 230, .96));
  box-shadow: 0 12px 30px rgba(45, 31, 21, .08);
}

.mini-timeline span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--wood);
  font-size: 1.4rem;
  font-weight: 800;
}

.mini-timeline b {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.mini-timeline p {
  color: var(--muted);
}

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

.seo-grid article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--paper), #f8f0e6);
  box-shadow: 0 12px 30px rgba(45, 31, 21, .08);
}

.seo-grid h3 {
  margin-bottom: 10px;
}

.seo-grid p {
  color: var(--muted);
}

.detail-reviews,
.detail-cases,
.detail-checklist,
.detail-faq {
  padding-top: 0;
}

.review-grid,
.case-grid,
.checklist-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-grid article,
.case-grid article,
.checklist-grid label,
.related-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(45, 31, 21, .08);
}

.review-grid article,
.case-grid article {
  padding: 24px;
}

.review-grid p,
.case-grid p,
.case-grid li {
  color: var(--muted);
}

.stars {
  margin-bottom: 12px;
  color: var(--wood);
  font-weight: 800;
  letter-spacing: .08em;
}

.case-grid ul {
  padding-left: 20px;
}

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

.checklist-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 16px;
  color: var(--wood-dark);
  font-weight: 700;
}

.checklist-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.detail-related {
  padding-top: 0;
}

.related-grid {
  grid-template-columns: repeat(4, 1fr);
}

.related-grid a {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px;
  color: var(--wood-dark);
  font-weight: 800;
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-link-grid a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font-weight: 700;
}

.contact-info {
  flex-direction: column;
  min-width: 260px;
}

.contact-info a {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--wood);
}

.site-footer {
  display: grid;
  gap: 6px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--wood-dark);
  color: #f6f1e8;
}

.site-footer span,
.site-footer small {
  color: rgba(246, 241, 232, .72);
}

.float-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  box-shadow: 0 14px 26px rgba(49, 30, 18, .28);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: 68px;
    right: 16px;
    display: none;
    min-width: 180px;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .hero,
  .area-layout,
  .contact-box,
  .showcase,
  .brand-journey,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-list,
  .gallery,
  .stats-strip,
  .page-link-grid,
  .seo-grid,
  .mini-timeline,
  .review-grid,
  .case-grid,
  .checklist-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
  }

  .stats-strip {
    margin-top: 0;
    padding-top: 18px;
  }

  .stats-strip div,
  .stats-strip div:first-child,
  .stats-strip div:last-child {
    min-height: auto;
    border-radius: 8px;
  }

  .process-list li {
    min-height: auto;
  }

  .gallery img {
    height: 240px;
  }

  .showcase img {
    min-height: 280px;
  }

  .journey-intro {
    position: static;
  }

  .journey-intro::after {
    width: 100%;
    max-height: 180px;
  }

  .journey-line::before {
    display: none;
  }

  .journey-line article {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .journey-line article span {
    width: 48px;
    height: 48px;
    font-size: .92rem;
  }

  .journey-line h3 {
    grid-column: 2;
    margin-bottom: 4px;
    font-size: 1.1rem;
  }

  .journey-line p {
    font-size: .95rem;
  }

  .mini-timeline article {
    min-height: auto;
    padding: 18px;
  }

  .mini-timeline span {
    margin-bottom: 10px;
    font-size: 1.05rem;
  }
}
