/* ==========================================================================
   PAA Landing — pixel-matched demo styles
   Colors: ink #0c2c20 | lime #ece0ab | paper #f5efdd | flame #c9a84c | surface #14472e
   ========================================================================== */

:root {
  --ink: #0c2c20;
  --lime: #ece0ab;
  --paper: #f5efdd;
  --flame: #c9a84c;
  --surface: #14472e;
  --white: #ffffff;
  --max: 1400px;
  --radius: 0.5rem;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-display: "Anton", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }

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

.font-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.text-lime { color: var(--lime); }
.text-ink { color: var(--ink); }
.text-flame { color: var(--flame); }

.text-stroke {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
  color: transparent;
  paint-order: stroke fill;
}

.text-stroke-lime {
  -webkit-text-stroke: 1.5px var(--lime);
  color: transparent;
  paint-order: stroke fill;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section-label--lime { color: var(--lime); }
.section-label--flame { color: var(--flame); }
.section-label--ink { color: var(--ink); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: background 0.5s, padding 0.5s, backdrop-filter 0.5s;
}

.site-header.is-scrolled {
  background: rgba(12, 44, 32, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (min-width: 768px) {
  .header-inner { padding: 0 2.5rem; }
}

.logo-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-btn .paa-logo-svg,
.logo-btn img,
.logo-btn .custom-logo {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-btn:hover .paa-logo-svg,
.logo-btn:hover img,
.logo-btn:hover .custom-logo {
  transform: rotate(12deg);
}

.logo-btn .custom-logo-link {
  display: flex;
  line-height: 0;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  padding: 0.25rem 0;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--lime);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-nav-cta {
  display: none;
  align-items: center;
  border-radius: 9999px;
  background: var(--lime);
  color: var(--ink);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

@media (min-width: 640px) {
  .btn-nav-cta { display: inline-flex; }
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(204, 255, 0, 0.6);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border-radius: 0.5rem;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(12, 44, 32, 0.98);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  visibility: hidden;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--lime); }

.mobile-menu .btn-primary {
  margin-top: 2rem;
  align-self: flex-start;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--lime);
  color: var(--ink);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(204, 255, 0, 0.7);
}

.btn-primary:hover .icon-arrow-up-right,
.btn-ghost:hover .icon-arrow-up-right,
.btn-dark:hover .icon-arrow-up-right {
  transform: rotate(45deg);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--ink);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.icon-arrow-up-right {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12, 44, 32, 0.7), rgba(12, 44, 32, 0.5), var(--ink)),
    linear-gradient(to right, rgba(12, 44, 32, 0.8), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 1.25rem 4rem;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-content { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--lime);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.hero-badge span:last-child {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15vw;
  line-height: 0.82;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-title { font-size: 10.5vw; }
}

@media (min-width: 1400px) {
  .hero-title { font-size: 9.2rem; }
}

.hero-title .hero-line {
  display: block;
  overflow: hidden;
}

.hero-subtitle {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.icon-bounce {
  animation: bounce 1.4s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  background: var(--lime);
  color: var(--ink);
  padding: 1.25rem 0;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-star {
  color: var(--ink);
  font-size: 0.9em;
  opacity: 0.85;
}

/* ==========================================================================
   OVERVIEW
   ========================================================================== */
.overview {
  background: var(--ink);
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .overview { padding: 8rem 0; }
}

.overview-grid {
  display: grid;
  gap: 3rem;
  align-items: end;
}

@media (min-width: 1024px) {
  .overview-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .overview-title-wrap { grid-column: span 8; }
  .overview-text { grid-column: span 4; }
}

.overview h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 0.9;
  margin-top: 1rem;
  text-transform: uppercase;
}

.overview-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  background: var(--ink);
  padding: 2rem;
  transition: background 0.25s;
}

@media (min-width: 768px) {
  .stat-card { padding: 2.5rem; }
}

.stat-card:hover {
  background: var(--surface);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--lime);
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.25s;
  transform-origin: left center;
}

.stat-card:hover .stat-value {
  transform: scale(1.1);
}

.stat-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  background: var(--paper);
  color: var(--ink);
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .about { padding: 8rem 0; }
}

.about-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .about-sticky {
    grid-column: span 5;
  }
  .about-values {
    grid-column: 6 / span 7;
  }
}

.about-sticky-inner {
  position: relative;
}

@media (min-width: 1024px) {
  .about-sticky-inner {
    position: sticky;
    top: 7rem;
  }
}

.about h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.9;
  margin-top: 1rem;
  text-transform: uppercase;
}

.about-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(12, 44, 32, 0.7);
  max-width: 28rem;
}

.about-image {
  margin-top: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.value-item {
  border-top: 1px solid rgba(12, 44, 32, 0.15);
  padding: 2rem 0;
  transition: padding-left 0.5s;
}

@media (min-width: 768px) {
  .value-item { padding: 2.5rem 0; }
}

.value-item:hover {
  padding-left: 1rem;
}

.value-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.value-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: rgba(12, 44, 32, 0.25);
  transition: color 0.25s;
  line-height: 1;
  flex-shrink: 0;
}

.value-item:hover .value-num {
  color: var(--flame);
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.value-item p {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(12, 44, 32, 0.65);
  max-width: 36rem;
}

@media (min-width: 768px) {
  .value-item p { font-size: 1.125rem; }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  background: var(--ink);
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .services { padding: 8rem 0; }
}

.services-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .services-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.9;
  margin-top: 1rem;
  text-transform: uppercase;
}

.services-header p {
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.services-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface);
  padding: 2rem;
  transition: border-color 0.25s;
  cursor: pointer;
}

@media (min-width: 768px) {
  .service-card { padding: 2.5rem; }
}

.service-card:hover {
  border-color: var(--lime);
}

.service-num {
  position: absolute;
  right: -2rem;
  top: -2rem;
  font-family: var(--font-display);
  font-size: 9rem;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: color 0.25s;
}

.service-card:hover .service-num {
  color: rgba(236, 224, 171, 0.1);
}

.service-card-inner { position: relative; }

.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(236, 224, 171, 0.1);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 1.25rem;
  text-transform: uppercase;
}

.service-card p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 28rem;
}

.service-link {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}

.service-card:hover .service-link {
  color: var(--lime);
}

.service-card:hover .icon-arrow-up-right {
  transform: rotate(45deg);
}

/* ==========================================================================
   PRO SHOP
   ========================================================================== */
.proshop {
  position: relative;
  background: var(--lime);
  color: var(--ink);
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .proshop { padding: 8rem 0; }
}

.proshop-top {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .proshop-top { grid-template-columns: 1fr 1fr; }
}

.proshop h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.88;
  margin-top: 1rem;
  text-transform: uppercase;
}

.proshop-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(12, 44, 32, 0.75);
  max-width: 32rem;
}

.proshop .btn-dark {
  margin-top: 2rem;
}

.proshop-feature {
  position: relative;
}

.proshop-feature-frame {
  border-radius: 2rem;
  overflow: hidden;
  border: 4px solid var(--ink);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  background: var(--ink);
  position: relative;
}

.proshop-feature-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top;
  transform: scale(1.05);
}

.proshop-feature-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 44, 32, 0.6), transparent);
  pointer-events: none;
}

.proshop-badge-1 {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  transform: rotate(-4deg);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.proshop-badge-2 {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transform: rotate(3deg);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

@media (max-width: 640px) {
  .proshop-feature-frame img { height: 360px; }
  .proshop-badge-1 {
    left: 0.5rem;
    bottom: -0.75rem;
    font-size: 1.125rem;
    padding: 0.75rem 1rem;
  }
}

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

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  transition: transform 0.25s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card-img {
  overflow: hidden;
  aspect-ratio: 1;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-card-body {
  padding: 1.25rem;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.product-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline {
  background: var(--ink);
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .timeline { padding: 8rem 0; }
}

.timeline-intro {
  margin-bottom: 4rem;
}

.timeline h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.9;
  margin-top: 1rem;
  text-transform: uppercase;
}

.timeline-intro p {
  margin-top: 1rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.timeline-track {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .timeline-item--alt {
    direction: rtl;
  }
  .timeline-item--alt > * {
    direction: ltr;
  }
}

.timeline-dot {
  position: absolute;
  left: -6px;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background: var(--lime);
  border: 4px solid var(--ink);
}

@media (min-width: 768px) {
  .timeline-dot {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-content {
  direction: ltr;
}

@media (min-width: 768px) {
  .timeline-item:not(.timeline-item--alt) .timeline-content {
    text-align: right;
    padding-right: 4rem;
  }
  .timeline-item--alt .timeline-content {
    text-align: left;
    padding-left: 4rem;
  }
}

.timeline-date {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--flame);
  text-transform: uppercase;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3rem);
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.timeline-content p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.timeline-image {
  margin-top: 1.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .timeline-image { margin-top: 0; }
}

.timeline-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

@media (min-width: 768px) {
  .timeline-image img { height: 18rem; }
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
  background: var(--ink);
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .gallery { padding: 8rem 0; }
}

.gallery-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .gallery-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.gallery h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.9;
  margin-top: 1rem;
  text-transform: uppercase;
}

.gallery-header p {
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  grid-auto-rows: 180px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    grid-auto-rows: 220px;
  }
  .gallery-item:nth-child(1) { grid-column: span 8; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 4; }
  .gallery-item:nth-child(3) { grid-column: span 4; }
  .gallery-item:nth-child(4) { grid-column: span 5; }
  .gallery-item:nth-child(5) { grid-column: span 3; }
  .gallery-item:nth-child(6) { grid-column: span 4; }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 44, 32, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--lime);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 0.5s, transform 0.5s;
}

.gallery-item:hover span {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   NEWS
   ========================================================================== */
.news {
  background: var(--paper);
  color: var(--ink);
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .news { padding: 8rem 0; }
}

.news-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .news-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.news h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.9;
  margin-top: 1rem;
  text-transform: uppercase;
}

.news-header p {
  max-width: 24rem;
  color: rgba(12, 44, 32, 0.6);
  line-height: 1.65;
}

.news-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}

.news-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(12, 44, 32, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(12, 44, 32, 0.25);
}

.news-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface);
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.news-card:hover img {
  transform: scale(1.06);
}

.news-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 0.75rem;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.news-card p {
  color: rgba(12, 44, 32, 0.65);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
}

.news-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: rgba(12, 44, 32, 0.5);
  border: 1px dashed rgba(12, 44, 32, 0.2);
  border-radius: 1.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5rem 0 2.5rem;
}

.newsletter-box {
  border-radius: 2.5rem;
  background: var(--lime);
  color: var(--ink);
  padding: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .newsletter-box { padding: 3.5rem; }
}

.newsletter-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .newsletter-inner { grid-template-columns: 1fr 1fr; }
}

.newsletter-box h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.newsletter-box p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: rgba(12, 44, 32, 0.7);
  max-width: 28rem;
}

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

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input[type="email"] {
  flex: 1;
  border-radius: 9999px;
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus-visible {
  box-shadow: 0 0 0 2px rgba(12, 44, 32, 0.4);
}

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--ink);
  color: var(--lime);
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

.newsletter-inline-error {
  margin-top: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: rgba(180, 40, 40, 0.12);
  color: #8b1a1a;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.newsletter-form button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* ==========================================================================
   NEWSLETTER THANK-YOU MODAL
   ========================================================================== */
body.paa-modal-open {
  overflow: hidden;
}

.paa-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.paa-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.paa-modal[hidden] {
  display: none;
}

.paa-modal.is-open[hidden] {
  display: flex;
}

.paa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 20, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  border: none;
}

.paa-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  background: var(--lime);
  color: var(--ink);
  border-radius: 1.75rem;
  padding: 2.25rem 1.75rem 1.75rem;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
  border: 3px solid var(--ink);
  transform: translateY(16px) scale(0.96);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.paa-modal.is-open .paa-modal__dialog {
  transform: none;
}

.paa-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: var(--ink);
  background: rgba(12, 44, 32, 0.08);
  transition: background 0.2s, transform 0.2s;
}

.paa-modal__close:hover {
  background: rgba(12, 44, 32, 0.16);
  transform: rotate(90deg);
}

.paa-modal__icon {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1.25rem;
  border-radius: 9999px;
  background: var(--ink);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
}

.paa-modal__title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.paa-modal__text {
  margin-top: 0.85rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(12, 44, 32, 0.72);
}

.paa-modal__cta {
  margin-top: 1.75rem;
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .paa-modal__dialog {
    padding: 2.5rem 2.25rem 2rem;
  }
  .paa-modal__cta {
    width: auto;
    min-width: 12rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

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

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

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.footer-about {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 28rem;
  font-size: 0.9375rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--lime);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
}

.footer-contact a {
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--lime);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ==========================================================================
   INNER PAGES (blog single / archive)
   ========================================================================== */
.page-content {
  padding: 8rem 0 4rem;
  min-height: 60vh;
}

.page-content .container {
  max-width: 800px;
}

.page-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 0.95;
}

.page-content .entry-content {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  font-size: 1.0625rem;
}

.page-content .entry-content p {
  margin-bottom: 1.25rem;
}

.page-content .entry-content a {
  color: var(--lime);
  text-decoration: underline;
}

.page-content .entry-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   RESPONSIVE TWEAKS
   ========================================================================== */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
