:root {
  --bg: #FAF6EF;
  --surface: #FFFFFF;
  --primary: #2D5A3D;
  --primary-dk: #1F4230;
  --accent: #C89B3C;
  --text: #2B2620;
  --muted: #7A7265;
  --border: rgba(45, 90, 61, 0.14);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-video: 0 24px 60px -18px rgba(31, 66, 48, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(31, 66, 48, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(250, 246, 239, 0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding-block: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand img {
  height: 56px;
  width: auto;
}

.brand img.is-hidden {
  display: none;
}

.brand-wordmark {
  display: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--bg);
}

.brand.show-wordmark .brand-wordmark {
  display: inline;
}

.initiative {
  height: 64px;
  width: auto;
}

.hero-video {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-video);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.unmute-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: rgba(15, 18, 16, 0.72);
  color: #FDFBF6;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease;
}

.unmute-btn:hover {
  background: rgba(15, 18, 16, 0.92);
}

.unmute-btn.is-hidden {
  display: none;
}

.manifesto {
  padding-block: clamp(4rem, 10vw, 7rem);
  text-align: center;
}

.cta-lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
}

.contact-alt {
  margin: 1.4rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-alt .or {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: fit-content;
  margin: 0 auto 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.contact-alt .or::before,
.contact-alt .or::after {
  content: "";
  width: 52px;
  height: 1px;
  background: rgba(200, 155, 60, 0.45);
}

.contact-links {
  display: block;
}

.contact-alt a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 90, 61, 0.35);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.contact-alt a:hover {
  color: var(--primary-dk);
  border-color: var(--accent);
}

.manifesto-quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.95rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--bg);
}

.manifesto-quote .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.manifesto-quote .line:nth-child(2) {
  transition-delay: 0.15s;
}

.manifesto-quote .line:nth-child(3) {
  transition-delay: 0.3s;
}

.manifesto-quote .line.visible {
  opacity: 1;
  transform: none;
}

.quote-panel {
  position: relative;
  display: flex;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4.5rem);
  background: linear-gradient(135deg, #2D5A3D 0%, #1F4230 100%);
  border-radius: 24px;
  box-shadow: 0 24px 50px -20px rgba(31, 66, 48, 0.55);
  overflow: hidden;
}

.quote-panel::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.18), transparent 70%);
  pointer-events: none;
}

.quote-panel-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-panel-divider {
  width: 1px;
  align-self: stretch;
  margin-inline: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200, 155, 60, 0.6),
    transparent
  );
}

.quote-panel-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-panel-badge img {
  height: clamp(72px, 10vw, 96px);
  width: auto;
}

.manifesto-rule {
  width: 64px;
  height: 3px;
  margin: 3.25rem auto 3rem;
  border: 0;
  background: var(--accent);
  border-radius: 2px;
}

.btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 1rem 2.75rem;
  background: var(--primary);
  color: #FDFBF6;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 28px -10px rgba(45, 90, 61, 0.55);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: btn-glare 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-glare {
  0% {
    left: -80%;
  }

  32% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

.btn:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(31, 66, 48, 0.6);
}

.btn:active {
  transform: translateY(0);
}

.site-footer {
  padding-block: 1.75rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .quote-panel {
    flex-direction: column;
    align-items: center;
  }

  .quote-panel-divider {
    width: auto;
    height: 1px;
    align-self: stretch;
    margin: 2.25rem 0;
    background: linear-gradient(
      to right,
      transparent,
      rgba(200, 155, 60, 0.6),
      transparent
    );
  }
}

@media (max-width: 480px) {
  .header-inner {
    min-height: 60px;
  }

  .brand img {
    height: 42px;
  }

  .brand-wordmark {
    font-size: 1.15rem;
  }

  .initiative {
    height: 44px;
  }

  .btn {
    width: min(320px, 100%);
    padding-inline: 1.5rem;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .btn::after {
    display: none;
  }

  .manifesto-quote .line {
    opacity: 1;
    transform: none;
  }
}
