/* FCHome Personal Website Styles */
:root {
  --color-navy: #18416C;
  --color-teal: #35B7BB;
  --color-charcoal: #0F1B2A;
  --color-slate: #213754;
  --color-light: #F5F7FA;
  --color-white: #FFFFFF;
  --color-text: #1D1D1F;
  --color-text-muted: #6E6E73;
  --color-border: #E1EDF5;
  --max-width: min(1200px, 92vw);
  --section-padding: clamp(3rem, 8vw, 4.5rem);
  --font-heading: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

main {
  padding-top: 100px;
}

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

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 1.25rem;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  transform: translateY(0);
  transition: transform 0.3s ease;
  height: 100px;
  min-height: 100px;
  padding: 0;
  margin: 0;
  overflow: visible;
}

.site-header.hidden {
  transform: translateY(-100%) !important;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 1.5rem;   /* MATCHES .container → aligns logo with hero text + phone */
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100px;
  min-height: 100px;
  line-height: 0;
  overflow: visible;
  position: relative;
  gap: 3rem;
}


.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-navy);
  margin: 0;
  padding: 0;
  line-height: 0;
  background: transparent;
  overflow: visible;
  position: relative;

  /* 🔥 This aligns the heart logo’s edge perfectly with the “R” in Reimagining */
  margin-left: 0.05rem;
}


.brand .logo {
  width: auto;
  height: 250px;
  max-height: 250px;
  object-fit: contain;
  background: transparent;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.brand-text {
  font-family: var(--font-heading);
}

.nav {
  position: relative;
  align-self: center;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-icon {
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-icon:nth-of-type(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-icon:nth-of-type(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-icon:nth-of-type(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: var(--color-teal);
}

.cta-link {
  background: var(--color-navy);
  color: var(--color-white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
}

.cta-link:hover {
  background: var(--color-slate);
}

/* Hero Section */
.hero {
  position: relative;
  padding: var(--section-padding) 0;
  background: linear-gradient(140deg, var(--color-charcoal) 0%, var(--color-navy) 48%, rgba(53, 183, 187, 0.35) 100%);
  color: var(--color-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: 
    radial-gradient(circle at 20% 50%, var(--color-teal) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, var(--color-teal) 0%, transparent 50%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  align-content: center;
  min-height: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: var(--color-white);
  text-align: left;
}

.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
  text-align: left;
  width: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  align-self: center;
}

.device-mockup {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

.app-screenshot {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  display: block;
  background: #000;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid var(--color-teal);
}

.btn-secondary:hover {
  background: rgba(53, 183, 187, 0.12);
  border-color: var(--color-teal);
}

/* Sections */
.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-teal);
  margin: 0 0 0.75rem;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--color-text);
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 1.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.small {
  font-size: 0.875rem;
}

/* Mission Section */
.mission-section {
  background: var(--color-light);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

.mission-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1.5rem;
  width: 100%;
}

.timeline-date {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-align: center;
}

.timeline-season {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-teal);
  line-height: 1.2;
  display: block;
  margin: 0;
  padding: 0;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-teal);
  line-height: 1.2;
  display: block;
  margin: 0;
  margin-top: 0.25rem;
  padding: 0;
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  align-items: center;
  text-align: center;
  padding-left: 0;
}

.timeline-content h4 {
  color: var(--color-text);
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  align-self: flex-start;
}

.timeline-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.vision-quote {
  text-align: center;
  padding: 3rem;
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.quote-text {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--color-navy);
  margin: 0;
  font-weight: 500;
}

/* Project Section */
.project-section {
  background: var(--color-white);
}

.map-model {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.map-card {
  background: var(--color-light);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.map-card:hover {
  border-color: var(--color-teal);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(53, 183, 187, 0.2);
}

.map-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.map-card h3 {
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.map-card p {
  margin: 0;
  font-size: 0.95rem;
}

.architecture-section {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--color-light);
  padding: 3rem;
  border-radius: 24px;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.tech-badge {
  background: var(--color-white);
  color: var(--color-navy);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tech-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.tech-note {
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

/* Impact Section */
.impact-section {
  background: var(--color-light);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.impact-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

.impact-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
  text-align: center;
}

.impact-label {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0;
  text-align: center;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--color-teal);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-source {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
  font-weight: 600;
}

/* Get Involved Section */
.involved-section {
  background: var(--color-white);
}

.involved-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: stretch;
}

.involved-card {
  background: var(--color-light);
  padding: 3rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.involved-card h3 {
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.involved-card p {
  flex: 1;
  min-height: 100px;
}

.involved-card .btn-secondary {
  color: var(--color-navy);
  border-color: var(--color-teal);
}

.involved-card .btn-secondary:hover {
  color: var(--color-navy);
  background: rgba(53, 183, 187, 0.12);
}

.involved-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.link {
  color: var(--color-teal);
  font-weight: 600;
  transition: color 0.2s ease;
}

.link:hover {
  color: var(--color-navy);
  text-decoration: underline;
}

.qr-placeholder {
  margin-top: 1rem;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 12px;
  text-align: center;
  border: 2px dashed var(--color-border);
}

/* Locations Section */
.locations-section {
  background: var(--color-white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.location-card {
  background: var(--color-light);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.location-card:hover {
  border-color: var(--color-teal);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(53, 183, 187, 0.2);
}

.location-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.location-card h3 {
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.location-card p {
  margin: 0;
  font-size: 0.95rem;
}

.locations-impact {
  background: var(--color-light);
  padding: 3rem;
  border-radius: 24px;
  margin: 2rem 0;
}

.impact-stats h3 {
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 2rem;
}

.student-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.metric-item {
  text-align: center;
}

.metric-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
}

.metric-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

.funding-section {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 2px solid var(--color-border);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.sponsor-card {
  background: var(--color-light);
  padding: 2.5rem;
  border-radius: 20px;
}

.sponsor-card h4 {
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.sponsor-placeholder {
  padding: 1.5rem 2rem;
  background: var(--color-white);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border: 2px dashed var(--color-border);
  font-weight: 600;
}

.funding-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.funding-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 500;
}

.funding-list li:last-child {
  border-bottom: none;
}

.funding-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-light);
  border-radius: 20px;
}

.funding-cta p {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

/* Research Section */
.research-section {
  background: var(--color-light);
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0 3rem;
}

.research-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.research-card h4 {
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.research-resources {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 24px;
  margin: 3rem 0;
}

.research-resources h3 {
  color: var(--color-navy);
  margin-bottom: 2rem;
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-light);
  border-radius: 16px;
  transition: all 0.2s ease;
}

.resource-link:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.resource-icon {
  font-size: 2.5rem;
}

.resource-link strong {
  display: block;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.resource-link p {
  margin: 0;
  font-size: 0.9rem;
}

.partner-logos {
  text-align: center;
  margin-top: 3rem;
}

.logo-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.logo-grid span {
  padding: 1rem 2rem;
  background: var(--color-white);
  border-radius: 12px;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* About Section */
.about-section {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.portrait-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--color-light);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border);
  overflow: hidden;
}

.portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
}

.portrait-icon {
  font-size: 6rem;
  opacity: 0.3;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.values-list {
  margin: 2rem 0;
}

.values-list h4 {
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.value-tag {
  background: var(--color-light);
  color: var(--color-navy);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

/* Connect Section */
.connect-section {
  background: linear-gradient(140deg, var(--color-charcoal) 0%, var(--color-navy) 100%);
  color: var(--color-white);
}

.connect-section .eyebrow {
  color: var(--color-teal);
}

.connect-section h2 {
  color: var(--color-white);
}

.connect-section p {
  color: rgba(255, 255, 255, 0.9);
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.contact-item a {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--color-teal);
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form label {
  display: block;
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  background: rgba(255, 255, 255, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* Footer - Hidden */
.site-footer {
  display: none !important;
  background: var(--color-light);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: auto;
  height: 120px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 500px;
  margin: 0;
  color: var(--color-text-muted);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-heading {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 1rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--color-teal);
}

.footer-legal {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-legal p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.accessibility-note {
  font-size: 0.8rem !important;
  color: var(--color-text-muted) !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner,
  .mission-grid,
  .connect-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 900px) {
  .map-model,
  .testimonials,
  .involved-grid,
  .research-grid,
  .locations-grid,
  .sponsors-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .student-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .architecture-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .section {
    padding: 3rem 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}