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

:root {
  --emerald-950: #042f1e;
  --emerald-900: #064e2b;
  --emerald-800: #065f36;
  --emerald-700: #0a7c48;
  --emerald-600: #0d9656;
  --emerald-500: #10b466;
  --cream-50:  #f7f4ee;
  --cream-100: #f0ebe0;
  --cream-200: #e8e0d0;
  --cream-300: #d9ceb8;
  --brown-800: #2c1f12;
  --brown-700: #3d2b1a;
  --brown-600: #5c4033;
  --text-dark: #1a1a1a;
  --text-mid:  #3a3a3a;
  --text-light:#6b6b6b;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Lato', system-ui, -apple-system, sans-serif;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
address { font-style: normal; }
.no-style { font-style: normal; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Skip Link ──────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--emerald-900); color: var(--cream-50);
  padding: 8px 16px; border-radius: var(--radius-sm);
  z-index: 200; font-size: 0.875rem;
}
.skip-link:focus { top: 16px; }

/* ── Typography ─────────────────────────────────── */
.eyebrow, .section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-700);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--emerald-950);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--emerald-700); }

.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-mid);
  line-height: 1.5;
  max-width: 560px;
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 8px 20px; font-size: 0.8125rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-emerald {
  background: var(--emerald-700);
  color: var(--cream-50);
  border: 2px solid var(--emerald-700);
}
.btn-emerald:hover { background: var(--emerald-800); border-color: var(--emerald-800); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,124,72,0.25); }

.btn-cream {
  background: var(--cream-100);
  color: var(--emerald-950);
  border: 2px solid var(--cream-100);
}
.btn-cream:hover { background: var(--cream-200); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.btn-outline-light {
  background: transparent;
  color: var(--cream-50);
  border: 2px solid rgba(247,244,238,0.6);
}
.btn-outline-light:hover { background: rgba(247,244,238,0.12); border-color: var(--cream-50); transform: translateY(-2px); }

/* ── Header ─────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,244,238,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20,83,45,0.08);
  transition: box-shadow var(--transition);
}
.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: 72px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--emerald-950);
}
.logo-mark { color: var(--emerald-700); flex-shrink: 0; }

.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-nav a:hover { color: var(--emerald-700); background: rgba(10,124,72,0.06); }

.nav-toggle { display: none; padding: 8px; color: var(--emerald-950); }
.hamburger {
  display: block; width: 22px; height: 2px;
  background: currentColor; position: relative;
  transition: var(--transition);
}
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
  width: 22px; height: 2px; background: currentColor;
  transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    var(--emerald-950) 0%,
    var(--emerald-800) 25%,
    var(--emerald-700) 50%,
    #1a6b4a 70%,
    var(--emerald-600) 100%
  );
  padding: 120px 24px 80px;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(6,78,43,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(16,180,102,0.3) 0%, transparent 50%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(4,47,30,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.7);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream-50);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--cream-200); }
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: rgba(247,244,238,0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex; align-items: center;
  justify-content: center; gap: 32px;
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream-50);
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  color: rgba(247,244,238,0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(247,244,238,0.2);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(247,244,238,0.5);
  font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Mission ────────────────────────────────────── */
.mission { padding: 100px 0; background: var(--cream-50); }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.mission-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--cream-200);
  transition: var(--transition);
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(20,83,45,0.08);
  border-color: var(--emerald-200, #a7f3d0);
}
.mission-icon {
  color: var(--emerald-700);
  margin-bottom: 1.5rem;
}
.mission-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--emerald-950);
  margin-bottom: 0.75rem;
}
.mission-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ── Involvement ────────────────────────────────── */
.involvement { padding: 100px 0; background: white; }
.involvement-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.involvement-text { max-width: 520px; }
.involvement-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 2rem;
}
.involvement-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 2.5rem; }
.involvement-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.9375rem; line-height: 1.6; color: var(--text-mid);
}
.check-icon { color: var(--emerald-700); flex-shrink: 0; margin-top: 1px; }
.involvement-cta { display: flex; flex-direction: column; gap: 12px; }
.involvement-note { font-size: 0.8125rem; color: var(--text-light); font-style: italic; }

.involvement-image { position: relative; }
.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(20,83,45,0.12);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-accent {
  position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 3px solid var(--emerald-200, #a7f3d0);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.6;
}

/* ── Events ─────────────────────────────────────── */
.events { padding: 100px 0; background: var(--cream-50); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 3rem;
}
.event-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-200);
  transition: var(--transition);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(20,83,45,0.08);
}
.event-card-image { overflow: hidden; }
.event-card-image img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-card:hover .event-card-image img { transform: scale(1.04); }
.event-card-body { padding: 28px; }
.event-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  background: rgba(10,124,72,0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.event-card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--emerald-950);
  margin-bottom: 8px;
}
.event-card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.event-meta {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-style: italic;
}
.events-note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-mid);
}
.events-note a {
  color: var(--emerald-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.events-note a:hover { color: var(--emerald-900); }

/* ── Stories ────────────────────────────────────── */
.stories { padding: 100px 0; background: var(--emerald-950); }
.stories .section-eyebrow { color: var(--cream-200); opacity: 0.7; }
.stories .section-title { color: var(--cream-50); }
.stories .section-title em { color: var(--cream-200); }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.story-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.story-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.story-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--emerald-500);
  opacity: 0.4;
  position: absolute; top: 16px; left: 28px;
  pointer-events: none;
}
.story-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(247,244,238,0.9);
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.story-cite {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
}
.story-cite-text {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--cream-50);
}
.story-cite-divider {
  width: 24px; height: 1px;
  background: rgba(247,244,238,0.3);
  flex-shrink: 0;
}
.story-cite-role {
  font-size: 0.8125rem;
  color: rgba(247,244,238,0.55);
}

/* ── CTA Banner ─────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--emerald-800) 0%,
    var(--emerald-700) 50%,
    #1a8a54 100%
  );
}
.cta-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(16,180,102,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 70%, rgba(4,47,30,0.5) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 700px;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream-50);
  margin-bottom: 1.25rem;
}
.cta-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(247,244,238,0.85);
  margin-bottom: 2.5rem;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ────────────────────────────────────── */
.contact { padding: 100px 0; background: var(--cream-50); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info { max-width: 480px; }
.contact-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 2rem; }
.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 4px;
}
.contact-detail-link {
  font-size: 1rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--cream-200);
  padding-bottom: 2px;
  transition: var(--transition);
}
.contact-detail-link:hover { color: var(--emerald-700); border-color: var(--emerald-700); }
.contact-detail address { line-height: 1.7; color: var(--text-mid); font-size: 0.9375rem; }
.contact-hours {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--text-light); line-height: 1.6;
}
.contact-hours-icon { color: var(--emerald-700); flex-shrink: 0; margin-top: 2px; }

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--cream-200);
  box-shadow: 0 8px 40px rgba(20,83,45,0.06);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream-50);
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-600);
  background: white;
  box-shadow: 0 0 0 3px rgba(13,150,86,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 12px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { color: var(--emerald-700); margin: 0 auto 1rem; }
.success-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--emerald-950);
  margin-bottom: 0.75rem;
}
.success-text {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 360px;
  margin-left: auto; margin-right: auto;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--emerald-950);
  color: var(--cream-50);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo-light { color: var(--cream-50); margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(247,244,238,0.6);
  max-width: 320px;
}
.footer-links-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream-200);
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(247,244,238,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--cream-50); }
.footer-link {
  color: rgba(247,244,238,0.7);
  font-size: 0.9375rem;
  transition: var(--transition);
}
.footer-link:hover { color: var(--cream-50); }
.footer-contact address { font-size: 0.9375rem; color: rgba(247,244,238,0.6); line-height: 1.7; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(247,244,238,0.4);
}
.footer-copy { color: rgba(247,244,238,0.5); }

/* ── Reveal Animations (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}
/* When JS is unavailable, content is already visible (default opacity:1 in CSS above) */

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .mission-grid,
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; z-index: 110; }
  .main-nav {
    position: fixed; inset: 0;
    background: rgba(247,244,238,0.98);
    backdrop-filter: blur(16px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: all; }
  .main-nav ul {
    flex-direction: column; gap: 8px;
    text-align: center;
  }
  .main-nav a {
    font-size: 1.125rem;
    padding: 12px 24px;
    color: var(--emerald-950);
  }

  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.5rem; }
  .hero-scroll { display: none; }

  .mission-grid,
  .events-grid,
  .stories-grid { grid-template-columns: 1fr; }

  .involvement-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .involvement-text { max-width: 100%; }
  .image-accent { display: none; }

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

  .contact-form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; }
}
