:root{--build-id:"8373bbec-914d-471a-ab8e-a38439f55d97";}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Colors C21 */
:root {
  --primary: #d97706;
  --bg: #fffbeb;
  --text: #78350f;
  --accent: #92400e;
  --heading: var(--text);
  --link: var(--text);
}

/* Font F6 - Android Global */
body {
  font-family: Roboto, system-ui, "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  background: var(--bg);
  color: var(--text);
}

/* Headings H11 */
h1 {
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading);
}

h2 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading);
}

h3 {
  font-size: 1.84rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--heading);
}

/* Links */
a {
  color: var(--link);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.7;
}

a:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

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

/* Header N11 - 상단 스크롤 + 중앙 로고 + 좌우 메뉴 (대칭) */
header {
  background: var(--bg);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(120, 53, 15, 0.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu-checkbox {
  display: none;
}

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

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

nav a {
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

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

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

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--bg);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  }

  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .menu-checkbox:checked ~ nav {
    right: 0;
  }

  .logo {
    position: static;
    transform: none;
  }
}

/* Container */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section S07 */
section {
  padding: 5.5rem 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Button B11 */
.btn {
  display: inline-block;
  border-radius: 0.375rem;
  padding: 0.875rem 1.75rem;
  font-weight: 500;
  background: var(--primary);
  color: #fff;
  transition: all 0.2s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* Zigzag Layout */
.zigzag {
  display: grid;
  gap: 3.25rem;
}

.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.zigzag-item:nth-child(even) .zigzag-content {
  order: 2;
}

.zigzag-item:nth-child(even) .zigzag-image {
  order: 1;
}

.zigzag-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

@media (max-width: 768px) {
  .zigzag-item {
    grid-template-columns: 1fr;
  }

  .zigzag-item:nth-child(even) .zigzag-content,
  .zigzag-item:nth-child(even) .zigzag-image {
    order: 0;
  }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3.25rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Cards K11 */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.25rem;
}

.card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border-top: 3px solid var(--primary);
  transition: transform 0.2s;
}

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

.card h3 {
  margin-bottom: 1rem;
}

/* List */
ul.content-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

ul.content-list li {
  padding-left: 1.5rem;
  position: relative;
}

ul.content-list li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* CTA Section */
.cta-section {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 5.5rem 0;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-section .btn {
  background: #fff;
  color: var(--primary);
}

/* Contact Info */
.contact-info {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border-top: 3px solid var(--primary);
  margin: 2rem 0;
}

.contact-info p {
  margin: 1rem 0;
  font-size: 1.125rem;
}

/* Footer */
footer {
  background: var(--text);
  color: #fef3c7;
  padding: 3rem 0 2rem;
  text-align: center;
}

footer a {
  color: #fef3c7;
  margin: 0 1rem;
}

footer a:hover {
  color: #fff;
}

.footer-links {
  margin: 1.5rem 0;
}

/* Document Container */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}

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

.doc-container p {
  margin: 1.5rem 0;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 50vh;
  }
}