:root {
  --bg: #f6f0e8;
  --card: #fffaf3;
  --text: #251b15;
  --muted: #78685c;
  --accent: #a45f3f;
  --accent-dark: #7c432b;
  --danger: #b93232;
  --line: rgba(37, 27, 21, 0.12);
  --shadow: 0 18px 50px rgba(62, 37, 21, 0.14);
  --soft: #f0dcc7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #fff4df, transparent 36%), var(--bg);
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px min(5vw, 48px);
  background: rgba(255, 250, 243, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 243, 0.92);
  box-shadow: 0 10px 34px rgba(62, 37, 21, 0.10);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 24px rgba(124, 67, 43, .24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 800;
  color: var(--accent-dark);
  padding: 10px 12px;
  border-radius: 999px;
}

.site-nav a:hover {
  background: var(--soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  padding: 11px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--accent-dark);
  margin: 5px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px min(6vw, 72px) 72px;
  background:
    linear-gradient(90deg, rgba(37, 27, 21, .66), rgba(37, 27, 21, .24), rgba(37, 27, 21, .52)),
    url("hero-cover.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(to bottom, rgba(246, 240, 232, 0), rgb(0 0 0 / 59%));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  color: white;
}

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

.hero .eyebrow {
  color: #f0dcc7;
}

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

h1 {
  font-size: clamp(46px, 8vw, 96px);
  line-height: .94;
  letter-spacing: -.055em;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.045em;
  margin-bottom: 18px;
}

h3 {
  margin-bottom: 6px;
}

.hero-text {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  color: rgba(255, 255, 255, .92);
  width: min(650px, 100%);
}

.hero-actions,
.social-links,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.button:hover,
.social-links a:hover {
  transform: translateY(-2px);
}

.button.primary,
.social-links a {
  background: var(--accent);
  color: white;
}

.button.primary:hover,
.social-links a:hover {
  background: var(--accent-dark);
}

.button.light {
  background: var(--soft);
  color: var(--accent-dark);
}

.button.ghost {
  background: rgba(255, 250, 243, .16);
  color: white;
  border: 1px solid rgba(255, 255, 255, .34);
  backdrop-filter: blur(10px);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: 8px auto 0;
  background: currentColor;
  animation: floatLine 1.2s infinite alternate ease-in-out;
}

@keyframes floatLine {
  from { transform: translateY(0); opacity: .5; }
  to { transform: translateY(8px); opacity: 1; }
}

.section {
  padding: clamp(70px, 10vw, 120px) min(6vw, 72px);
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.large {
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.35;
  color: var(--muted);
  font-weight: 650;
}

.intro-band {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.feature-grid.reverse {
  grid-template-columns: .95fr 1.05fr;
}

.feature-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.image-card {
  border-radius: 34px;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, .38);
  
}
.commonninja_component {
 
  transform: translateY(-20px);

}
.warm {
  background:
    radial-gradient(circle at top right, rgba(164, 95, 63, .10), transparent 32%),
    var(--card);
}

.rules-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.rules-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 243, .72);
}

.rules-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.rules-list p {
  margin: 0;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 244, 223, .9), transparent 40%),
    var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-card p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 650px;
}

.site-footer {
  padding: 28px min(6vw, 72px);
  background: var(--text);
  color: rgba(255, 255, 255, .78);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer a {
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 250, 243, .96);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .brand span:last-child {
    max-width: 190px;
    line-height: 1.1;
  }

  .hero {
    padding-left: 24px;
    padding-right: 24px;
    background-position: center;
  }

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

  .cta-card {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-card .button,
  .section-actions .button,
  .social-links a {
    width: 100%;
  }

  .section {
    padding-left: 24px;
    padding-right: 24px;
  }
}


.section_heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section_heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.gallery_section {
  background:
    radial-gradient(circle at top left, rgba(164, 95, 63, .10), transparent 32%),
    var(--bg);
}

.gallery_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery_item {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 10px 34px rgba(62, 37, 21, 0.10);
  transition: transform .18s ease, box-shadow .18s ease;
}

.gallery_item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(62, 37, 21, 0.16);
}

.gallery_item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery_action {
  background: #f6f0e8;
  margin-top: -30px;
  display: flex;
  position: absolute;
  justify-content: center;
  z-index: 100 !important;
  left: -1px;
  width: 100%;
  padding: 40px;
}

@media (max-width: 820px) {
  .gallery_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .gallery_grid {
    grid-template-columns: 1fr;
  }
}
