:root {
  --ink: #161a12;
  --muted: #626b5d;
  --paper: #f7f3ea;
  --paper-2: #ece4d3;
  --moss: #4f5b38;
  --moss-dark: #202719;
  --olive: #7a8057;
  --sand: #d5ba84;
  --line: rgba(22, 26, 18, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(13, 18, 9, 0.18);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100vw - 40px)); margin-inline: auto; }
.section-pad { padding: 96px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 4vw, 54px);
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(247, 243, 234, .88);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sand); color: var(--moss-dark); font-weight: 900; letter-spacing: -.04em;
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy small { opacity: .72; font-size: 12px; }
.nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 700; }
.nav a { opacity: .82; }
.nav a:hover { opacity: 1; }
.nav-toggle { display: none; border: 0; background: transparent; color: inherit; font-weight: 800; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  align-items: center;
  color: var(--white);
  padding-top: 132px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at 78% 18%, rgba(213,186,132,.34), transparent 28%),
    linear-gradient(135deg, rgba(32,39,25,.96), rgba(32,39,25,.78)),
    url("/featured-sites/bongdal.camper/assets/activity-goout2.png") center/cover;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, var(--paper) 0%, rgba(247,243,234,0) 28%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--sand);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 104px);
  line-height: .95;
  letter-spacing: -.075em;
}
.lead {
  margin: 28px 0 0;
  max-width: 760px;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.55;
}
.lead-sub {
  margin: 18px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
}
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center;
  padding: 0 20px; border-radius: 999px; font-weight: 900; border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--sand); color: var(--moss-dark); box-shadow: 0 16px 36px rgba(213,186,132,.26); }
.btn.ghost { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); }
.btn.ghost-light { color: var(--white); border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.08); }
.hero-card {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(18px);
}
.portrait-wrap { aspect-ratio: 4/5; overflow: hidden; background: rgba(255,255,255,.08); }
.portrait-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.profile-meta { padding: 26px; }
.profile-meta .role { margin: 0 0 4px; color: var(--sand); font-weight: 900; }
.profile-meta h2 { margin: 0; font-size: 34px; letter-spacing: -.04em; }
.profile-meta p:last-child { margin-bottom: 0; color: rgba(255,255,255,.74); }

.stats-band { position: relative; margin-top: -36px; z-index: 4; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
}
.stat { padding: 34px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: clamp(34px, 4vw, 56px); line-height: 1; letter-spacing: -.06em; color: var(--moss); }
.stat span { display: block; margin-top: 10px; color: var(--muted); font-weight: 800; }

.paper-section { background: linear-gradient(180deg, var(--paper), var(--paper-2)); }
.two-col { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 6vw, 92px); align-items: start; }
.section-head h2, .contact h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -.06em;
}
.section-head p:not(.eyebrow) { margin: 18px auto 0; max-width: 780px; color: var(--muted); }
.centered { text-align: center; max-width: 850px; margin: 0 auto 44px; }
.copy-stack { display: grid; gap: 18px; }
.text-card {
  padding: 34px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}
.text-card h3 { margin: 0 0 10px; font-size: 24px; }
.text-card p { margin: 0; color: var(--muted); }

.dark-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(213,186,132,.14), transparent 30%),
    linear-gradient(180deg, var(--moss-dark), #11160f);
}
.dark-section .section-head p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.brand-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .22s ease, background .22s ease;
}
.brand-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.12); }
.brand-card img { width: 100%; height: 96px; object-fit: contain; padding: 6px; background: rgba(255,255,255,.98); border-radius: 16px; }
.brand-card img[src$="snowpeak.png"], .brand-card img[src$="gopro.png"] { padding: 4px; }
.brand-card-text { justify-content: flex-start; gap: 14px; }
.brand-badge {
  width: 100%; height: 96px; display: grid; place-items: center;
  border-radius: 16px; background: rgba(255,255,255,.94); color: var(--moss-dark);
  font-size: 24px; font-weight: 950; letter-spacing: -.04em;
}
.brand-card h3 { margin: 18px 0 4px; line-height: 1.25; font-size: 18px; }
.brand-card p { margin: 0; color: rgba(255,255,255,.64); font-size: 14px; }
.brand-card p a { color: var(--sand); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.inline-link, .inline-link:visited {
  display: inline-flex; align-items: center; width: fit-content; margin-top: 16px;
  color: var(--moss); font-weight: 900; text-decoration: underline; text-underline-offset: 4px;
}
.inline-link-row { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 6px; }
.inline-link-row .inline-link { margin-top: 10px; }


.timeline { display: grid; gap: 54px; margin-top: 44px; }
.year-block { display: grid; grid-template-columns: 110px 1fr; gap: 28px; }
.year { font-size: 34px; font-weight: 950; letter-spacing: -.06em; color: var(--moss); position: sticky; top: 110px; align-self: start; }
.activity-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.activity-grid.two { grid-template-columns: repeat(2, 1fr); }
.activity-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(13,18,9,.08);
}
.activity-card.large { grid-row: span 2; }
.activity-card img { width: 100%; height: 240px; object-fit: cover; }
.activity-card.large img { height: 500px; }
.activity-card h3 { margin: 0; padding: 20px; font-size: 19px; line-height: 1.35; letter-spacing: -.03em; }
.activity-card p { margin: -10px 20px 22px; color: var(--muted); }
.activity-card span { color: var(--moss); }
.activity-card.text-only { padding: 26px; min-height: 260px; display: flex; flex-direction: column; justify-content: center; }
.activity-card.text-only h3 { padding: 0; margin-top: 20px; font-size: 24px; }
.activity-card.text-only p { margin: 12px 0 0; }
.activity-text-mark {
  width: fit-content; min-width: 92px; padding: 10px 14px; border-radius: 999px;
  background: var(--moss); color: var(--white); font-weight: 950; letter-spacing: .03em;
}

.community-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.community-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.community-photo img { width: 100%; height: 520px; object-fit: cover; }
.community-list { display: grid; gap: 16px; margin-top: 28px; }
.community-list article { padding: 26px; border-radius: var(--radius-md); background: rgba(255,255,255,.72); border: 1px solid var(--line); }
.community-list span { display: inline-flex; margin-bottom: 8px; color: var(--moss); font-weight: 950; font-size: 13px; }
.community-list h3 { margin: 0 0 8px; font-size: 24px; }
.community-list p { margin: 0; color: var(--muted); }

.contact {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(32,39,25,.92), rgba(32,39,25,.7)),
    url("/featured-sites/bongdal.camper/assets/activity-ficc1.png") center/cover;
}
.contact-panel {
  max-width: 900px;
  padding: clamp(34px, 7vw, 76px);
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}
.contact-panel p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.76); font-size: 18px; }

.site-footer { padding: 34px 0; color: rgba(255,255,255,.74); background: #0f130d; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-grid p { margin: 4px 0 0; font-size: 13px; }
.footer-links { display: flex; gap: 16px; font-size: 14px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 980px) {
  .hero-grid, .two-col, .community-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .year-block { grid-template-columns: 1fr; }
  .year { position: static; }
}
@media (max-width: 720px) {
  .feature-card img { height: 320px; }
  .container { width: min(100% - 28px, var(--max)); }
  .section-pad { padding: 70px 0; }
  .site-header { padding: 14px 18px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 68px; right: 14px; left: 14px;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px; border-radius: 22px; background: rgba(247,243,234,.96); color: var(--ink);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; }
  .brand-copy small { display: none; }
  .hero { padding-top: 108px; min-height: auto; }
  .hero h1 { font-size: clamp(46px, 15vw, 68px); }
  .lead { font-size: 17px; }
  .stats-grid, .brand-grid, .activity-grid, .activity-grid.two { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .activity-card.large { grid-row: auto; }
  .activity-card img, .activity-card.large img, .community-photo img { height: 280px; }
  .footer-grid { display: grid; }
  .footer-links { flex-wrap: wrap; }
}


.feature-grid { align-items: stretch; }
.feature-card { display: flex; flex-direction: column; }
.feature-card img { height: 420px; object-fit: cover; object-position: center; }
.feature-card .activity-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.feature-card h3 { padding: 0; margin-top: 20px; font-size: 25px; }
.feature-card p { margin: 12px 0 0; }


/* v0.4 feature-card and logo readability refinements */
.feature-grid { align-items: stretch; }
.feature-card { display: flex; flex-direction: column; }
.feature-card > img { width: 100%; height: 420px; object-fit: cover; object-position: center; }
.feature-card .activity-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.feature-card h3 { padding: 0; margin: 20px 0 0; font-size: 25px; }
.feature-card p { margin: 12px 0 0; color: var(--muted); }
@media (max-width: 720px) {
  .feature-card > img { height: 320px; }
}

/* v0.5 activity hero refinements */
.hero-activity-grid .hero-event img { height: 360px; object-fit: cover; }
.hero-activity-grid .hero-event.large img { height: 560px; }
.history-summary { background: linear-gradient(135deg, #202719, #39442c); color: var(--white); }
.history-summary p { color: rgba(255,255,255,.76); }
.history-summary .activity-text-mark { background: var(--sand); color: var(--moss-dark); }
.feature-card img { height: 420px; object-fit: cover; }
@media (max-width: 720px) {
  .hero-activity-grid .hero-event img,
  .hero-activity-grid .hero-event.large img,
  .feature-card img { height: 300px; }
}


