/* ═══════════════════════════════════════════════════════
   MYBIBLELENS — Digital Sanctuary Design System
   Brand Guide: Ammunition-Grade Specification
   ═══════════════════════════════════════════════════════ */

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ─── SANCTUARY PALETTE ─── */
:root {
  /* Core Brand Colors */
  --deep-brown:     #3D2B1F;
  --parchment:      #F5F2ED;
  --gold:           #b6751d;
  --gold-hover:     #9a6218;
  --electric-blue:  #00D4FF;
  --dross-red:      #B22222;

  /* Surfaces */
  --color-bg:       #F5F2ED;
  --color-surface:  #EFEBE4;
  --color-surface-2: #FAF8F5;
  --color-border:   #D6CEBD;
  --color-divider:  #E0D9CC;

  /* Text */
  --color-text:       #3D2B1F;
  --color-text-muted: #7A6E60;
  --color-text-faint: #B0A594;

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-hero: clamp(2.5rem,   1rem    + 4vw,    4.5rem);

  /* Spacing (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-display: 'Hammersmith One', 'Impact', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  /* Radius — brand guide: 32px for large cards, pill for chambers */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 2rem;

  /* Transitions */
  --transition-fast: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows — warm-toned */
  --shadow-sm: 0 1px 3px rgba(61, 43, 31, 0.06);
  --shadow-md: 0 4px 12px rgba(61, 43, 31, 0.08);
  --shadow-lg: 0 12px 32px rgba(61, 43, 31, 0.12);

  /* Content widths */
  --content-narrow: 720px;
  --content-default: 960px;
  --content-wide: 1200px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }

::selection {
  background: rgba(182, 117, 29, 0.2);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

button { cursor: pointer; background: none; border: none; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--gold-hover); text-decoration: underline; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;
}

/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 242, 237, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.logo-link:hover { text-decoration: none; color: var(--color-text); }

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.15em;
  color: var(--deep-brown);
}

.main-nav {
  display: flex;
  gap: var(--space-8);
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) 0;
  position: relative;
  transition: color var(--transition-fast);
}
.nav-link:hover {
  color: var(--color-text);
  text-decoration: none;
}
.nav-link.active {
  color: var(--deep-brown);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep-brown);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.mobile-menu-btn.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 242, 237, 0.98);
  z-index: 99;
  justify-content: center;
  align-items: center;
}
.mobile-nav-overlay.open {
  display: flex;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--deep-brown);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.mobile-nav-link:hover {
  color: var(--gold);
  text-decoration: none;
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* ═══════════════════════════════════════════════════════
   HERO (About page)
   ═══════════════════════════════════════════════════════ */

.hero {
  background: var(--deep-brown);
  padding: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-6);
  text-align: center;
}

.hero-inner {
  max-width: var(--content-default);
  margin: 0 auto;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  color: var(--parchment);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero-tm {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(182, 117, 29, 0.7);
  margin-bottom: var(--space-3);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(245, 242, 237, 0.75);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Page Hero (non-About pages) */
.page-hero {
  background: var(--deep-brown);
  padding: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-6);
  text-align: center;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--parchment);
  margin-bottom: var(--space-3);
}
.page-hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245, 242, 237, 0.6);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   CONTENT BLOCKS
   ═══════════════════════════════════════════════════════ */

.content-block {
  padding: clamp(var(--space-10), 6vw, var(--space-20)) var(--space-6);
}

.content-inner {
  max-width: var(--content-default);
  margin: 0 auto;
}

.content-inner p {
  margin-bottom: var(--space-4);
  line-height: 1.75;
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--deep-brown);
  margin-bottom: var(--space-6);
}

.subsection-heading {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--deep-brown);
  margin-bottom: var(--space-4);
}

.divider {
  height: 1px;
  background: var(--color-divider);
  margin: clamp(var(--space-10), 4vw, var(--space-16)) 0;
}

/* ─── About Grid ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-10);
  align-items: start;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.callout-card {
  background: var(--deep-brown);
  color: var(--parchment);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(182, 117, 29, 0.3);
}
.callout-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}
.callout-card p {
  color: rgba(245, 242, 237, 0.85);
  line-height: 1.7;
}
.callout-card strong {
  color: var(--gold);
}

/* Pull Quote */
.pull-quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--deep-brown);
  border-left: 3px solid var(--gold);
  padding-left: var(--space-6);
  margin: var(--space-10) 0;
  line-height: 1.4;
}

/* ─── Team Grid ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  box-shadow: inset 0 1px 2px rgba(61, 43, 31, 0.04);
}

.team-role {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-1);
}
.team-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--deep-brown);
}

/* Partner Block */
/* Show More Button */
.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 9999px;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.show-more-btn:hover {
  background: var(--gold);
  color: var(--parchment);
}
.show-more-btn svg {
  flex-shrink: 0;
}

.partner-block {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  margin-top: var(--space-8);
}

/* ═══════════════════════════════════════════════════════
   SUPPORT PAGE
   ═══════════════════════════════════════════════════════ */

.contact-email-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--gold);
  padding: var(--space-4) var(--space-8);
  border: 2px solid var(--gold);
  border-radius: 9999px;
  margin-top: var(--space-4);
  transition: all var(--transition-fast);
}
.contact-email-link:hover {
  background: var(--gold);
  color: var(--parchment);
  text-decoration: none;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

@media (max-width: 700px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

.support-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  box-shadow: inset 0 1px 2px rgba(61, 43, 31, 0.04);
}
.support-card--crisis {
  border-color: var(--dross-red);
  background: rgba(178, 34, 34, 0.04);
}
.support-card--crisis .support-card-label {
  color: var(--dross-red);
}
.support-card-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}
.support-card-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--deep-brown);
  margin-bottom: var(--space-3);
}
.support-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.address-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  margin-top: var(--space-4);
  box-shadow: inset 0 1px 2px rgba(61, 43, 31, 0.04);
}
.address-block p {
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}
.address-block p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════
   LEGAL CONTENT (Privacy & Terms)
   ═══════════════════════════════════════════════════════ */

.legal-content {
  max-width: var(--content-narrow);
}

.legal-intro {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-divider);
}

.legal-intro p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* Table of Contents */
.legal-toc {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-6) var(--space-8);
  border-radius: var(--radius-2xl);
  margin-bottom: var(--space-12);
  box-shadow: inset 0 1px 2px rgba(61, 43, 31, 0.04);
}

.toc-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.toc-list {
  list-style: none;
  counter-reset: toc-counter;
  padding: 0;
}
.toc-list li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-2);
}
.toc-list li a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  gap: var(--space-3);
  padding: var(--space-1) 0;
  transition: color var(--transition-fast);
}
.toc-list li a::before {
  content: counter(toc-counter) ".";
  font-weight: 600;
  color: var(--gold);
  min-width: 1.5em;
}
.toc-list li a:hover {
  color: var(--deep-brown);
  text-decoration: none;
}

/* Legal Sections */
.legal-section {
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-divider);
}
.legal-section:last-child {
  border-bottom: none;
}

.legal-heading {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--deep-brown);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}

.legal-num {
  color: var(--gold);
  font-size: var(--text-lg);
}

.legal-subheading {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--deep-brown);
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
}

.legal-list {
  padding-left: var(--space-6);
  margin-bottom: var(--space-5);
}
.legal-list li {
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text);
}
.legal-list li strong {
  color: var(--deep-brown);
}

.legal-list.ordered {
  list-style-type: decimal;
}

/* Legal Callout */
.legal-callout {
  background: rgba(182, 117, 29, 0.08);
  border-left: 3px solid var(--gold);
  padding: var(--space-5) var(--space-6);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: var(--space-5) 0;
}
.legal-callout p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--deep-brown);
}

.legal-callout--warning {
  background: rgba(178, 34, 34, 0.06);
  border-left-color: var(--dross-red);
}
.legal-callout--warning p {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.legal-callout--crisis {
  background: rgba(178, 34, 34, 0.08);
  border-left-color: var(--dross-red);
}
.legal-callout--crisis p {
  font-weight: 600;
  color: var(--dross-red);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.site-footer {
  background: var(--deep-brown);
  color: rgba(245, 242, 237, 0.7);
  padding: var(--space-12) var(--space-6);
}

.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  color: var(--parchment);
}

.footer-nav {
  display: flex;
  gap: var(--space-6);
}
.footer-nav a {
  font-size: var(--text-xs);
  color: rgba(245, 242, 237, 0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-nav a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-divider {
  height: 1px;
  background: rgba(245, 242, 237, 0.1);
  margin: var(--space-8) 0;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
}

.footer-social-link {
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(245, 242, 237, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--transition-fast);
}
.footer-social-link:hover {
  color: var(--gold);
  text-decoration: none;
}

.future-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(182, 117, 29, 0.15);
  padding: 2px 7px;
  border-radius: 9999px;
  border: 1px solid rgba(182, 117, 29, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(245, 242, 237, 0.5);
}
.footer-contact a {
  color: var(--gold);
}
.footer-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    gap: var(--space-6);
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */

.page-section {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════ */

.support-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  background: rgba(61, 43, 31, 0.04);
  border: 1px solid rgba(182, 117, 29, 0.2);
  border-radius: 12px;
  padding: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3D2B1F;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-input {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #3D2B1F;
  background: #FDFAF6;
  border: 1.5px solid rgba(182, 117, 29, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: #b6751d;
  box-shadow: 0 0 0 3px rgba(182, 117, 29, 0.15);
}

.form-input::placeholder {
  color: rgba(61, 43, 31, 0.35);
}

.form-select {
  appearance: none;
  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='%23b6751d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-submit-btn {
  font-family: 'Hammersmith One', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #F5F2ED;
  background: #b6751d;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  align-self: flex-start;
}

.form-submit-btn:hover {
  background: #9a621a;
}

.form-submit-btn:active {
  transform: scale(0.98);
}

.form-submit-btn:disabled {
  background: rgba(182, 117, 29, 0.4);
  cursor: not-allowed;
}

.form-success {
  background: rgba(0, 150, 80, 0.08);
  border: 1px solid rgba(0, 150, 80, 0.3);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: #1a6b3a;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-error {
  background: rgba(178, 34, 34, 0.06);
  border: 1px solid rgba(178, 34, 34, 0.25);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: #B22222;
  font-size: 0.95rem;
}

.form-error a {
  color: #B22222;
  font-weight: 600;
}

@media (max-width: 600px) {
  .support-form {
    padding: 1.25rem;
  }
  .form-submit-btn {
    width: 100%;
    text-align: center;
  }
}
