body {
  background: var(--cream);
  line-height: 1.8;
}

/* ----- HEADER ----- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.logo-mark {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.header .logo {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
  color: var(--orange-deep);
}
.header .logo-prefix {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.header .logo-name {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav-list { display: flex; gap: 26px; font-size: 14.5px; font-weight: 500; }
.nav-list a { transition: color 0.2s; }
.nav-list a:hover { color: var(--orange-deep); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #06C755;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(6,199,85,0.3); }
.nav-cta-orange {
  background: var(--orange);
  color: #fff;
}
.nav-cta-orange:hover { box-shadow: 0 6px 14px rgba(232,155,90,0.4); }
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- HERO / FV ----- */
.hero {
  position: relative;
  padding: 140px 32px 100px;
  background: linear-gradient(180deg, #FBF4E9 0%, #F5E8D2 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(244,201,154,0.5) 0, transparent 25%),
    radial-gradient(circle at 88% 70%, rgba(244,215,122,0.35) 0, transparent 30%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border-radius: 999px;
  background: var(--orange);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  border: 1.5px solid var(--orange-deep);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(232,155,90,0.25);
  letter-spacing: 0.04em;
}
.hero h1 {
  font-size: clamp(28px, 4.5vw, 54px);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.hero h1 .line {
  display: block;
  white-space: nowrap;
}
.hero h1 .accent {
  color: var(--orange-deep);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: var(--yellow);
  z-index: -1;
  opacity: 0.6;
  border-radius: 4px;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232,155,90,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232,155,90,0.45);
  background: var(--orange-deep);
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
}
.btn-line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 6px 18px rgba(6,199,85,0.3);
}
.btn-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(6,199,85,0.4);
}

.hero-illust {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.hero-illust img {
  width: 100%;
  height: auto;
  display: block;
}

/* floating decorations */
.float {
  position: absolute;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
.float-1 { top: 10%; left: -2%; width: 40px; animation-delay: 0s; }
.float-2 { top: 70%; right: -3%; width: 50px; animation-delay: 1.5s; }
.float-3 { bottom: 4%; right: 4%; width: 44px; animation-delay: 3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ----- SECTION SHARED ----- */
section { scroll-margin-top: 80px; }
.section {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-deep);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--ink);
  line-height: 1.4;
}
.section-title .wavy {
  display: inline-block;
  background-image: linear-gradient(transparent 75%, var(--orange-soft) 75%);
  padding: 0 4px;
}
.section-lead {
  font-size: 17px;
  color: var(--ink-soft);
  margin-top: 20px;
  line-height: 2;
}

/* ----- ABOUT ----- */
.about {
  background: var(--cream);
}
.about-card {
  background: #fff;
  border-radius: 32px;
  padding: 60px 48px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(74,56,38,0.06);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.about-card::before, .about-card::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: 0.15;
}
.about-card::before {
  background: var(--orange-soft);
  top: -80px; left: -80px;
}
.about-card::after {
  background: var(--yellow);
  bottom: -80px; right: -80px;
}
.about-card p {
  position: relative;
  font-size: 18px;
  line-height: 2.2;
  color: var(--ink);
  margin: 0;
}

/* ----- WORRIES / SUPPORT CARDS ----- */
.worries {
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border-radius: 28px;
  padding: 36px 32px 36px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(74,56,38,0.08);
}
.card-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.card-num span {
  font-size: 28px;
  margin-left: 4px;
}
.card-illust {
  width: 130px;
  height: 130px;
  margin: 8px auto 24px;
}
.card-illust svg { width: 100%; height: 100%; }
.card-illust img { width: 100%; height: 100%; display: block; }
.card h3 {
  font-size: 19px;
  text-align: center;
  margin-bottom: 22px;
  color: var(--ink);
  line-height: 1.6;
}
.card h3 .small { font-size: 14px; color: var(--ink-soft); display: block; font-weight: 500; margin-bottom: 4px; }
.card-list {
  border-top: 1px dashed var(--line);
  padding-top: 22px;
}
.card-list li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 13px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange-soft);
  border: 2px solid var(--orange);
}

/* ----- SUPPORT (different bg) ----- */
.support {
  background: var(--beige);
  padding: 100px 32px;
}
.support-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.support .card {
  background: #fff;
}
.support .card-num { color: var(--orange-deep); }
.support .card-list li::before {
  background: #fff;
  border-color: var(--orange-deep);
}

/* ----- HOUSING (居住支援法人) ----- */
.housing {
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige-2) 100%);
  padding: 100px 32px;
}
.housing-inner { max-width: 1200px; margin: 0 auto; }
.housing-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--orange);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-deep);
  margin-bottom: 16px;
}
.housing-badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.housing-intro {
  background: #fff;
  border-radius: 28px;
  padding: 48px;
  border: 1px solid var(--line);
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}
.housing-intro-illust {
  width: 100%;
  aspect-ratio: 1/1;
}
.housing-intro-illust img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.housing-intro p {
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
  margin: 0 0 16px;
}
.housing-intro p:last-child { margin-bottom: 0; }
.housing-intro strong { color: var(--orange-deep); }

.housing-block-title {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.housing-block-title::before {
  content: "";
  width: 6px; height: 26px;
  background: var(--orange);
  border-radius: 3px;
}
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 56px;
}
.target-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.target-item:hover {
  border-color: var(--orange);
  background: var(--beige);
  transform: translateY(-2px);
}
.target-item-num {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Maru Gothic", sans-serif;
}

.service-list {
  display: grid;
  gap: 20px;
  margin-bottom: 56px;
}
.service-item {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  transition: all 0.2s;
}
.service-item:hover {
  border-color: var(--orange-soft);
  box-shadow: 0 12px 28px rgba(74,56,38,0.06);
}
.service-num {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(232,155,90,0.35);
}
.service-content h4 {
  font-size: 18px;
  color: var(--ink);
  margin: 4px 0 10px;
  line-height: 1.5;
}
.service-content p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 0;
}

.housing-info {
  background: #fff;
  border-radius: 28px;
  padding: 48px;
  border: 2px solid var(--orange-soft);
}
.housing-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}
.info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  align-items: center;
}
.info-row dt {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-deep);
  letter-spacing: 0.05em;
}
.info-row dd {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}
.info-row dd a:hover { color: var(--orange-deep); }

.housing-box {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 32px 36px;
  margin-bottom: 56px;
}
.housing-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.housing-bullets li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.7;
}
.housing-bullets li::before {
  content: "";
  position: absolute;
  left: 4px; top: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.housing-services {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.housing-services li {
  position: relative;
  padding-left: 24px;
}
.housing-services li::before {
  content: "";
  position: absolute;
  left: 4px; top: 10px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
}
.housing-services li strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 700;
}
.housing-services li span {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .housing { padding: 70px 24px; }
  .housing-intro {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
    text-align: left;
  }
  .housing-intro-illust { max-width: 160px; margin: 0 auto; }
  .target-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }
  .housing-box { padding: 24px; }
  .housing-bullets { grid-template-columns: repeat(2, 1fr); gap: 6px 16px; }
  .housing-info { padding: 32px 24px; }
  .housing-info-grid { grid-template-columns: 1fr; gap: 0; }
  .info-row { grid-template-columns: 100px 1fr; }
}

/* ----- DONATION ----- */
.donation {
  background: var(--cream);
}
.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.donation-grid-single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.donation-illust {
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.donation-text h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--ink);
}
.donation-text p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 2;
  margin-bottom: 20px;
}
.donation-list {
  background: #fff;
  border-radius: 20px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.donation-list li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-size: 14.5px;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}
.donation-list li:last-child { border-bottom: none; }
.donation-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 20px;
  width: 16px; height: 2px;
  background: var(--orange);
}
.donation-cta {
  background: linear-gradient(135deg, #fff 0%, var(--beige) 100%);
  border-radius: 28px;
  padding: 48px;
  border: 2px solid var(--orange-soft);
  text-align: center;
  margin-bottom: 40px;
}
.donation-cta-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  padding: 16px 32px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
}
.donation-cta-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.donation-cta p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 0 0 24px;
}
.bank-table {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--line);
}
.bank-table h4 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bank-table h4::before {
  content: "";
  width: 4px; height: 20px;
  background: var(--orange);
  border-radius: 2px;
}
.bank-table-note { font-size: 13px; color: var(--ink-soft); margin: 0 0 18px; }
.bank-scroll { overflow-x: auto; }
.bank-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.bank-table th, .bank-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}
.bank-table th {
  background: var(--beige);
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
}

/* ----- CONTACT ----- */
.contact {
  background: var(--beige);
  padding: 100px 32px;
}
.contact-inner {
  max-width: 760px;
  margin: 0 auto;
}
.contact-line-cta {
  text-align: center;
  margin-top: 28px;
}
.contact-line-cta .btn { display: inline-flex; }
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-turnstile {
  margin: 24px 0 8px;
  display: flex;
  justify-content: center;
}
.contact-form {
  background: #fff;
  border-radius: 28px;
  padding: 48px;
  border: 1px solid var(--line);
}
.form-row {
  margin-bottom: 28px;
}
.form-label {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.form-label .req {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-radios {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form-radio {
  flex: 1;
  min-width: 140px;
  cursor: pointer;
}
.form-radio input { display: none; }
.form-radio-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border: 2px solid var(--line);
  border-radius: 14px;
  text-align: center;
  font-size: 14.5px;
  transition: all 0.2s;
}
.form-radio input:checked + .form-radio-box {
  border-color: var(--orange);
  background: var(--beige);
  color: var(--orange-deep);
  font-weight: 700;
}
.form-radio-box::before {
  content: "";
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--line);
  flex-shrink: 0;
}
.form-radio input:checked + .form-radio-box::before {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-input:user-invalid,
.form-textarea:user-invalid,
.form-select:user-invalid {
  border-color: #E5635A;
  background-color: #FFF5F5;
}
.form-input:user-invalid:focus,
.form-textarea:user-invalid:focus,
.form-select:user-invalid:focus {
  border-color: #E5635A;
  box-shadow: 0 0 0 3px rgba(229, 99, 90, 0.15);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23D6803F' stroke-width='3' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-submit {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 18px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  box-shadow: 0 6px 18px rgba(232,155,90,0.35);
}
.form-submit:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232,155,90,0.45);
}
.form-consent {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 24px 0 0;
}
.form-consent a {
  color: var(--orange-deep);
  text-decoration: underline;
}

/* ----- FOOTER ----- */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand .logo { color: #fff; }
.footer-brand .logo-mark circle { fill: var(--orange-soft); }
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 2;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--orange-soft);
  letter-spacing: 0.1em;
}
.footer-col ul li { padding: 6px 0; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--orange-soft); }
.footer-tel {
  font-size: 22px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #fff;
  margin: 8px 0 12px;
}
.footer-bottom {
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a {
  color: rgba(255,255,255,0.85);
  margin: 0 10px;
}
.footer-bottom a:hover { color: #fff; }

/* ----- RESPONSIVE ----- */
@media (max-width: 1080px) {
  .menu-btn { display: flex; }
  .nav-list { display: none; }
  .nav-cta { display: none; }
  .nav.open .nav-list,
  .nav.open .nav-cta {
    display: flex;
  }
  .nav.open {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255,250,240,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 24px 32px 28px;
    gap: 16px;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-list { flex-direction: column; gap: 14px; }
  .nav.open .nav-cta { justify-content: center; }
  .hero { padding: 110px 24px 64px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-actions { justify-content: center; }
  .section-head { text-align: left; }
  .donation-cta { text-align: left; }
  .donation-cta-logo {
    display: flex;
    width: fit-content;
    margin: 0 auto 24px;
  }
  .donation-cta .btn {
    display: flex;
    width: fit-content;
  }
  .about-card { text-align: left; }
  .card h3 { text-align: left; }
  .hero-illust { max-width: 360px; order: -1; }
  .pc-only { display: none; }
  .float-1 {
    top: calc(110px + min(60vw, 210px));
    left: 4%;
  }
  .section { padding: 70px 24px; }
  .support, .contact { padding: 70px 24px; }
  .cards { grid-template-columns: 1fr; gap: 20px; }
  .donation-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-card { padding: 40px 28px; }
  .about-card p { font-size: 16px; line-height: 2; }
  .donation-cta { padding: 32px 24px; }
  .contact-form { padding: 32px 24px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-radios { flex-direction: column; }
}

@media (max-width: 640px) {
  /* Cluster all decorations around the FV illustration at the top of the
     hero, so they never reach the text/button column below. On mobile the
     illustration occupies roughly y = 110px (hero padding-top) to 110px +
     min(viewport - 48, 360) — all floats stay within this band. */
  .float-1 {
    top: 90px;
    left: 3vw;
    width: 8vw;
    max-width: 36px;
  }
  .float-2 {
    top: 120px;
    right: 3vw;
    bottom: auto;
    width: 9vw;
    max-width: 40px;
  }
  .float-3 {
    top: 260px;
    right: 7vw;
    bottom: auto;
    width: 6vw;
    max-width: 28px;
  }
}

@media print {
  .float, .hero-actions, .contact-form, .form-turnstile,
  .contact-line-cta, .donation-cta .btn, .nav-cta {
    display: none !important;
  }
  .hero, .section, .support, .housing, .donation, .contact {
    background: #fff !important;
    padding: 16px !important;
  }
  .hero::before { display: none !important; }
  .about-card, .card, .donation-cta, .housing-info, .housing-box {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    page-break-inside: avoid;
  }
  .section-eyebrow { color: #555 !important; }
  .section-title .wavy { background: none !important; }
  .hero h1 .accent { color: #000 !important; }
  .hero h1 .accent::after { display: none !important; }
}
