/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:  #0d1f3c;
  --navy2: #162a52;
  --red:   #c0001d;
  --red2:  #a0001a;
  --white: #ffffff;
  --off-white: #f4f4f0;
  --text:  #1a1a2e;
  --muted: #5a6478;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-red:hover { background: var(--red2); border-color: var(--red2); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-label.light { color: #e88; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(13, 31, 60, 0.92);
  backdrop-filter: blur(8px);
}

.nav-name {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-cta { padding: 0.55rem 1.4rem; font-size: 0.8rem; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,31,60,0.98) 0%,
    rgba(13,31,60,0.85) 50%,
    rgba(13,31,60,0.3) 100%
  );
  z-index: 1;
}

.hero-photo-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 55%;
  z-index: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%) contrast(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 4rem;
  max-width: 560px;
  margin-left: 6%;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── ABOUT ── */
.about {
  padding: 6rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  max-width: 520px;
}

.about-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  object-fit: cover;
  aspect-ratio: 1/1;
}

/* ── PRIORITIES ── */
.priorities {
  padding: 6rem 0;
  background: var(--navy);
  color: var(--white);
}

.priorities-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--white);
}

.priorities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.priority-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}

.priority-card:hover {
  background: rgba(255,255,255,0.09);
}

.priority-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.priority-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.priority-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ── QUOTE ── */
.quote-section {
  background: var(--red);
  padding: 5rem 0;
  text-align: center;
}

.quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 1.25rem;
  line-height: 1.45;
}

.quote-section cite {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ── GET INVOLVED ── */
.involved {
  background: var(--off-white);
  padding: 6rem 0;
  text-align: center;
}

.involved .section-label { color: var(--red); }

.involved h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.involved-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.involved-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.involved-actions .btn-red { background: var(--red); border-color: var(--red); }
.involved-actions .btn-outline { color: var(--navy); border-color: var(--navy); }
.involved-actions .btn-outline:hover { background: var(--navy); color: var(--white); }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}
.footer-legal a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image { order: -1; max-width: 360px; }
  .priorities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-photo-wrap { width: 100%; opacity: 0.25; }
  .hero-content { margin-left: 0; padding-left: 1.5rem; padding-right: 1.5rem; max-width: 100%; }
}

@media (max-width: 580px) {
  .priorities-grid { grid-template-columns: 1fr; }
  .nav { padding: 0.85rem 1.25rem; }
  .hero-name { font-size: 4rem; }
}
