/* directory + about + community hub */

/* ---- Local Directory: simple cards ---- */
.dir-filter {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  max-width: 820px; margin: 0 auto;
}
.dir-simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
}
.dir-simple-grid > .reveal { height: 100%; }
.dir-simple-grid > .reveal > .dir-simple-card { height: 100%; }
.dir-simple-card {
  display: flex;
  flex-direction: column;
  min-height: 168px;
  padding: 26px 28px;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(20, 23, 31, 0.06);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
          backdrop-filter: blur(12px) saturate(140%);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.dir-simple-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lifted); }
.dir-simple-card__cat { font-size: 11px; padding: 4px 11px; margin-bottom: 16px; display: inline-flex; align-self: flex-start; }
.dir-simple-card h3 {
  font-family: "Sora", sans-serif; font-size: 20px; font-weight: 600;
  color: var(--ink-900); margin-bottom: 10px; line-height: 1.15;
}
.dir-simple-card__addr {
  display: flex; align-items: center; gap: 8px;
  font-size: 14.5px; color: var(--ink-600);
  margin-top: auto;
}

/* ---- Community Hub: register-interest cards ---- */
.interest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
}
.interest-grid > .reveal { height: 100%; }
.interest-grid > .reveal > .interest-card { height: 100%; }
.interest-card {
  display: flex; flex-direction: column;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(20, 23, 31, 0.06);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
          backdrop-filter: blur(12px) saturate(140%);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.interest-card.sent { border-color: rgba(31, 122, 58, 0.3); }
.interest-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.interest-card__ico {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  display: grid; place-items: center; color: var(--amber-700);
  background: var(--grad-ember-soft);
  border: 1px solid rgba(232, 84, 32, 0.18);
}
.interest-card__head h3 {
  font-family: "Sora", sans-serif; font-size: 19px; font-weight: 600;
  color: var(--ink-900); line-height: 1.15;
}
.interest-card__desc { font-size: 14.5px; line-height: 1.55; color: var(--ink-600); margin-bottom: 18px; }
.interest-card__form { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.interest-card__form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 11px;
  border: 1px solid rgba(20, 23, 31, 0.12);
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit; font-size: 15px; color: var(--ink-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.interest-card__form input::placeholder { color: var(--ink-400); }
.interest-card__form input:focus {
  outline: none; border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(249, 168, 38, 0.16);
}
.interest-card__submit { justify-content: center; margin-top: 6px; }
.interest-card__done {
  margin-top: auto; display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
.interest-card__check {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #2f9e54, #1f7a3a);
  box-shadow: 0 10px 24px -10px rgba(31, 122, 58, 0.6);
}
.interest-card__done p { font-size: 15px; line-height: 1.55; color: var(--ink-700); }
.interest-card__done strong { color: var(--ink-900); }
.interest-card__reset {
  font-family: "Sora", sans-serif; font-size: 13px; font-weight: 600;
  color: var(--amber-700); padding: 4px 0;
}
.interest-card__reset:hover { color: var(--amber-800); }

.dir-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.dir-card {
  padding: 24px 28px;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(20, 23, 31, 0.06);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.dir-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lifted); }

.dir-map {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 540px;
}
.dir-map__inner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 540px;
  border: 1px solid rgba(255, 184, 88, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(249, 168, 38, 0.10), transparent 70%),
    linear-gradient(135deg, #1a1d28 0%, #0c0e15 100%);
  box-shadow: var(--shadow-soft);
}

/* ============ ABOUT ============ */
.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}
.story-row--right .story-row__copy   { order: 2; }
.story-row--right .story-row__motif  { order: 1; }
.story-row__motif {
  display: grid;
  place-items: center;
  min-height: 280px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(249, 168, 38, 0.20), transparent 70%);
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.team-card {
  position: relative;
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(20, 23, 31, 0.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.team-card__portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(249, 168, 38, 0.55), transparent 60%),
    linear-gradient(160deg, #2f3346, #14171f);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.team-card__init {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 56px;
  color: rgba(255, 247, 235, 0.18);
  letter-spacing: -0.04em;
}
.team-card__shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255, 235, 195, 0.25), transparent 50%);
}
.team-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.team-card__role {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-700);
  font-weight: 600;
  margin-bottom: 10px;
}
.team-card p { font-size: 13px; line-height: 1.55; }

.values-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.value-card {
  padding: 28px 22px;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.7);
  border: 1px solid rgba(20, 23, 31, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s, box-shadow 0.4s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lifted); }
.value-card__ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  margin-bottom: 18px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, #fff3df, #ffd28b);
  border: 1px solid rgba(232, 84, 32, 0.18);
  color: var(--amber-800);
}
.value-card h4 { font-family: "Sora", sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.value-card p { font-size: 13.5px; line-height: 1.5; }

/* ---------- FAQ / Q&A ---------- */
.faq-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  max-width: 820px; margin: 0 auto 36px;
}
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(20, 23, 31, 0.07);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
          backdrop-filter: blur(10px) saturate(140%);
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.faq-item.open { border-color: rgba(232, 84, 32, 0.28); box-shadow: var(--shadow-lifted); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px;
  text-align: left;
  font-family: "Sora", sans-serif; font-size: 17px; font-weight: 600;
  color: var(--ink-900);
  background: none; border: none;
}
.faq-ico {
  position: relative; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-ember-soft);
  border: 1px solid rgba(232, 84, 32, 0.25);
}
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--amber-700); border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}
.faq-ico::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.faq-ico::after  { width: 2px; height: 10px; transform: translate(-50%, -50%); }
.faq-item.open .faq-ico::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s var(--ease-out);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a__inner { overflow: hidden; }
.faq-a p {
  margin: 0; padding: 0 26px 24px;
  font-size: 15.5px; line-height: 1.65; color: var(--ink-600);
  max-width: 62ch;
}

@media (max-width: 980px) {
  .dir-grid { grid-template-columns: 1fr; }
  .dir-map__inner { height: 360px; }
  .story-row { grid-template-columns: 1fr; gap: 32px; padding: 32px 0; }
  .story-row--right .story-row__copy { order: 1; }
  .story-row--right .story-row__motif { order: 2; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-row { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Ambient atmosphere — baked-in defaults
   (formerly the "vivid" Atmosphere tweak; the tweak panel
   has been removed, so these now ship as the fixed look.)
   ========================================================= */
.mesh { opacity: 0.85 !important; }
.mesh::before, .mesh::after { filter: blur(14px) !important; }
.breathe { animation-duration: 3.5s !important; }
.light-streak { opacity: 0.6 !important; }
.scroll-line__dot { animation-duration: 1.71s !important; }
.util-dot, .pulse { animation-duration: 1.71s !important; }
