/* SHE — v1 dark + bright red */
:root {
  --bg: #080808;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --text: #f4efe6;
  --text-muted: #a39a8c;
  --red: #ff2a2a;
  --red-bright: #ff5555;
  --red-dim: rgba(255, 42, 42, 0.28);
  --red-dark: #c41e1e;
  --border: rgba(244, 239, 230, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Noto Sans Armenian", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5rem;
  --container: min(72rem, 92vw);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.container { width: var(--container); margin-inline: auto; }

/* Cursor glow — see animations.css */
.cursor-glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  will-change: left, top, opacity, transform;
}

@media (hover: none) {
  .cursor-glow {
    display: none;
  }
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}
.site-header.scrolled {
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  width: var(--container);
  margin-inline: auto;
  display: flex; align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
}

.logo-svg {
  width: 5.5rem;
  height: auto;
  display: block;
  overflow: visible;
  animation: logoPulse 3s ease-in-out infinite;
}

.logo-sub {
  font-size: 0.5625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 11rem;
}

.nav-menu {
  display: flex; align-items: center;
  gap: 1.5rem; flex: 1;
  justify-content: flex-end;
}
.nav-menu a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}
.nav-menu a:hover { color: var(--text); }
.nav-cta {
  padding: 0.6rem 1.25rem !important;
  border: 1px solid var(--red) !important;
  color: var(--red) !important;
}
.nav-cta:hover {
  background: var(--red) !important;
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span {
  width: 24px; height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Search */
.nav-search-item { width: 100%; max-width: 14rem; margin-right: auto; margin-left: 1rem; }
.site-search { position: relative; width: 100%; }
.site-search-input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2.1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text);
  background: var(--bg-card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23a39a8c' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242.156a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") no-repeat 0.7rem center;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.site-search-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-dim);
}
.search-results {
  position: absolute; top: calc(100% + 0.4rem); left: 0; right: 0;
  z-index: 200;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.35rem;
  max-height: 14rem;
  overflow-y: auto;
}
.search-hit {
  display: flex; justify-content: space-between; width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: 0.8125rem; text-align: left;
  background: none; border: none; border-radius: 8px;
  cursor: pointer; color: var(--text);
}
.search-hit:hover, .search-hit.is-active { background: var(--bg-elevated); }
.search-hit-go { color: var(--red); }
.search-empty { padding: 1rem; font-size: 0.8rem; color: var(--text-muted); text-align: center; }
.search-flash { animation: searchFlash 1.4s var(--ease); }
@keyframes searchFlash {
  25% { box-shadow: 0 0 0 3px var(--red-dim); }
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 0;
    flex-direction: column; align-items: stretch;
    padding: 1.5rem; gap: 0;
    background: var(--bg);
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
    overflow-y: auto;
  }
  .nav-menu.open { opacity: 1; visibility: visible; }
  .nav-search-item { max-width: none; margin: 0 0 1rem; }
  .nav-menu a { display: block; padding: 1rem 0; font-size: 0.9rem; }
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}
h1 { font-size: clamp(2.75rem, 7vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); margin-bottom: 1.25rem; }
h1 em,
h2 em,
h3 em {
  font-style: italic;
  color: var(--red-bright);
}

.section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.section { padding: clamp(5rem, 12vw, 9rem) 0; position: relative; z-index: 1; }
.section-head { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-intro { color: var(--text-muted); max-width: 36rem; margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--bg); }
.btn-primary:hover { background: var(--red-bright); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.btn-full { width: 100%; }

/* Hero v1 */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.5) 0%, var(--bg) 88%),
    linear-gradient(105deg, rgba(255, 42, 42, 0.12) 0%, transparent 50%),
    url("../assets/founder-knarik.png") center / cover no-repeat;
  z-index: -1;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, transparent 0%, var(--bg) 100%);
}
.hero-content { width: var(--container); text-align: center; }
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
  font-size: clamp(0.65rem, 1.2vw, 0.75rem);
  width: 100%;
  overflow: visible;
}
.hero-brand-she {
  margin: 0;
  line-height: 1;
  width: 100%;
}
.hero-brand-tagline {
  margin: 0.65em 0 0;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* .she-brand — bright shine in animations.css */
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* Founder */
.founder { background: var(--bg-elevated); border-block: 1px solid var(--border); }
.founder-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.founder-photo { margin: 0; position: relative; }
.founder-photo::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border: 1px solid var(--red-dim);
  z-index: 1;
  pointer-events: none;
}
.founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.03);
}
.founder-text h2 { margin-bottom: 1.5rem; }
.founder-message { display: flex; flex-direction: column; gap: 1.15rem; }
.founder-message p { color: var(--text-muted); }
.founder-message strong { color: var(--text); }
.founder-line {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--text);
}
.founder-line--accent { color: var(--red-bright); font-style: italic; }
.founder-sign { margin-top: 2rem; font-size: 0.875rem; color: var(--text-muted); }
@media (max-width: 860px) {
  .founder-split { grid-template-columns: 1fr; }
  .founder-photo { max-width: 22rem; margin-inline: auto; }
}

/* About */
.about-visual { position: relative; }
.about-frame { overflow: hidden; position: relative; }
.about-frame::before {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: 1px solid var(--red-dim);
  z-index: 1;
  pointer-events: none;
}
.about-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 0.8s var(--ease);
}
.about-frame:hover img { transform: scale(1.03); }
.about-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.about-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease);
}
.about-thumbs img:hover { transform: scale(1.04); }
.about-copy p { color: var(--text-muted); margin-bottom: 1.25rem; }
.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.about-features li { padding-left: 1.25rem; border-left: 2px solid var(--red); }
.about-features strong { display: block; margin-bottom: 0.2rem; }
.about-features span { font-size: 0.875rem; color: var(--text-muted); }

/* Programs v1 */
.programs { background: var(--bg-elevated); }
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.program-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.program-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.program-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.program-card:hover .program-card-media img { transform: scale(1.06); }
.program-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 55%);
  pointer-events: none;
}
.program-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.program-card:hover {
  border-color: var(--red-dim);
  transform: translateY(-4px);
}
.program-card--featured {
  border-color: var(--red);
  background: linear-gradient(160deg, rgba(255, 42, 42, 0.15) 0%, var(--bg-card) 55%);
}
.program-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--bg);
  padding: 0.35rem 0.65rem;
}
.program-tier {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.program-card-body h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.program-card-body > p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.program-card-body ul { flex: 1; margin-bottom: 1.5rem; }
.program-card-body li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1rem;
  position: relative;
}
.program-card-body li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--red);
}
.program-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
@media (max-width: 900px) { .program-grid { grid-template-columns: 1fr; } }

/* Defile */
.defile { overflow: hidden; }
.defile-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/652691583_18057410939485549_4702192823588877525_n.jpg") center / cover;
  opacity: 0.1;
  z-index: -1;
}
.defile-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}
.defile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}
.defile-card--next { border-color: var(--red-dim); }
.defile-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.defile-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.defile-card-body { padding: 2.5rem; }
.defile-date {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.defile-card-body h3 { font-size: 2rem; margin-bottom: 1rem; }
.defile-card-body p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-visual {
  margin: 1.75rem 0;
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  filter: grayscale(10%);
  transition: transform 0.7s var(--ease), filter 0.5s;
}
.contact-visual:hover img {
  transform: scale(1.03);
  filter: grayscale(0%);
}
.timeline-item { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.timeline-item time {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}
.timeline-item p { margin-top: 0.5rem; color: var(--text-muted); }
.timeline-item strong { color: var(--text); font-weight: 500; }
@media (max-width: 900px) { .defile-grid { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
}

.gallery-cell {
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  cursor: zoom-in;
  background: var(--bg-card);
  text-align: left;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
}

.gallery-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0.7;
  transition: opacity 0.4s;
  pointer-events: none;
}

.gallery-zoom {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 3rem;
  margin: -1.5rem 0 0 -1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 42, 42, 0.85);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.gallery-zoom::before,
.gallery-zoom::after {
  content: "";
  position: absolute;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-zoom::before {
  width: 14px;
  height: 2px;
}

.gallery-zoom::after {
  width: 2px;
  height: 14px;
}

.gallery-cell:hover img {
  transform: scale(1.12);
  filter: grayscale(0%);
}

.gallery-cell:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery-cell:hover::before {
  opacity: 1;
}

.gallery-cell--hero {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-cell--wide {
  grid-column: span 2;
}

.gallery-caption {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  pointer-events: none;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-cell--hero { grid-column: span 2; grid-row: span 1; }
  .gallery-cell--wide { grid-column: span 2; }
}

/* Team */
.team { background: var(--bg-elevated); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.team-card-top {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 0;
  align-items: flex-end;
}
.team-card-top img,
.team-avatar img {
  width: 7rem;
  height: 8.5rem;
  object-fit: cover;
  flex-shrink: 0;
}

.team-avatar {
  position: relative;
  width: 7rem;
  height: 8.5rem;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(255, 42, 42, 0.2), var(--bg-elevated));
  border: 1px solid var(--border);
}

.team-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.team-avatar-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.15em;
  color: var(--red);
  z-index: 0;
}

.team-benefits li {
  font-size: 0.875rem;
}
.team-card-intro h3 { font-size: 1.35rem; color: var(--text); margin-bottom: 0.3rem; }
.team-role { font-size: 0.8125rem; color: var(--red); line-height: 1.4; }
.team-card-body {
  padding: 1.25rem 1.5rem 1.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.team-block { margin-top: 1.25rem; padding-top: 1.15rem; border-top: 1px solid var(--border); }
.team-block-title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.team-block ul { display: flex; flex-direction: column; gap: 0.35rem; }
.team-block li { font-size: 0.875rem; padding-left: 1rem; position: relative; }
.team-block li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
}
.team-block-lead { font-size: 0.875rem; color: var(--text); margin-bottom: 0.4rem; }
.team-note { margin-top: 0.65rem; font-size: 0.8125rem; font-style: italic; }
@media (max-width: 960px) {
  .team-card-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-card-top img,
  .team-avatar {
    width: 100%;
    max-width: 14rem;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .team-avatar img {
    width: 100%;
    height: 100%;
  }
}

/* Testimonials */
.testimonials { background: var(--bg-elevated); }
.testimonial { max-width: 42rem; margin-inline: auto; text-align: center; }
.testimonial p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.5;
}
.testimonial footer { margin-top: 2rem; }
.testimonial cite { font-style: normal; font-weight: 600; display: block; }
.testimonial span { font-size: 0.8125rem; color: var(--text-muted); }

/* Contact */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.contact-info address { font-style: normal; margin: 1.5rem 0; }
.contact-info address p { margin-bottom: 1rem; color: var(--text-muted); }
.contact-info a:hover { color: var(--red); }
.social-links { display: flex; gap: 1.5rem; }
.social-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; text-align: center; }

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  z-index: 1;
  position: relative;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.footer-inner strong {
  color: var(--text-muted);
  letter-spacing: 0.12em;
  font-weight: 500;
}
.footer-inner a:hover { color: var(--red); }

/* Reveal — see animations.css */
