/* ------------------------------
   VARIABLES
------------------------------ */
:root {
  --navy: #0a2a4a;
  --mid-blue: #0d4a7a;
  --accent-blue: #1a6fa8;
  --pale-blue: #c8dcea;
  --light: #f0f4f7;
  --white: #ffffff;
  --grey: #8a9aaa;
  --text: #1c2b3a;
}

/* ------------------------------
   GLOBAL
------------------------------ */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  width: min(90%, 820px);
  margin: 0 auto;
}

/* ------------------------------
   HEADER
------------------------------ */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--pale-blue);
  padding: 16px 0;
}

.header-inner {
  width: min(92%, 1200px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { height: 48px; }

.nav a {
  margin-left: 24px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  opacity: 0.75;
  text-decoration: none;
}

.nav a:hover { opacity: 1; }

/* Mobile Navigation */
@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    gap: 12px;
  }
  .nav a { margin-left: 12px; }
}

/* ------------------------------
   ANNOUNCEMENT
------------------------------ */
.announcement {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  text-align: left;
}

.announcement h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 300;
  margin-bottom: 24px;
}

.announcement em { color: var(--pale-blue); }

.divider {
  width: 60px;
  height: 2px;
  background: var(--accent-blue);
  margin: 24px 0;
}

/* ------------------------------
   LION SECTION
------------------------------ */
.lion-section {
  position: relative;
  height: 60vh;
  min-height: 420px;
  overflow: hidden;
}

.lion-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.lion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,42,74,0.1),
    rgba(10,42,74,0.75)
  );
}

.lion-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 800px);
  text-align: left;
}

.lion-caption blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 4vw, 34px);
  color: var(--white);
  opacity: 0.9;
}

/* ------------------------------
   FOOTER
------------------------------ */
.footer {
  background: var(--navy);
  padding: 32px 0;
}

.footer-inner {
  width: min(92%, 1200px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer img {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.footer p {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.08em;
}

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
