.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 216, 206, 0.35), transparent 30%),
    radial-gradient(circle at 90% 5%, rgba(236, 184, 168, 0.34), transparent 28%),
    linear-gradient(180deg, #fff7f4 0%, #fff 40%, #fff7f3 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  height: 76px;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #f0d7ce;
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #8f5745;
  font-weight: 700;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  font-size: 20px;
  letter-spacing: 0.04em;
}

.menu-btn {
  display: none;
  border: 1px solid #e7cdc4;
  border-radius: 10px;
  background: #fff;
  color: #8b5c4e;
  padding: 8px 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.site-nav a {
  text-decoration: none;
  color: #6b4b42;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #cc7f66;
}

main {
  width: 100%;
}

.hero {
  position: relative;
  min-height: clamp(420px, 78vh, 820px);
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(30, 12, 8, 0.58), rgba(214, 133, 108, 0.32));
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  color: #fff;
}

.hero-sub {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hero h1 {
  margin: 12px 0 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.08;
}

.hero p {
  margin: 14px 0 0;
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: #f3b4a1;
  color: #4f2e25;
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.section,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  margin-top: 22px;
  border: 1px solid #f2d8cf;
  border-radius: 16px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(208, 149, 130, 0.12);
}

.section-head p {
  margin: 0;
  color: #cf8a73;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(24px, 3.8vw, 42px);
  line-height: 1.18;
  color: #3c2722;
}

.manifesto {
  margin-top: 16px;
  border: 1px solid #f0d9d0;
  border-radius: 12px;
  padding: 18px;
  background: #fffaf8;
}

.manifesto .slogan {
  margin-top: 0;
  font-size: clamp(18px, 2.5vw, 26px);
  color: #4d3029;
  font-weight: 700;
}

.manifesto p {
  color: #735147;
}

.manifesto blockquote {
  margin: 14px 0 8px;
  padding: 12px 14px;
  border-left: 4px solid #e9a48e;
  background: #fff3ee;
  color: #65443a;
}

.manifesto .sign {
  margin-bottom: 0;
  color: #8b5a4c;
  font-weight: 600;
}

.overview-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border: 1px solid #f0d9d0;
  border-radius: 12px;
  padding: 16px;
  background: #fffaf8;
}

.card h3 {
  margin: 0;
  color: #4d3029;
}

.card p,
.card li {
  color: #735147;
}

.card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.full-image {
  margin-top: 14px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #f0d9d0;
}

.pill-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pill-grid article {
  border: 1px solid #f0d9d0;
  border-radius: 12px;
  padding: 16px;
  background: #fffaf8;
}

.pill-grid h3 {
  margin: 0;
  color: #4d3029;
}

.pill-grid p {
  margin: 10px 0 0;
  color: #735147;
}

.image-duo,
.activity-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-duo img,
.activity-grid img,
.brand-gallery img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #f0d9d0;
}

.culture-layout {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.culture-text {
  border: 1px solid #f0d9d0;
  border-radius: 12px;
  padding: 18px;
  background: #fffaf8;
}

.culture-text h3 {
  margin: 0;
  color: #4d3029;
}

.culture-text ol {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #735147;
}

.culture-layout img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #f0d9d0;
}

.core-values {
  margin-top: 12px;
  border: 1px solid #f0d9d0;
  border-radius: 12px;
  padding: 16px;
  background: #fffaf8;
}

.core-values h3 {
  margin: 0;
  color: #4d3029;
}

.core-values ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #735147;
}

.section-intro {
  margin: 14px 0 0;
  color: #735147;
}

.brand-gallery {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.video-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.video-grid article {
  border: 1px solid #f0d9d0;
  border-radius: 12px;
  background: #fffaf8;
  padding: 10px;
}

.video-grid video {
  width: 100%;
  border-radius: 10px;
  background: #000;
}

.video-grid p {
  margin: 8px 4px 2px;
  color: #5f4037;
}

.contact-box {
  margin-top: 16px;
  border: 1px solid #f0d9d0;
  border-radius: 12px;
  background: #fffaf8;
  padding: 16px;
}

.contact-box a {
  color: #c67358;
  text-decoration: none;
}

.site-footer {
  margin: 20px auto 30px;
  padding: 18px;
  border: 1px solid #f2d8cf;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #7b5b52;
}

.site-footer p {
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 14px;
}

.legal-links a {
  text-decoration: none;
  color: #c2765f;
  font-weight: 600;
}

@media (max-width: 980px) {
  .overview-grid,
  .pill-grid,
  .brand-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .culture-layout,
  .image-duo,
  .activity-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 66px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    font-size: 17px;
  }

  .menu-btn {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 10px;
    right: 10px;
    background: #fff;
    border: 1px solid #eed3ca;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 8px;
    box-shadow: 0 14px 32px rgba(180, 122, 102, 0.2);
  }

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

  .site-nav a {
    padding: 8px 10px;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: #fff4ef;
  }

  .section,
  .site-footer,
  .hero-content {
    width: calc(100% - 20px);
  }

  .section {
    padding: 20px;
  }

  .overview-grid,
  .pill-grid,
  .brand-gallery {
    grid-template-columns: 1fr;
  }

}
