:root {
  --rose: #c46a86;
  --rose-dark: #8f3f5b;
  --rose-soft: #f8dce6;
  --beige: #fbf3e6;
  --beige-deep: #ead5bd;
  --text: #3d2c2f;
  --muted: #7b6764;
  --line: #ead8cf;
  --white: #ffffff;
  --shadow: 0 14px 36px rgba(92, 58, 65, 0.12);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--beige);
  line-height: 1.6;
}

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

a {
  color: var(--rose-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 243, 230, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  color: var(--rose-dark);
  letter-spacing: 0.01em;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  padding: 8px 10px;
  font: inherit;
  color: var(--rose-dark);
}

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

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.social-links {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.social-links img {
  width: 22px;
  height: 22px;
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(248, 220, 230, 0.95), transparent 34rem),
    linear-gradient(135deg, var(--beige), var(--rose-soft));
  color: var(--text);
}

.hero.simple {
  background:
    radial-gradient(circle at top left, rgba(248, 220, 230, 0.95), transparent 34rem),
    linear-gradient(135deg, var(--beige), var(--rose-soft));
  color: var(--text);
}

.hero-inner,
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px;
}

.hero-inner {
  min-height: 430px;
  display: grid;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  line-height: 1.15;
  color: inherit;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 18px;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 820px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 6px;
  background: var(--rose);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--rose);
}

.button:hover {
  background: var(--rose-dark);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--rose-dark);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.text-block {
  max-width: 820px;
}

.compact-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.partners-section {
  padding-top: 52px;
  padding-bottom: 52px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.counter {
  text-align: center;
  background: var(--rose-soft);
  border-radius: 8px;
  padding: 40px 24px;
}

.counter strong {
  display: block;
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--rose-dark);
  line-height: 1;
  margin: 14px 0;
}

.counter-note {
  display: block;
  max-width: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.image-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.image-frame img {
  width: 100%;
  object-fit: cover;
}

.team-grid,
.card-grid,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.card p:last-child,
.panel p:last-child {
  margin-bottom: 0;
}

.partner-grid img,
.event-grid img {
  width: 100%;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  object-fit: contain;
}

.partner-grid .card {
  display: grid;
  gap: 14px;
  align-content: center;
  text-align: center;
}

.partner-grid img {
  height: 170px;
  object-fit: contain;
  padding: 18px;
}

.partner-contact {
  max-width: 720px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.post-list {
  display: grid;
  gap: 24px;
}

.post-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.post-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.post-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.post-body {
  max-width: 820px;
}

.post-body p {
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.post-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.post-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.notice {
  border-left: 4px solid var(--rose);
  padding: 16px 18px;
  background: var(--rose-soft);
  border-radius: 0 8px 8px 0;
}

.static-form {
  display: grid;
  gap: 12px;
}

.static-form label {
  font-weight: 700;
  color: var(--rose-dark);
}

.static-form input,
.static-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  background: var(--white);
}

.static-form textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  background: var(--rose-dark);
  color: var(--white);
  margin-top: 36px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 4px;
  }

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

  .nav-wrap {
    flex-wrap: wrap;
  }

  .split,
  .team-grid,
  .card-grid,
  .partner-grid,
  .event-grid,
  .post-card,
  .post-gallery {
    grid-template-columns: 1fr;
  }

  .hero-inner,
  .section {
    padding: 52px 20px;
  }

  .hero-inner {
    min-height: 360px;
  }
}
