:root {
  --navy: #14345c;
  --navy-dark: #0a1e38;
  --blue: #1f6fb2;
  --silver: #8a8f98;
  --silver-dark: #565b63;
  --gold: #b8934a;
  --bg: #f6f7f9;
  --text: #22262c;
  --muted: #5b6068;
  --card-bg: #ffffff;
  --border: #e3e6ea;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.muted { color: var(--muted); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; }

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy-dark);
}
.brand img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--blue); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-dark); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-cta { width: 100%; text-align: center; }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--blue) 130%);
  color: #fff;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle at 85% 20%, rgba(184,147,74,0.18), transparent 45%),
                     radial-gradient(circle at 10% 90%, rgba(255,255,255,0.06), transparent 40%);
}
.hero .container { position: relative; z-index: 2; }

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,30,56,0.92) 0%, rgba(20,52,92,0.85) 55%, rgba(31,111,178,0.72) 130%);
}

/* Section photos */
.photo-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(10,30,56,0.16);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-caption {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 8px;
  text-align: right;
}
.hero h1 { max-width: 760px; }
.hero .lead { color: rgba(255,255,255,0.82); max-width: 620px; margin-top: 18px; }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

.page-hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #fff;
  padding: 64px 0 56px;
}
.page-hero .lead { color: rgba(255,255,255,0.8); }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-gold { background: var(--gold); color: #1a1a1a; }
.btn-gold:hover { background: #cca85e; }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--blue); }

/* Sections */
section { padding: 72px 0; }
.section-alt { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(20,52,92,0.08); }
.card .icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem; font-weight: 700;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card ul { margin-top: 14px; }
.card ul li {
  font-size: 0.92rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}
.card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.stat-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.stat-row .stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--navy-dark);
}
.stat-row .stat span { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

.value-item {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 28px;
}
.value-item h3 { margin-bottom: 6px; color: var(--navy-dark); }
.value-item p { color: var(--muted); }

.motto-banner {
  background: var(--navy-dark);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.motto-banner .motto {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
.motto-banner .motto span { color: var(--gold); }

.placeholder-card {
  border: 1.5px dashed var(--border);
  background: #fbfbfc;
  border-radius: 10px;
  padding: 34px 28px;
  text-align: center;
  color: var(--muted);
}
.placeholder-card strong { display: block; color: var(--navy-dark); margin-bottom: 6px; font-size: 1rem; }

.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 52px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.78); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--navy-dark); }
.field input, .field select, .field textarea {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 13px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,111,178,0.14);
}
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 10px; }
.form-status { margin-top: 16px; font-size: 0.92rem; font-weight: 600; display: none; }
.form-status.ok { color: #1a7a4c; display: block; }
.form-status.err { color: #b5321f; display: block; }

.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info .item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .item .dot {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(31,111,178,0.1);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0;
}
.contact-info .item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-info .item p { color: var(--muted); font-size: 0.92rem; }

/* Team */
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}
.team-card .avatar {
  height: 160px;
  background: linear-gradient(135deg, var(--silver) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Playfair Display', serif; font-size: 1.8rem;
}
.team-card .body { padding: 20px; }
.team-card h4 { font-size: 1rem; margin-bottom: 2px; }
.team-card span { font-size: 0.85rem; color: var(--gold); font-weight: 600; }

/* Blog */
.post-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
}
.post-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 10px;
}
.post-card h3 { margin-bottom: 8px; }
.post-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 14px; }
.post-card .meta { font-size: 0.82rem; color: var(--muted); }

/* Footer */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 36px; }
.footer-brand span { font-family: 'Playfair Display', serif; font-weight: 700; color: #fff; }
footer h5 { color: #fff; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
footer ul li { margin-bottom: 10px; font-size: 0.92rem; }
footer ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.badge-list { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.badge-list span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
}
