:root{
  --navy:#0B1F3B;
  --gold:#D4A62A;
  --cream:#FAF7F0;
  --ink:#111827;
}

*{ box-sizing:border-box; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

.topbar{
  background: var(--cream);
  color: #374151;
}
.topbar-link{ color:#374151; text-decoration:none; }
.topbar-link:hover{ text-decoration:underline; }

.site-nav{ background: var(--navy); }
.navbar-brand{ line-height:1.1; }
.brand-sub{
  display:block;
  font-size:.75rem;
  opacity:.85;
  font-weight:600;
}

.nav-link{
  border-radius: 999px;
  padding: .4rem .8rem !important;
}
.nav-link.active{
  background: rgba(255,255,255,.14);
}

.hero{
  position:relative;
  background: var(--navy);
  color:#fff;
  padding: 4rem 0;
  overflow:hidden;
}
.hero-title{ font-family: Poppins, Inter, system-ui, sans-serif; }
.hero-lead{ color: rgba(255,255,255,.85); max-width: 52ch; }

.hero-bg{
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(closest-side, rgba(212,166,42,.35), transparent 60%),
    radial-gradient(closest-side, rgba(255,255,255,.12), transparent 65%);
  transform: rotate(10deg);
  pointer-events: none;
}

.page-hero{
  background: var(--cream);
  padding: 2.25rem 0 1.5rem;
  border-bottom: 1px solid rgba(17,24,39,.08);
}
.page-title{
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-weight: 800;
  margin: 0 0 .25rem;
}

.badge-soft{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
  padding:.5rem .75rem;
  border-radius: 999px;
}

.hero-card{
  background: #fff;
  color: var(--ink);
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap: .75rem;
}
.stat{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 1rem;
  padding: .75rem .9rem;
  min-width: 160px;
}
.stat-num{ font-weight:800; }
.stat-label{ font-size:.85rem; opacity:.9; }

.section{ padding: 4rem 0; }
.section-alt{ background: var(--cream); }

.section-title{
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-weight: 800;
}

.soft-card{
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 1.25rem;
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
}

.callout{
  background: #fff;
  border-left: 6px solid var(--gold);
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
}

.btn-gold{
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-color: #1f2937;
  --bs-btn-hover-bg: #c69721;
  --bs-btn-hover-border-color: #c69721;
  --bs-btn-hover-color: #111827;
  border-radius: 999px;
  font-weight: 800;
}

.btn-outline-navy{
  border: 1px solid rgba(11,31,59,.45);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 800;
}
.btn-outline-navy:hover{
  background: rgba(11,31,59,.06);
  color: var(--navy);
}

.link-card{
  text-decoration:none;
  border-radius: 1.25rem;
  border: 1px solid rgba(17,24,39,.08);
  transition: transform .08s ease, box-shadow .08s ease;
  color: inherit;
}
.link-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(17,24,39,.10);
}

.photo{
  border-radius: 1.25rem;
  height: 170px;
  background: linear-gradient(135deg, rgba(11,31,59,.12), rgba(212,166,42,.18));
  border: 1px solid rgba(17,24,39,.08);
}

.mini-stat{
  padding: .9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(17,24,39,.08);
  background: #fff;
}
.mini-label{
  font-size: .85rem;
  color: #6b7280;
}
.mini-num{
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
}

.site-footer{
  background: var(--navy);
  color: rgba(255,255,255,.85);
}
.site-footer a{ color: rgba(255,255,255,.85); text-decoration:none; }
.site-footer a:hover{ text-decoration:underline; }

a.disabled, .btn.disabled{
  pointer-events: none;
  opacity: .55;
}

/* Gallery tiles: uniform shape, works for portrait + landscape */
.gallery-tile{
  display:block;
  border-radius: 1.25rem;
  overflow:hidden;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
  background: #fff;
  transition: transform .08s ease, box-shadow .08s ease;
}

.gallery-tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(17,24,39,.10);
}

.gallery-tile img{
  width: 100%;
  height: 210px;          /* controls tile height */
  object-fit: cover;      /* crop to fill tile */
  display:block;
}

/* Bigger tiles on larger screens */
@media (min-width: 992px){
  .gallery-tile img{ height: 220px; }
}
