/* base.css — reset + header/hero skeleton/CTA/footer shared by all 10 pages */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg, #FFFFFF);
  color: var(--text, #1E2422);
  font-family: var(--font-body, "Pretendard", sans-serif);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--font-display, var(--font-body, sans-serif));
  line-height: 1.3;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
.container { max-width: 1120px; margin-inline: auto; padding-inline: 20px; }

:focus-visible {
  outline: 3px solid var(--primary, #35443A);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg, #FFFFFF);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.site-header__inner {
  max-width: 1120px;
  margin-inline: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.site-header__logo {
  font-family: var(--font-display, sans-serif);
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--primary, #35443A);
  margin-right: auto;
}
.site-header__nav {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.site-header__nav a {
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
  color: var(--text, #1E2422);
}
.site-header__nav a:hover { color: var(--primary, #35443A); }

.btn-call {
  flex-shrink: 0;
  border: 1.5px solid var(--primary, #35443A);
  color: var(--primary, #35443A);
  border-radius: 999px;
  padding: 8px 18px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}
.btn-call:hover { background: var(--primary, #35443A); color: #fff; }

@media (max-width: 640px) {
  .site-header__inner { padding: 10px 16px; }
  .site-header__nav { order: 3; width: 100%; }
}

/* ---------- hero skeleton ---------- */
.hero {
  display: grid;
  gap: 32px;
  padding: 56px 20px;
  max-width: 1120px;
  margin-inline: auto;
}
.hero__content h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.hero__lead {
  font-size: 1.05rem;
  color: var(--secondary-text, inherit);
  max-width: 46ch;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
}
.btn-primary {
  background: var(--primary, #35443A);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--primary, #35443A);
  color: var(--primary, #35443A);
}
.hero__media img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 88px 20px;
  }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--primary, #35443A);
  color: #fff;
  text-align: center;
  padding: 48px 20px;
}
.cta-band p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.cta-band__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band a {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.cta-band a:first-child {
  background: #fff;
  color: var(--primary, #35443A);
}
.cta-band a:last-child {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* ---------- footer ---------- */
.site-footer {
  background: #1E2422;
  color: #C7CFC9;
  padding: 40px 20px 32px;
  font-size: 0.88rem;
}
.site-footer__inner { max-width: 1120px; margin-inline: auto; }
.site-footer p { margin: 0 0 4px; }
.site-footer nav {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer nav a {
  color: #C7CFC9;
  text-decoration: none;
  font-size: 0.85rem;
}
.site-footer nav a:hover { color: #fff; }

/* ---------- shared content image grid (subpages) ---------- */
.shot-grid {
  margin-inline: auto;
  max-width: 960px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.shot-grid img { border-radius: 8px; width: 100%; }
.shot-grid figcaption {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 4px;
}
@media (max-width: 640px) {
  .shot-grid { grid-template-columns: 1fr; }
}
