:root{--build-id:"a2af77a1-c9b2-46d7-9b6f-e6dee4b99c60";}
@charset "UTF-8";

:root {
  --primary: #8b4513;
  --primary-dark: #5d2f0e;
  --primary-light: #a0522d;
  --secondary: #cd853f;
  --accent: #deb887;
  --bg-main: #fff8dc;
  --bg-section: #faebd7;
  --text-main: #2c1810;
  --text-sub: #5d4037;
  --border: #d2b48c;
  --shadow: rgba(139, 69, 19, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", "Malgun Gothic", "Noto Sans KR", -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text-main);
  background-color: var(--bg-main);
}

h1 {
  font-size: clamp(1.8rem, 4vw + 1rem, 2.8rem);
  line-height: 1.25;
  margin-bottom: 1.2rem;
  color: var(--primary);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.44rem, 3.2vw + 0.8rem, 2.24rem);
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.152rem, 2.56vw + 0.64rem, 1.792rem);
  line-height: 1.35;
  margin-bottom: 0.8rem;
  color: var(--text-main);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-dark);
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

header {
  background-color: var(--bg-section);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px var(--shadow);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  color: var(--text-main);
  font-weight: 500;
  padding: 0.5rem;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-section);
    border-bottom: 2px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .menu-checkbox:checked ~ nav {
    max-height: 400px;
  }

  nav ul {
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0;
  }

  nav li {
    border-bottom: 1px solid var(--border);
  }

  nav a {
    display: block;
    padding: 1rem 0;
  }
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  background: linear-gradient(135deg, var(--bg-section) 0%, var(--accent) 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 12px var(--shadow);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.hero svg {
  margin-top: 1.5rem;
}

.intro,
.features,
.approach,
.cta,
.content-section {
  background-color: var(--bg-section);
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
}

.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card,
.review-card,
.contact-item {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--border);
  box-shadow: 0 2px 6px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.review-card:hover,
.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px var(--shadow);
}

.card-icon,
.review-icon,
.contact-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.reviewer {
  margin-top: 1rem;
  font-style: italic;
  color: var(--text-sub);
  text-align: right;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--bg-section);
  border-radius: 8px;
}

.faq-section {
  padding: 2rem;
}

.faq-item {
  background-color: #fff;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 6px var(--shadow);
}

.faq-item h2 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.contact-info {
  text-align: center;
}

.contact-grid {
  margin: 2rem auto;
  max-width: 600px;
}

.cta {
  text-align: center;
}

footer {
  background-color: var(--primary-dark);
  color: #fff;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.footer-content nav {
  margin-top: 1rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.footer-content a {
  color: var(--accent);
}

.footer-content a:hover {
  color: #fff;
}

.doc-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
  background-color: var(--bg-section);
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
}

.doc-container h1 {
  margin-bottom: 1.5rem;
}

.doc-container p {
  margin-bottom: 1.5rem;
}

svg {
  display: block;
  margin: 2rem auto;
}