:root {
  --bg: #f4f7fc;
  --surface: #ffffff;
  --surface-2: #eef3ff;
  --ink: #061749;
  --ink-soft: #3c4a74;
  --ink-muted: #6f7b9c;
  --brand: #ff4d0a;
  --brand-2: #ff8600;
  --navy: #041747;
  --navy-2: #0a2d80;
  --line: rgba(6, 23, 73, 0.12);
  --line-strong: rgba(6, 23, 73, 0.2);
  --radius: 0px;
  --shadow: 0 22px 52px rgba(8, 26, 76, 0.14);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--ink);
  font-family: "Jost", system-ui, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(var(--max), 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(3.3rem, 6vw, 5.6rem) 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head.center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1px solid rgba(255, 77, 10, 0.3);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.85);
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.85rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.7rem);
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.btn {
  border: none;
  border-radius: 0;
  padding: 0.72rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.w-full {
  width: 100%;
}

.bg-light {
  background: var(--bg);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-brand {
  color: #fff;
  background: linear-gradient(125deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 26px rgba(255, 77, 10, 0.24);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.top-banner {
  background: linear-gradient(135deg, #041747, #0a2d80);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 100;
}

.top-banner.hidden {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.top-banner .container {
  padding: 0.28rem 0;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.top-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex: 1;
}

.top-contact {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 500;
}

.top-contact a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  transition: opacity 0.2s ease;
  font-size: 0.82rem;
}

.top-contact a i {
  font-size: 0.82rem;
}

.top-contact a:hover {
  opacity: 0.8;
}

.top-socials {
  display: flex;
  gap: 0.62rem;
  align-items: center;
}

.top-socials a {
  color: #fff;
  text-decoration: none;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.top-socials a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.08);
}

.site-header {
  width: 100%;
  background: transparent;
}

.main-nav-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  left: 0;
  right: 0;
}

.site-header.compact .header-shell {
  padding: 0.8rem 0;
}

.header-shell {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 0;
  object-fit: contain;
}

.brand-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.38rem;
  font-weight: 800;
  color: var(--ink);
}

.brand-wordmark span {
  color: var(--brand);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.site-nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 0;
  background: var(--ink);
  margin: 5px 0;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.footer {
  background: #03133d;
  color: rgba(255, 255, 255, 0.86);
}

.footer-main {
  padding: 3rem 0 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr repeat(4, 1fr);
}

.footer h4 {
  font-size: 1.03rem;
  margin-bottom: 0.8rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer ul a {
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer ul a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.95rem 0;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.socials {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.socials a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: inherit;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.accordion-panel p {
  padding: 0 0 1rem;
}

@media (max-width: 1080px) {
  .top-banner .container {
    padding: 0.24rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-left {
    flex: 1 100%;
    justify-content: center;
    order: 1;
  }

  .top-socials {
    flex: 1 100%;
    justify-content: center;
    order: 2;
    margin-top: 0.2rem;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .top-contact {
    flex-wrap: wrap;
    gap: 0.62rem;
    justify-content: center;
  }

  .top-contact a {
    font-size: 0.76rem;
  }

  .top-socials {
    gap: 0.52rem;
  }

  .top-socials a {
    width: 25px;
    height: 25px;
    font-size: 0.72rem;
  }
}

.nav-close {
  display: none;
}

@media (max-width: 860px) {
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    display: grid;
    gap: 0;
    background: rgba(255, 255, 255, 0.99);
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  .site-nav a {
    padding: 1rem 4vw;
    border-top: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.5rem 4vw;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--ink);
  }

  .menu-toggle {
    display: block;
  }

  .top-socials {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    padding: 1.5rem 4vw;
    font-size: 1.15rem;
  }
}
