:root {
  --navy: #0b1f33;
  --navy-soft: #12263f;
  --gold: #d4af37;
  --light: #f7f3ed;
  --text-main: #1f2933;
  --accent: #283e55;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  background: var(--light);
  color: var(--text-main);
  line-height: 1.6;
}

/* Layout */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header / Nav */

.site-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
}

.brand-text-main {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.brand-text-sub {
  font-size: 0.75rem;
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.87);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.nav a:hover,
.nav a.is-active {
  color: var(--gold);
}

/* Hero (home only) */

.hero {
  background: linear-gradient(135deg, var(--navy), #1d334b);
  color: #fff;
  padding: 3.4rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.2rem;
  margin: 0 0 0.4rem;
}

.hero-subtitle {
  margin: 0 0 1rem;
  font-size: 1rem;
  opacity: 0.92;
}

.hero-highlight {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.hero-card {
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  background: rgba(10, 31, 51, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.hero-card-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.hero-card-text {
  font-size: 0.88rem;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
  text-decoration: none;
}

.btn-pill-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
}

.btn-pill-primary:hover {
  filter: brightness(1.05);
}

.btn-pill-secondary {
  color: #fff;
}

.hero-note {
  font-size: 0.75rem;
  opacity: 0.8;
}

.hero-panel {
  background: rgba(10, 31, 51, 0.92);
  border-radius: 1rem;
  padding: 1.3rem 1.4rem 1.1rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.hero-panel h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
}

.hero-panel ul {
  margin: 0.4rem 0 0.7rem;
  padding-left: 1.1rem;
  font-size: 0.88rem;
}

.hero-panel li {
  margin-bottom: 0.25rem;
}

.hero-panel-note {
  font-size: 0.74rem;
  opacity: 0.8;
}

/* Page sections */

.section {
  padding: 2.6rem 0 2.1rem;
}

.section-heading h1,
.section-heading h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.7rem;
  color: var(--accent);
  margin: 0 0 0.3rem;
}

.section-heading p {
  margin: 0.1rem 0 0;
  font-size: 0.95rem;
  color: #4b5563;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.card {
  background: #ffffff;
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  padding: 1.15rem 1.25rem 1.1rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--accent);
}

.card p {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.card-pill {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

/* About layout */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-box {
  border-left: 3px solid var(--gold);
  padding-left: 0.85rem;
  font-size: 0.96rem;
  color: #374151;
  margin-bottom: 0.9rem;
}

.list-plain {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

.list-plain li {
  margin-bottom: 0.4rem;
}

.list-plain li::before {
  content: "▸";
  color: var(--gold);
  margin-right: 0.35rem;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 2rem;
  margin-top: 1.8rem;
}

.contact-box {
  background: #ffffff;
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  padding: 1.2rem 1.3rem 1.1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.contact-box p {
  margin: 0 0 0.55rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

/* Footer */

.site-footer {
  background: #0b1a2a;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  padding: 1.2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-disclaimer {
  max-width: 580px;
  opacity: 0.78;
}

/* Responsive */

@media (max-width: 880px) {
  .hero-inner,
  .split,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
    margin-bottom: 1.2rem;
  }

  .nav {
    display: none; /* simple mobile: no menu */
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero {
    padding-top: 2.6rem;
  }
}