:root {
  --navy: #00234d;
  --navy-deep: #001633;
  --navy-mid: #0a3a6e;
  --gold: #f5c400;
  --gold-soft: #ffe27a;
  --paper: #f5f7fb;
  --white: #ffffff;
  --ink: #142033;
  --muted: #5b6b7d;
  --line: rgba(0, 35, 77, 0.12);
  --shadow: 0 18px 50px rgba(0, 35, 77, 0.1);
  --radius: 22px;
  --header: 76px;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 14px;
  z-index: 100;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line);
}

.brand strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}

.site-nav a:hover {
  color: var(--navy-mid);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  padding: 9px 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-soft);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 196, 0, 0.16), transparent 28%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 55%, #083a72 100%);
  color: var(--white);
  padding: 88px 0 96px;
}

.hero-glow {
  position: absolute;
  inset: auto -120px -180px auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.22), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.kicker {
  margin: 0 0 12px;
  color: #8aa0b8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker.light,
.section-head.light .kicker {
  color: var(--gold);
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
}

.lead,
.section-intro {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
}

.section-intro {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-mark {
  display: flex;
  justify-content: center;
}

.hero-mark img {
  width: min(380px, 100%);
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--white);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-head {
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.section-head.light .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.highlights li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px 22px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.section-alt .highlights li {
  background: var(--paper);
}

.highlights h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.highlights p {
  margin: 0;
  color: var(--muted);
}

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

.gallery button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery button:hover img,
.gallery button:focus-visible img {
  transform: scale(1.04);
}

.gallery figcaption,
.gallery .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(0, 22, 51, 0.82));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--ink);
}

.quote p::before {
  content: "“";
  display: block;
  color: var(--gold);
  font-size: 2.4rem;
  line-height: 0.8;
  margin-bottom: 10px;
  font-weight: 700;
}

.quote footer {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote strong,
.quote span {
  display: block;
}

.quote strong {
  color: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 170px;
  padding: 26px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  background: rgba(245, 196, 0, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.contact-card strong {
  font-size: 1.15rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-hint {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 36px 0;
  border-top: 1px solid rgba(245, 196, 0, 0.18);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  color: var(--white);
}

.footer-brand p,
.footer-meta p {
  margin: 4px 0 0;
}

.footer-meta {
  text-align: right;
}

.footer-meta a {
  display: block;
  text-decoration: none;
  color: var(--gold-soft);
}

.lightbox {
  position: fixed;
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(920px, calc(100vw - 32px));
}

.lightbox::backdrop {
  background: rgba(0, 14, 32, 0.86);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #000;
  border-radius: 12px;
}

.lightbox p {
  margin: 10px 0 0;
  color: var(--white);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  right: -8px;
  top: -44px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-layout,
  .quotes,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-mark img {
    width: min(260px, 70vw);
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .footer-inner,
  .footer-meta {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto auto;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 92px 28px 32px;
    gap: 18px;
    box-shadow: var(--shadow);
    transform: translateX(110%);
    transition: transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .section {
    padding: 72px 0;
  }

  .gallery img {
    height: 220px;
  }

  .brand span {
    display: none;
  }
}
