:root {
  color-scheme: light;
  --ink: #161814;
  --muted: #62675e;
  --line: rgba(22, 24, 20, 0.14);
  --paper: #f6f4ee;
  --field: #dfe6dc;
  --moss: #273421;
  --olive: #53633f;
  --sun: #d99b48;
  --clay: #a7563d;
  --white: #fffdf8;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(23, 26, 19, 0.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.topbar.is-scrolled,
.topbar.menu-open {
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
  font-size: 13px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 14px;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  color: var(--white);
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("/featured-sites/bongdal.camper3/assets/activity-goout-18th-hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 15, 10, 0.84), rgba(12, 15, 10, 0.42) 52%, rgba(12, 15, 10, 0.18)),
    linear-gradient(0deg, rgba(12, 15, 10, 0.78), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 56px;
  width: min(1160px, calc(100% - 40px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 138px 0 64px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--clay);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.88);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--sun);
  color: #17130c;
}

.btn.secondary {
  border: 1px solid rgba(255, 253, 248, 0.5);
  color: var(--white);
}

.btn.light {
  background: rgba(255, 253, 248, 0.14);
  color: var(--white);
}

.profile-panel {
  align-self: end;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: var(--radius);
  background: rgba(13, 17, 11, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  padding: 18px;
}

.profile-panel img {
  width: 108px;
  height: 108px;
  border: 3px solid rgba(255, 253, 248, 0.65);
  border-radius: 50%;
  object-fit: cover;
}

.profile-copy span {
  display: block;
  margin-top: 18px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
}

.profile-copy h2 {
  margin: 5px 0 8px;
  font-size: 30px;
}

.profile-copy p {
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.55;
}

.profile-panel dl {
  display: grid;
  gap: 1px;
  margin: 18px -18px -18px;
  background: rgba(255, 253, 248, 0.16);
}

.profile-panel dl div {
  padding: 13px 18px;
  background: rgba(13, 17, 11, 0.32);
}

.profile-panel dt {
  color: rgba(255, 253, 248, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-panel dd {
  margin: 4px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: 13px;
  line-height: 1.45;
}

.identity-band,
.section {
  padding: 92px 0;
}

.identity-band {
  background: var(--white);
}

.identity-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.section-title h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.section-title.compact {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-title.centered {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.identity-cards,
.signal-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-card,
.signal-card,
.offer-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
}

.mini-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-weight: 900;
  font-size: 12px;
}

.mini-card h3,
.offer-card h3 {
  margin: 28px 0 12px;
  font-size: 24px;
}

.mini-card p,
.signal-card p,
.offer-card p {
  color: var(--muted);
  line-height: 1.7;
}

.signal-card {
  background: var(--white);
}

.signal-card strong {
  display: block;
  color: var(--moss);
  font-size: 54px;
  line-height: 1;
}

.signal-card span {
  display: block;
  margin: 12px 0 20px;
  font-weight: 900;
}

.work-section {
  background: #171a13;
  color: var(--white);
}

.work-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
}

.work-section .section-title {
  position: sticky;
  top: 104px;
}

.work-section .section-title p {
  color: rgba(255, 253, 248, 0.68);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.07);
}

.feature-card.large {
  grid-column: span 2;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-card div {
  padding: 20px;
}

.feature-card span {
  color: var(--sun);
  font-size: 12px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 10px 0;
  font-size: 24px;
}

.feature-card p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.72);
  line-height: 1.65;
}

.offer-section {
  background: var(--field);
}

.offer-card {
  background: var(--white);
}

.media-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 560px;
  background: var(--moss);
  color: var(--white);
}

.media-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.media-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px max(24px, calc((100vw - 1160px) / 2)) 68px 56px;
}

.media-copy h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.media-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 17px;
  line-height: 1.8;
}

.contact-section {
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(17, 20, 15, 0.9), rgba(17, 20, 15, 0.58)),
    url("/featured-sites/bongdal.camper3/assets/snowpeak-obtn-hero.jpg") center / cover;
  color: var(--white);
}

.contact-panel {
  max-width: 780px;
}

.contact-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.02;
}

.contact-panel p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.footer {
  background: #11140f;
  color: rgba(255, 253, 248, 0.72);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.footer strong {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }

@media (max-width: 900px) {
  .topbar {
    height: 66px;
    padding: 0 18px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 253, 248, 0.97);
    color: var(--ink);
    box-shadow: 0 16px 36px rgba(20, 22, 18, 0.16);
  }

  .topbar.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 18px 20px;
    border-top: 1px solid var(--line);
  }

  .brand small {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 124px 0 42px;
  }

  .lead {
    font-size: 17px;
  }

  .profile-panel {
    max-width: 460px;
  }

  .identity-grid,
  .work-layout,
  .media-section {
    grid-template-columns: 1fr;
  }

  .work-section .section-title {
    position: static;
  }

  .identity-cards,
  .signal-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .mini-card,
  .signal-card,
  .offer-card {
    min-height: auto;
  }

  .media-image img {
    min-height: 340px;
  }

  .media-copy {
    padding: 46px 20px;
  }
}

@media (max-width: 620px) {
  .wrap,
  .hero-inner {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 44px;
  }

  .identity-band,
  .section,
  .contact-section {
    padding: 64px 0;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .feature-card.large {
    grid-column: auto;
  }

  .footer-inner {
    flex-direction: column;
  }
}
