:root {
  --bg: #fff8ef;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #4b5563;
  --brand: #ea580c;
  --brand-dark: #c2410c;
  --accent: #16a34a;
  --ring: #fed7aa;
  --border: #fdba74;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: linear-gradient(170deg, #fff7ed 0%, #fff 45%, #fff7ed 100%);
  line-height: 1.6;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #fed7aa;
  backdrop-filter: blur(8px);
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--brand-dark);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.hero {
  background: linear-gradient(145deg, #fff7ed 0%, #fff 65%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.6rem, 4.2vw, 2.7rem);
  line-height: 1.2;
}

.hero p {
  margin-top: 0.85rem;
  color: var(--muted);
}

.hero-banner {
  margin: 0 0 1rem;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-banner figcaption {
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  color: #9a3412;
  background: #fff7ed;
  border-top: 1px solid #fed7aa;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.72rem 1rem;
  font-weight: 600;
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: #fff;
}

.btn-outline:hover {
  background: #fff7ed;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--ring);
  border-radius: 14px;
  padding: 1rem;
}

.card h2,
.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.06rem;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 0.95rem;
}

.content-section ul li a,
.breadcrumb a {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #fb923c;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.content-section ul li a:hover,
.breadcrumb a:hover {
  color: #9a3412;
  background: #fff1e6;
}

.content-section {
  margin-top: 1rem;
}

.about-text {
  margin-top: 0.65rem;
  color: var(--muted);
}

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

.image-card {
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 12px;
  padding: 0.9rem;
}

.image-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #fed7aa;
}

.image-card h3 {
  margin: 0.55rem 0 0.25rem;
  font-size: 1rem;
}

.image-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.section-title {
  font-size: 1.25rem;
  margin: 0;
}

ul {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
}

.faq-item {
  margin-top: 0.65rem;
}

.faq-item p {
  margin: 0.2rem 0 0;
}

.breadcrumb {
  font-size: 0.86rem;
  color: #6b7280;
  margin-bottom: 0.7rem;
}

.footer {
  margin-top: 2rem;
  border-top: 1px solid #fed7aa;
  padding-top: 1rem;
  color: #6b7280;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    padding: 1.2rem;
  }

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

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