:root {
  --ink: #16211c;
  --muted: #617068;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --moss: #294638;
  --pine: #17231d;
  --clay: #b9563b;
  --sky: #dce9ec;
  --sand: #ead9ad;
  --line: rgba(22, 33, 28, 0.14);
  --shadow: 0 24px 70px rgba(19, 35, 28, 0.16);
  --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 { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(var(--max), calc(100vw - 40px)); margin-inline: auto; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: #fff;
  transition: background .24s ease, box-shadow .24s ease, color .24s ease;
}
.topbar.scrolled {
  color: var(--ink);
  background: rgba(247, 245, 239, .9);
  box-shadow: 0 12px 42px rgba(0, 0, 0, .08);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--pine);
  font-weight: 950;
}
.brand span:last-child { display: grid; line-height: 1.15; }
.brand small { color: currentColor; opacity: .66; font-size: 12px; }
.nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 850; }
.nav a { opacity: .8; }
.nav a:hover { opacity: 1; }
.nav-toggle { display: none; border: 0; background: transparent; color: inherit; font-weight: 900; }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("/featured-sites/bongdal.camper/assets/activity-goout2.png") center/cover;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 29, 24, .94), rgba(17, 29, 24, .72) 48%, rgba(17, 29, 24, .28)),
    linear-gradient(0deg, var(--paper), rgba(247, 245, 239, 0) 30%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100vw - 40px));
  min-height: 100vh;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .68fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 126px 0 92px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--clay); }
.hero h1 {
  margin: 0;
  font-size: clamp(64px, 12vw, 138px);
  line-height: .88;
  letter-spacing: 0;
}
.tagline {
  margin: 24px 0 0;
  max-width: 720px;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.18;
  font-weight: 900;
}
.intro {
  margin: 22px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.8;
}
.spotlight, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 950;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--clay); color: #fff; box-shadow: 0 16px 36px rgba(185, 86, 59, .3); }
.btn.secondary { color: #fff; background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .28); }
.btn.light { color: #fff; background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .28); }

.identity-panel {
  display: grid;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.avatar {
  width: 152px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 10%;
  border: 4px solid rgba(255, 255, 255, .42);
}
.handle { margin: 0 0 4px; color: var(--sand); font-weight: 950; }
.identity-panel h2 { margin: 0; font-size: 32px; line-height: 1.1; letter-spacing: 0; }
.identity-panel p { margin: 0; color: rgba(255, 255, 255, .72); }
.quick-facts {
  display: grid;
  gap: 10px;
  margin: 0;
}
.quick-facts div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
}
.quick-facts dt { color: rgba(255, 255, 255, .58); font-size: 12px; font-weight: 900; }
.quick-facts dd { margin: 0; font-weight: 900; }
.scroll-hint {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 900;
}

.section { padding: 92px 0; }
.section-title h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: 0;
}
.section-title p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}
.section-title.compact { max-width: 820px; margin-bottom: 34px; }
.section-title.centered { text-align: center; max-width: 820px; margin: 0 auto 34px; }
.section-title.centered p:not(.eyebrow) { margin-inline: auto; }

.profile-band { background: linear-gradient(180deg, var(--paper), var(--sky)); }
.profile-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.profile-list { display: grid; gap: 16px; }
.profile-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
}
.profile-list span { color: var(--clay); font-weight: 950; }
.profile-list h3 { margin: 0 0 6px; font-size: 24px; letter-spacing: 0; }
.profile-list p { margin: 0; color: var(--muted); }

.showroom-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.showroom-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 16px 45px rgba(19, 35, 28, .08);
}
.showroom-card.large { grid-row: span 2; }
.showroom-card img { width: 100%; height: 250px; object-fit: cover; }
.showroom-card.large img { height: 560px; }
.showroom-card div { padding: 24px; }
.card-label {
  margin: 0 0 8px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}
.showroom-card h3 { margin: 0; font-size: 28px; line-height: 1.18; letter-spacing: 0; }
.showroom-card p:not(.card-label) { margin: 12px 0 0; color: var(--muted); }
.showroom-card a { display: inline-flex; margin-top: 18px; color: var(--moss); font-weight: 950; text-decoration: underline; text-underline-offset: 4px; }

.logs-section { background: #eef3f1; }
.logs-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.log-stack { display: grid; gap: 16px; }
.log-item {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}
.log-item img { width: 100%; height: 150px; object-fit: cover; border-radius: 14px; }
.log-item span { color: var(--clay); font-size: 13px; font-weight: 950; }
.log-item h3 { margin: 6px 0 8px; font-size: 24px; line-height: 1.24; letter-spacing: 0; }
.log-item p { margin: 0; color: var(--muted); }

.decision-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 35, 29, .96), rgba(41, 70, 56, .9)),
    url("/featured-sites/bongdal.camper/assets/activity-ficc1.png") center/cover;
}
.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.decision-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
}
.decision-card h3 { margin: 0; font-size: 24px; letter-spacing: 0; }
.decision-card p { margin: 14px 0 0; color: rgba(255, 255, 255, .72); }

.contact-section {
  padding: 96px 0;
  color: #fff;
  background: var(--pine);
}
.contact-panel {
  padding: clamp(34px, 7vw, 76px);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(23, 35, 29, .92), rgba(23, 35, 29, .62)),
    url("/featured-sites/bongdal.camper/assets/activity-gocf-meatmon-bdcrew-hero.jpg") center/cover;
}
.contact-panel h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: 0;
}
.contact-panel p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
}

.footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, .74);
  background: #0f1713;
}
.footer-inner { display: flex; justify-content: space-between; gap: 24px; }
.footer p { margin: 4px 0 0; font-size: 13px; }
.footer-links { display: flex; gap: 16px; font-size: 14px; font-weight: 850; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .62s ease, transform .62s 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: 920px) {
  .hero-inner,
  .profile-grid,
  .showroom-grid,
  .logs-layout,
  .decision-grid {
    grid-template-columns: 1fr;
  }
  .identity-panel { max-width: 560px; }
  .showroom-card.large { grid-row: auto; }
  .showroom-card.large img { height: 360px; }
  .log-item { grid-template-columns: 160px 1fr; }
}

@media (max-width: 680px) {
  .wrap,
  .hero-inner { width: min(100% - 28px, var(--max)); }
  .topbar { padding: 14px 16px; }
  .brand small { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 66px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 18px;
    color: var(--ink);
    background: rgba(247, 245, 239, .96);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; }
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; padding: 112px 0 76px; }
  .hero h1 { font-size: clamp(54px, 17vw, 82px); }
  .tagline { font-size: 24px; }
  .intro { font-size: 16px; }
  .section { padding: 70px 0; }
  .profile-list article { grid-template-columns: 1fr; }
  .showroom-card img,
  .showroom-card.large img { height: 280px; }
  .log-item { grid-template-columns: 1fr; }
  .log-item img { height: 220px; }
  .footer-inner,
  .footer-links { display: grid; }
}
