:root{--build-id:"e3923716-ddf2-45fe-b7ee-7d8253920c73";}
/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ea580c;
  --bg: #ffedd5;
  --text: #7c2d12;
  --accent: #f97316;
  --heading: #7c2d12;
  --link: #7c2d12;
}

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

/* Typography */
h1 {
  font-size: clamp(2.00rem, 2.6vw + 1rem, 3.00rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.50rem, 1.95vw + 0.75rem, 2.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.20rem, 1.56vw + 0.6rem, 1.80rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--link);
  text-decoration: underline;
}

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

/* 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;
}

/* Focus Styles */
a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

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

/* Header */
header {
  background: #fff7ed;
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  text-decoration: none;
}

.logo svg {
  color: var(--primary);
}

.menu-checkbox {
  display: none;
}

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

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

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
  transition: border-color 0.2s;
}

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

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

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

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

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

  nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
  }
}

/* Main Content */
main {
  min-height: 60vh;
}

section {
  padding: 3rem 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  padding: 4rem 0;
  text-align: center;
}

.hero-text {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  border-radius: 9999px;
  padding: 1.25rem 3rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* Feature Grid */
.features {
  background: #fff7ed;
}

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

.feature-card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: #fff;
}

.feature-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

/* Destination Cards */
.destinations-preview {
  background: #fff;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.0625rem;
}

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

.destination-card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: #fff7ed;
}

.destination-card svg {
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

/* Tips Section */
.tips-preview {
  background: #fff7ed;
}

.tips-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.tip-item {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: #fff;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

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

.cta-section .cta-button:hover {
  background: #fff7ed;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  padding: 3rem 0;
  text-align: center;
}

.page-intro {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Content Section */
.content-section {
  background: #fff;
}

.content-section:nth-child(even) {
  background: #fff7ed;
}

/* Value Cards */
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: #fff;
}

/* Service List */
.service-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-item {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: #fff7ed;
}

/* Destination Detail */
.destination-detail-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.destination-detail {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: #fff7ed;
}

/* Tip Detail */
.tip-detail {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: #fff7ed;
  margin-bottom: 1.5rem;
}

/* Blog Posts */
.blog-post {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: #fff7ed;
  margin-bottom: 2rem;
}

.post-meta {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.trend-post {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: #fff7ed;
  margin-bottom: 1.5rem;
}

/* Contact */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: #fff7ed;
  text-align: center;
}

.contact-note {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: #fff7ed;
}

/* Footer */
footer {
  background: #7c2d12;
  color: #ffedd5;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ffedd5;
}

.footer-brand p {
  color: #ffedd5;
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: #ffedd5;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #f97316;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal a {
  color: #ffedd5;
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: #f97316;
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 237, 213, 0.2);
  color: #ffedd5;
  opacity: 0.7;
  font-size: 0.875rem;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  section {
    padding: 2rem 0;
  }

  .hero {
    padding: 3rem 0;
  }

  .feature-grid,
  .destination-cards,
  .value-cards {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav,
  .footer-legal {
    align-items: center;
  }
}