/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --color-maroon: #6B1D2A;
  --color-gold: #C8953C;
  --color-dark: #1A1A2E;
  --color-light: #F5F0EB;
  --color-cream: #E8DCC8;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1200px;
  --section-pad: 5rem 1.5rem;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   Accessibility
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-maroon);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

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

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

/* ============================================================
   Shared
   ============================================================ */
.section-label {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--color-dark);
}
.section-label--light { color: var(--color-light); }
.section-label--gold  { color: var(--color-gold); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease;
}
.nav--scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--color-gold); }
.nav__cta {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-maroon);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover {
  background: #8B2438;
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(26, 26, 46, 0.97);
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
  .nav__links--open { display: flex; }
  .nav__cta { font-size: 0.75rem; padding: 0.5rem 1rem; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/hero-portrait.jpg') center/cover no-repeat;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.85) 0%,
    rgba(26, 26, 46, 0.5) 40%,
    rgba(107, 29, 42, 0.4) 100%
  );
}
.hero__content {
  position: relative;
  max-width: 800px;
  padding: 0 1.5rem;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================================
   Story
   ============================================================ */
.story {
  background: var(--color-cream);
  padding: var(--section-pad);
}
.story__inner {
  max-width: 700px;
  margin: 0 auto;
}
.story__inner p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #333;
}
.story__pullquote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 500;
  color: var(--color-maroon);
  border-left: 4px solid var(--color-gold);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  line-height: 1.4;
}

/* ============================================================
   About / Who Is Ross
   ============================================================ */
.about {
  background: var(--color-dark);
  padding: var(--section-pad);
}
.about__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .about__cards { grid-template-columns: 1fr; }
}

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.card__icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.card__facts {
  text-align: left;
  margin-top: 1rem;
}
.card__facts li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
}
.card__facts li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/* ============================================================
   Carousel (inside cards)
   ============================================================ */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
  aspect-ratio: 4/3;
  background: rgba(0,0,0,0.3);
}
.carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}
.carousel__slide {
  min-width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.carousel__dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.carousel__dot--active {
  background: var(--color-gold);
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  background: var(--color-cream);
  padding: var(--section-pad);
}
.gallery__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery__grid {
  columns: 3;
  column-gap: 1rem;
}
@media (max-width: 1024px) { .gallery__grid { columns: 2; } }
@media (max-width: 480px)  { .gallery__grid { columns: 1; } }

.gallery__img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  break-inside: avoid;
}
.gallery__img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  color: #fff;
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }
.lightbox__close { top: 1rem; right: 1rem; font-size: 2rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ============================================================
   Video
   ============================================================ */
.video {
  background: var(--color-dark);
  padding: var(--section-pad);
}
.video__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.video__placeholder {
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.video__play-btn { color: rgba(255,255,255,0.3); }
.video__coming-soon {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.video__subtext {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials {
  background: var(--color-cream);
  padding: var(--section-pad);
}
.testimonials__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

.testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
}
.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial__text {
  font-size: 1rem;
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.testimonial__author {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-maroon);
  font-weight: 600;
}

/* ============================================================
   Donate / Countdown
   ============================================================ */
.donate {
  background: var(--color-maroon);
  padding: var(--section-pad);
  text-align: center;
}
.donate__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.countdown__unit { text-align: center; }
.countdown__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}
.countdown__label {
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.donate__deadline {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
}

/* Donation cards */
.donate__methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .donate__methods { grid-template-columns: 1fr; }
}

.donate__card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.donate__card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.donate__qr {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
}
.donate__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;
  transition: background 0.2s;
  width: 100%;
}
.donate__copy:hover { background: rgba(255,255,255,0.2); }
.donate__handle {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}
.donate__copy-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.donate__copy--copied .donate__copy-hint {
  color: var(--color-gold);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--color-dark);
  padding: 3rem 1.5rem;
  text-align: center;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer__share {
  margin-bottom: 2rem;
}
.footer__share-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer__share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.share-btn:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}
.footer__signoff {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.footer__signoff strong {
  color: var(--color-light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}
.footer__small {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
