/* ── ANNOUNCEMENT BAR ── */
.ann {
  background: linear-gradient(90deg, var(--gold-d), var(--gold) 35%, var(--gold-b) 50%, var(--gold) 65%, var(--gold-d));
  padding: 10px 24px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ob);
  position: relative;
  overflow: hidden;
}
.ann::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  animation: sh 3s infinite;
}
@keyframes sh {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--bdr);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background var(--dur) var(--ease);
}
.nav.scrolled {
  background: var(--nav-bg-scrolled);
}
.navi {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nlogo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}
.nlogo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(201, 151, 44, .35));
  transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nlogo:hover img {
  filter: drop-shadow(0 2px 18px rgba(201, 151, 44, .6));
  transform: scale(1.03);
}
.nlinks {
  display: flex;
  align-items: center;
  list-style: none;
}
.nlinks li a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stl);
  padding: 8px 18px;
  display: block;
  transition: color var(--dur);
  position: relative;
  cursor: pointer;
}
.nlinks li a:hover {
  color: var(--iv);
}
.nlinks li a.active {
  color: var(--gold);
}
.nlinks li a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 18px;
  right: 18px;
  height: 1.5px;
  background: var(--gold);
}
.ncta {
  background: linear-gradient(135deg, var(--gold-b), var(--gold) 60%, var(--gold-d));
  color: var(--on-gold);
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--dur);
  flex-shrink: 0;
}
.ncta:hover {
  opacity: .88;
}
.nhb {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--stl);
}
.nhb span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
}

/* ── THEME TOGGLE ── */
.ntheme {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bdr);
  background: var(--gold-ts);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
  flex-shrink: 0;
}
.ntheme:hover {
  background: var(--gold-t);
  border-color: var(--gold-br);
  transform: rotate(20deg);
}
.ntheme svg { width: 16px; height: 16px; }
/* Show sun in dark mode, moon in light mode */
.ntheme .icon-sun  { display: block; }
.ntheme .icon-moon { display: none;  }
[data-theme="light"] .ntheme .icon-sun  { display: none;  }
[data-theme="light"] .ntheme .icon-moon { display: block; }

/* ── PAGE HERO (inner pages) ── */
.ph {
  padding: 100px 40px 80px;
  background: var(--chdk);
  border-bottom: 1px solid var(--bds);
  position: relative;
  overflow: hidden;
}
.ph::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 151, 44, .06) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.phi { max-width: 1280px; margin: 0 auto; }
.pho {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.pht {
  font-family: var(--fd);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--iv);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.pht em {
  font-style: italic;
  color: var(--gold);
}
.phs {
  font-family: var(--fa);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--stl);
  max-width: 620px;
  line-height: 1.6;
}

/* ── PAGE HERO — PHOTO VARIANT ── */
.ph.ph-photo {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 100px 40px 72px;
  background: transparent;
  border-bottom: none;
}
.ph.ph-photo::before { display: none; }
.ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.55) 0%,
    rgba(10,10,10,.55) 30%,
    rgba(10,10,10,.80) 68%,
    rgba(10,10,10,.94) 100%
  );
}
.ph.ph-photo .phi {
  position: relative;
  z-index: 2;
  width: 100%;
}
.ph.ph-photo .pho    { color: var(--gold); }
.ph.ph-photo .pht    { color: #F0EBE0; }
.ph.ph-photo .pht em { color: var(--gold); }
.ph.ph-photo .phs    { color: rgba(240,235,224,.72); }

/* ── FOOTER — always dark, regardless of active theme ── */
[data-theme="light"] .footer {
  --ob:   #0A0A0A;
  --chdk: #111111;
  --ch:   #1A1A1A;
  --chmd: #222222;
  --chlt: #2E2E2E;
  --sdk:  #4A4742;
  --st:   #7A7672;
  --stl:  #AAA49E;
  --iv:   #F0EBE0;
  --bdr:  rgba(201, 151, 44, 0.15);
  --bds:  rgba(255, 255, 255, 0.06);
}

/* ── FOOTER ── */
.footer {
  background: var(--chdk);
  border-top: 1px solid var(--bdr);
}
.footm {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.flogo img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(201, 151, 44, .25));
  margin-bottom: 16px;
}
.ftagline {
  font-family: var(--fa);
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: var(--st);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 240px;
}
.fsoc {
  display: flex;
  gap: 8px;
}
.socbtn {
  width: 36px;
  height: 36px;
  background: var(--chlt);
  border: 1px solid var(--bds);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stl);
  transition: color var(--dur), border-color var(--dur);
}
.socbtn:hover {
  color: var(--gold);
  border-color: var(--gold-br);
}
.socbtn svg { width: 15px; height: 15px; }
.fcol h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.flinks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flinks li a {
  font-size: 13px;
  font-weight: 300;
  color: var(--stl);
  transition: color var(--dur);
  cursor: pointer;
}
.flinks li a:hover { color: var(--iv); }
.fcon p {
  font-size: 13px;
  font-weight: 300;
  color: var(--stl);
  line-height: 1.9;
}
.fcon a {
  color: var(--gold);
  transition: color var(--dur);
}
.fcon a:hover { color: var(--gold-b); }
.footb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  border-top: 1px solid var(--bds);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.fcopy {
  font-size: 12px;
  color: var(--st);
  font-weight: 300;
}
.freg {
  font-size: 11px;
  color: var(--sdk);
  font-weight: 300;
  letter-spacing: .5px;
}
