:root {
  --navy: #0d1d2b;
  --navy-soft: #173447;
  --blue-pale: #eaf1f5;
  --gold: #d0a15c;
  --gold-deep: #a87332;
  --ink: #162a37;
  --muted: #53616a;
  --line: rgba(13, 29, 43, 0.14);
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--blue-pale), var(--white));
}
a { color: inherit; }
.site-header {
  background: var(--navy);
  color: var(--white);
  border-bottom: 3px solid var(--gold);
}
.header-inner,
.page-inner {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.back-link { color: var(--white); font-size: 0.9rem; font-weight: 800; text-decoration: none; }
.page-inner { padding: 70px 0 90px; }
.page-intro { max-width: 780px; margin-bottom: 34px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}
h1, h2 { font-family: "Cormorant Garamond", serif; color: var(--navy); }
h1 { margin: 0 0 18px; font-size: clamp(3rem, 7vw, 5.4rem); line-height: 0.98; }
h2 { margin: 32px 0 12px; font-size: 2rem; line-height: 1.05; }
p, li { color: var(--muted); line-height: 1.75; }
.content {
  padding: 30px clamp(22px, 5vw, 54px);
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 42px rgba(13,29,43,0.08);
}
.content h2:first-child { margin-top: 0; }
.content ul { padding-left: 24px; }
.content li { margin-bottom: 8px; }
.contact-box {
  margin-top: 30px;
  padding: 20px 22px;
  background: var(--blue-pale);
  border-left: 4px solid var(--gold);
}
.site-footer {
  padding: 26px 0;
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  text-align: center;
}
.site-footer a { color: var(--white); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.footer-links a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  background: rgba(208,161,92,0.24);
  border-color: var(--gold);
  outline: none;
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .page-inner { padding-top: 48px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
