/*
Theme Name: LSV Sasaya
Theme URI: https://lsv-sasaya.jp
Author: 一関市笹谷地区ローカル・スタンダード・ビレッジ推進協議会
Description: 一関市笹谷地区ローカル・スタンダード・ビレッジ推進協議会 公式テーマ
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: lsv-sasaya
*/

/* ===== CSS Variables ===== */
:root {
  --color-bg: #f5f0e8;
  --color-bg-dark: #ede7da;
  --color-green: #3a5c3a;
  --color-green-dark: #2d4a2d;
  --color-green-light: #5a7c5a;
  --color-sand: #c8b89a;
  --color-text: #2a2a2a;
  --color-text-light: #5a5a5a;
  --color-white: #ffffff;
  --color-tag-news: #3a5c3a;
  --color-tag-report: #8a7a5a;
  --font-serif: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', serif;
  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ===== Container ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

/* Site Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
}

.site-logo-text {
  line-height: 1.3;
}

.site-logo-text .region {
  font-size: 10px;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

.site-logo-text .name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-green-dark);
  letter-spacing: 0.02em;
}

/* Navigation */
#site-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

#site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.04em;
  padding-bottom: 4px;
  position: relative;
  transition: color 0.2s;
}

#site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-green);
  transition: width 0.3s;
}

#site-nav a:hover,
#site-nav .current-menu-item a { color: var(--color-green); }
#site-nav a:hover::after,
#site-nav .current-menu-item a::after { width: 100%; }

/* Contact Button */
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-green);
  color: var(--color-white) !important;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.btn-contact:hover {
  background: var(--color-green-dark);
  transform: translateY(-1px);
}

.btn-contact svg { width: 14px; height: 14px; fill: currentColor; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== Hero Section ===== */
#hero {
  position: relative;
  height: 62vh;
  min-height: 460px;
  overflow: hidden;
  margin-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/hero.jpg') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 32px 60px 24px;
  max-width: 700px;
}

.hero-catch {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 28px;
}

.hero-catch span {
  display: table;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  padding: 4px 16px;
  border-radius: 4px;
  margin-bottom: 6px;
  white-space: nowrap;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 2;
  margin-bottom: 40px;
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--color-white);
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
  width: fit-content;
}

.btn-video:hover { background: rgba(255,255,255,0.35); }

.btn-video .play-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-video .play-icon::after {
  content: '';
  border-style: solid;
  border-width: 6px 0 6px 11px;
  border-color: transparent transparent transparent var(--color-green);
  margin-left: 2px;
}

/* LSV vertical text */
.hero-label {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  z-index: 2;
}

/* Hero wave bottom overlay */
.hero-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave-bottom svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Wave divider */
.wave-divider {
  position: relative;
  background: var(--color-bg);
  margin-top: -2px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== Section Commons ===== */
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--color-sand);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 2;
  margin-bottom: 32px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-green);
  border-bottom: 1px solid var(--color-green);
  padding-bottom: 2px;
  transition: gap 0.2s;
}

.btn-more:hover { gap: 14px; }
.btn-more::after { content: '→'; }

/* ===== Mission Section ===== */
#mission {
  background: var(--color-bg);
  padding-top: 8px;
}

.mission-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.mission-left { padding-top: 8px; }
.mission-illust { margin-top: 32px; opacity: 0.65; }
.mission-illust svg { width: 100%; max-width: 320px; height: auto; }
.mission-left .section-title { font-size: clamp(20px, 2.2vw, 28px); }

.mission-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mission-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.mission-card:hover { transform: translateY(-4px); }

.mission-card-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: block;
}

.mission-card:nth-child(1) .mission-card-img { border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%; }
.mission-card:nth-child(2) .mission-card-img { border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%; }
.mission-card:nth-child(3) .mission-card-img { border-radius: 55% 45% 40% 60% / 45% 55% 60% 40%; }
.mission-card:nth-child(4) .mission-card-img { border-radius: 45% 55% 60% 40% / 60% 45% 55% 50%; }

.mission-card-icon {
  width: 72px;
  height: 72px;
  background: var(--color-green-dark);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -36px auto 12px;
  position: relative;
  z-index: 1;
}

.mission-card-icon svg { width: 20px; height: 20px; fill: white; }
.mission-card-icon img { width: 72px; height: 72px; object-fit: contain; }

.mission-card h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mission-card p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===== News & Reports ===== */
#news-reports {
  background: var(--color-bg-dark);
}

.news-reports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* News */
.news-header, .report-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.news-header h2, .report-header h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
}

.news-list { display: flex; flex-direction: column; gap: 12px; }

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.news-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.news-item-thumb {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  object-fit: cover;
}
.news-item-thumb-placeholder {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-item-body {
  padding: 12px 14px 12px 0;
  flex: 1;
  min-width: 0;
}

.news-date {
  font-size: 13px;
  color: var(--color-text-light);
  white-space: nowrap;
  min-width: 90px;
}

.news-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  color: white;
}

.news-tag.tag-news { background: var(--color-green); }
.news-tag.tag-report { background: var(--color-tag-report); }

.news-title {
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.news-title a:hover { color: var(--color-green); }

.btn-news-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-green);
  border: 1px solid var(--color-green);
  padding: 8px 20px;
  border-radius: 50px;
  margin-top: 24px;
  transition: background 0.2s, color 0.2s;
}

.btn-news-more:hover {
  background: var(--color-green);
  color: white;
}

/* Reports */
.report-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.report-card { cursor: pointer; }

.report-card-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 12px;
}

.report-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.report-card:hover .report-card-img img { transform: scale(1.05); }

.report-card h3 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

/* ===== About Sasaya ===== */
#about-sasaya {
  background: var(--color-bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  position: relative;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-images .img-main {
  grid-row: 1 / 3;
}

.about-deco {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  z-index: -1;
}

/* ===== Footer ===== */
#site-footer {
  background: var(--color-green-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo .name {
  font-family: var(--font-serif);
  font-size: 16px;
  color: white;
  margin-bottom: 12px;
}

.footer-logo .desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.footer-nav h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }

.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-nav a:hover { color: white; }

.footer-contact h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.footer-contact p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 2;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===== Page Hero ===== */
.page-hero {
  background: var(--color-green-dark);
  color: white;
  padding: 120px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.page-hero .breadcrumb a:hover { color: white; }

/* ===== Page Content ===== */
.page-content {
  padding: 80px 0;
}

.entry-content {
  max-width: 800px;
  margin: 0 auto;
}

.entry-content h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-green);
  color: var(--color-green-dark);
}

.entry-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 14px;
}

.entry-content p { margin-bottom: 20px; }

/* ===== Archive ===== */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.post-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.post-card:hover { transform: translateY(-4px); }

.post-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.post-card:hover .post-card-img img { transform: scale(1.05); }

.post-card-body { padding: 20px; }

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--color-text-light);
}

.post-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.post-card h3 a:hover { color: var(--color-green); }

.post-card p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===== Contact Form ===== */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 60px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-group label .required {
  color: #c0392b;
  margin-left: 4px;
  font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-green);
  background: white;
}

.form-group textarea { min-height: 160px; resize: vertical; }

.form-submit {
  text-align: center;
  margin-top: 36px;
}

.btn-submit {
  background: var(--color-green);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 60px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.06em;
}

.btn-submit:hover {
  background: var(--color-green-dark);
  transform: translateY(-2px);
}

/* ===== Pagination ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid #ddd;
  transition: all 0.2s;
}

.pagination a:hover,
.pagination .current {
  background: var(--color-green);
  border-color: var(--color-green);
  color: white;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 200;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 20px; }

.mobile-menu a {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--color-text);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .mission-inner { grid-template-columns: 1fr; }
  .mission-cards { grid-template-columns: repeat(2, 1fr); }
  .news-reports-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #site-nav, .btn-contact { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 24px; }
  .hero-catch { font-size: 28px; }

  .mission-cards { grid-template-columns: repeat(2, 1fr); }

  .archive-grid { grid-template-columns: 1fr; }
  .report-cards { grid-template-columns: repeat(2, 1fr); }

  .contact-form { padding: 32px 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .about-images { grid-template-columns: 1fr; grid-template-rows: auto; }
  .about-images .img-main { grid-row: auto; }
}

@media (max-width: 480px) {
  .mission-cards { grid-template-columns: 1fr; }
  .report-cards { grid-template-columns: 1fr; }
}

/* ===== Fade-in animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-card:nth-child(2) { transition-delay: 0.1s; }
.mission-card:nth-child(3) { transition-delay: 0.2s; }
.mission-card:nth-child(4) { transition-delay: 0.3s; }

/* ===== 私たちの想いページ ===== */
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.75); margin-top: 8px; }
.page-hero .section-label { color: rgba(255,255,255,0.5); margin-bottom: 12px; }

.mission-page-vision { max-width: 760px; margin: 0 auto; text-align: center; }
.mission-page-lead { font-size: 16px; line-height: 2; color: var(--color-text-light); }

.mission-page-ls-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mission-page-ls-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--color-green-dark);
  line-height: 1.8;
  border-left: 3px solid var(--color-green);
  padding-left: 24px;
  margin: 0;
}

.mission-page-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.mission-page-pillar {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.pillar-number {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-bg-dark);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pillar-icon svg { width: 24px; height: 24px; fill: white; }
.mission-page-pillar h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-green-dark);
}
.mission-page-pillar p { font-size: 14px; line-height: 1.9; color: var(--color-text-light); }

.mission-page-statement .section-label { margin-bottom: 24px; }

/* ===== Contact Form 7 ===== */
.single-content .wpcf7 {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  margin: 32px 0;
}
.single-content .wpcf7 p {
  margin-bottom: 20px;
}
.single-content .wpcf7 p:last-child {
  margin-bottom: 0;
}
.single-content .wpcf7 input[type="text"],
.single-content .wpcf7 input[type="email"],
.single-content .wpcf7 input[type="tel"],
.single-content .wpcf7 input[type="number"],
.single-content .wpcf7 select {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin-top: 8px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s;
  box-sizing: border-box;
  appearance: none;
}
.single-content .wpcf7 input[type="number"] {
  width: 120px;
}
.single-content .wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.single-content .wpcf7 input:focus,
.single-content .wpcf7 select:focus {
  outline: none;
  border-color: var(--color-green);
  background: white;
}
.single-content .wpcf7 input[type="submit"] {
  display: inline-block;
  width: auto;
  padding: 14px 48px;
  background: var(--color-green-dark);
  color: white;
  border: none;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
}
.single-content .wpcf7 input[type="submit"]:hover {
  background: var(--color-green);
  transform: translateY(-1px);
}
.single-content .wpcf7 .wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}
.single-content .wpcf7 .wpcf7-response-output {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  border: none;
}
.single-content .wpcf7 .wpcf7-mail-sent-ok {
  background: #e8f5e9;
  color: #2e7d32;
}
.single-content .wpcf7 .wpcf7-validation-errors,
.single-content .wpcf7 .wpcf7-mail-sent-ng {
  background: #fdecea;
  color: #c0392b;
}

@media (max-width: 768px) {
  .mission-page-ls-inner { grid-template-columns: 1fr; gap: 40px; }
  .mission-page-pillars-grid { grid-template-columns: 1fr; }
}
