@charset "UTF-8";

/*
:root
Design DNA
- Style Preset: Editorial Minimal (타이포 중심, 여백 큼, 선/구획으로 정돈)
- Color Strategy: Warm Neutral + Work Accent (오프화이트/샌드그레이 기반 + 웜 오렌지 포인트 1색)
- Layout Pattern: Split Hero + Alternating Bands (히어로 좌우 분할, 이후 교차 밴드/스트라이프)
- Section Order: Header > Hero > About > Services > Work Ethic > Contact & Directions > Business Info > Footer
- Icon Style: Solid Minimal SVG Icons (단색 면 아이콘, 둥근 모서리)
- Background Pattern: Subtle Grid / Blueprint Lines (아주 옅은 격자/작업도면 느낌)

Palette proposals (choose 1):
1) Sand #F6F2EC / Clay #E3D8CC / Work Orange #D9772A
2) Warm White #FAF7F1 / Stone #E7DED2 / Work Orange #CF6A2C
3) Parchment #F4EFE7 / Dust #D9CDBF / Work Orange #D4702B
*/

:root {
  --bg: #f6f2ec;
  --bg-alt: #efe7dc;
  --ink: #2b2622;
  --muted: #6b6259;
  --line: #d7cfc2;
  --accent: #d9772a;
  --accent-deep: #b86524;
  --card: #faf7f2;
  --shadow: 0 14px 30px rgba(66, 46, 20, 0.08);
  --radius: 16px;
  --grid-gap: 28px;
  --max-width: 1120px;
  --font: system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  background-image:
    linear-gradient(to right, rgba(122, 106, 92, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(122, 106, 92, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 10;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(246, 242, 236, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  z-index: 5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-logo {
  width: 40px;
  height: 40px;
}

.brand-text {
  letter-spacing: 0.02em;
}

.primary-nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.primary-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover {
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.band {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.band.alt {
  background: var(--bg-alt);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(217, 119, 42, 0.08);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.meta-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.hero-visual {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--grid-gap);
  align-items: center;
}

.about-text {
  margin: 0;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.9rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.recommend {
  font-size: 0.9rem;
  color: var(--ink);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.checklist li::before {
  content: "●";
  color: var(--accent);
  margin-right: 8px;
}

.ethic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.ethic-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  display: grid;
  gap: 12px;
  min-height: 210px;
}

.icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.icon .icon-cut {
  fill: var(--accent);
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--grid-gap);
  align-items: start;
}

.address {
  font-weight: 600;
}

.directions {
  color: var(--muted);
}

.contact-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.recent {
  margin-top: 18px;
  border: 1px dashed var(--line);
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.recent-card {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 8px;
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

th {
  width: 22%;
  color: var(--muted);
  font-weight: 600;
  background: #f9f5ef;
}

tr:last-child th,
tr:last-child td {
  border-bottom: none;
}

.site-footer {
  padding: 32px 0 48px;
  background: #eee6db;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-split,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 760px) {
  .primary-nav {
    position: absolute;
    top: 70px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 16px;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
    min-width: 160px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .primary-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .card-grid,
  .ethic-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  th {
    width: 34%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
