@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --crimson: #7a1c2e;
  --crimson-dark: #4e0f1c;
  --crimson-light: #9e2a3f;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --off-white: #f5f0e8;
  --dark: #1a1a1a;
  --gray: #888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(74, 10, 22, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--off-white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--crimson-dark) 0%, var(--crimson) 50%, #5a1020 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-crest {
  font-size: 5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: 4px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
  margin-bottom: 0.5rem;
}

.hero h1 span { color: var(--gold); }

.hero-greek {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  letter-spacing: 8px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(201, 168, 76, 0.5);
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-gold {
  background: var(--gold);
  color: var(--crimson-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute;
  bottom: 2rem;
  display: flex;
  gap: 3rem;
}

.stat { text-align: center; color: rgba(255,255,255,0.7); }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.stat-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }

/* ─── SECTIONS ─── */
section { padding: 6rem 2rem; }

.section-dark { background: var(--crimson-dark); color: var(--off-white); }
.section-mid { background: var(--crimson); color: var(--off-white); }

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

.section-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-dark .section-title,
.section-mid .section-title { color: #fff; }

.divider { width: 60px; height: 3px; background: var(--gold); margin: 1.5rem 0; }
.divider-center { margin: 1.5rem auto; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 10rem 2rem 5rem;
  background: linear-gradient(160deg, var(--crimson-dark) 0%, var(--crimson) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  letter-spacing: 1px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── CARDS ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--crimson);
  margin-bottom: 0.75rem;
}

.card p { color: #555; line-height: 1.7; font-size: 0.95rem; }

.card-dark {
  background: rgba(255,255,255,0.07);
  border-top: 4px solid var(--gold);
  padding: 2.5rem 2rem;
  transition: transform 0.25s, background 0.25s;
}

.card-dark:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); }

.card-dark h3 {
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-dark p { color: rgba(255,255,255,0.75); line-height: 1.7; font-size: 0.95rem; }

/* ─── BROTHERS ─── */
.brothers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.brother-card { text-align: center; transition: transform 0.25s; }
.brother-card:hover { transform: translateY(-8px); }

.brother-photo-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  margin: 0 auto 1rem;
  overflow: hidden;
  background: var(--crimson-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: border-color 0.25s;
}

.brother-card:hover .brother-photo-wrap {
  border-color: var(--gold-light);
  box-shadow: 0 0 25px rgba(201,168,76,0.4);
}

.brother-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }

.brother-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--crimson);
  margin-bottom: 0.25rem;
}

.section-dark .brother-name { color: #fff; }

.brother-title {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.brother-year { font-size: 0.8rem; color: var(--gray); }
.section-dark .brother-year { color: rgba(255,255,255,0.5); }

/* ─── QUOTE BANNER ─── */
.quote-banner {
  background: var(--crimson-dark);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-banner::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(122,28,46,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.01) 40px,
      rgba(255,255,255,0.01) 41px
    );
  pointer-events: none;
}

.quote-banner blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.quote-banner blockquote::before {
  content: '"';
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  font-family: 'Playfair Display', serif;
  line-height: 0;
  vertical-align: -2.5rem;
  margin-right: 0.2rem;
}

.quote-banner cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  opacity: 0.8;
}

/* ─── COUNCIL PHOTO ─── */
.council-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  margin-bottom: 1rem;
  background: var(--off-white);
}

.council-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.council-photo.council-photo-empty {
  background: var(--off-white);
}

.council-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--crimson);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ─── PHOTO STRIP ─── */
.photo-strip {
  background: var(--crimson-dark);
  overflow: hidden;
  border-top: 2px solid rgba(201,168,76,0.3);
  border-bottom: 2px solid rgba(201,168,76,0.3);
}

.photo-strip-inner {
  display: flex;
  height: 220px;
}

.strip-photo {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--crimson-dark);
}

.strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.9);
  transition: filter 0.3s, transform 0.4s;
}

.strip-photo:hover img {
  filter: brightness(0.9) saturate(1);
  transform: scale(1.05);
}

.strip-photo.strip-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3a0a14, #1a0509);
  color: rgba(255,255,255,0.1);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.strip-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}

@media (max-width: 600px) {
  .photo-strip-inner { height: 120px; }
  .strip-label { display: none; }
}

/* ─── HERO CREST IMAGE ─── */
.hero-crest-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

/* ─── TWO COL ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

/* ─── LISTS ─── */
.fancy-list { list-style: none; margin-top: 1.5rem; }

.fancy-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.fancy-list li::before { content: '▸'; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.light-list li { color: #444; border-bottom-color: rgba(0,0,0,0.1); }

/* ─── FEAR METER ─── */
.fear-meter-wrap { margin: 1rem 0; }

.fear-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
}

.fear-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }

.fear-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 4px;
  width: 0;
  transition: width 1.5s ease;
}

/* ─── CONTACT FORM ─── */
.contact-form { max-width: 640px; }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.9rem 1rem;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group select option { background: var(--crimson-dark); color: #fff; }
.form-group textarea { resize: vertical; min-height: 140px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold-light); }
.faq-chevron { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.5rem; }
.faq-answer p { color: rgba(255,255,255,0.75); line-height: 1.8; font-size: 0.95rem; }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 3rem; margin-top: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0.5rem; top: 0; bottom: 0; width: 2px; background: var(--gold); opacity: 0.4; }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.55rem; top: 0.3rem; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; }
.timeline-year { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.25rem; }
.timeline-item h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; margin-bottom: 0.5rem; }
.timeline-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }

/* ─── FOOTER ─── */
footer {
  background: #0d0509;
  color: rgba(255,255,255,0.5);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 2px solid var(--gold);
}

.footer-brand { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold); letter-spacing: 4px; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.5rem; }

.footer-links { display: flex; justify-content: center; gap: 2rem; list-style: none; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ─── ANNOUNCEMENT ─── */
.announcement {
  background: var(--gold);
  color: var(--crimson-dark);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  z-index: 999;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--crimson-dark);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 1.5rem; position: static; margin-top: 3rem; }
  .hero { padding-bottom: 3rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.flip { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── UTILS ─── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.exec-badge {
  background: var(--gold);
  color: var(--crimson-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  margin-top: 0.4rem;
  display: inline-block;
}

p.lead { font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,0.8); }
p.lead-dark { font-size: 1.1rem; line-height: 1.8; color: #444; }
