:root {
  --bg: #04101f;
  --bg-2: #07182e;
  --navy: #0b2748;
  --panel: rgba(7, 22, 44, 0.78);
  --stroke: rgba(126, 200, 255, 0.18);
  --text: #eef4fc;
  --muted: #9db3cc;
  --accent: #4aa3ff;
  --accent-2: #8fd0ff;
  --gold: #c9a44a;
  --gold-2: #e4c878;
  --shadow: 0 18px 50px rgba(0, 8, 24, 0.45);
  --radius: 18px;
  --max: 1180px;
  --nav-h: 84px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  background-color: var(--bg);
  background-image: linear-gradient(180deg, rgba(4, 16, 31, 0.55), rgba(4, 16, 31, 0.92)),
    url("../images/brand/background.webp");
  background-size: cover;
  background-attachment: fixed;
  background-position: left center;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

a:hover {
  color: var(--gold-2);
}

h1,
h2,
h3,
.display {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  margin: 0em;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin: 0 0 0.6em;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1rem;
}

.muted {
  color: var(--muted);
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 99;
  background: #fff;
  color: #000;
  padding: 0.5rem 1rem;
}

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(4, 16, 31, 0.92), rgba(4, 16, 31, 0.72));
  border-bottom: 1px solid var(--stroke);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
}

.logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 0.2rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--gold-2);
  border-bottom-color: var(--gold);
}

.nav-cta {

}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--stroke);
  color: #fff;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(88vh - var(--nav-h));
  display: grid;
  align-items: end;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 16, 31, 0.88) 0%, rgba(4, 16, 31, 0.55) 48%, rgba(4, 16, 31, 0.25) 100%),
    linear-gradient(0deg, rgba(4, 16, 31, 0.7), transparent 45%);
}

.kicker {
  color: var(--gold-2);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1406;
}

.btn-primary:hover {
  color: #000;
  filter: brightness(1.05);
}

.btn-ghost {
  border-color: var(--stroke);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  /* font-family: var(--font-serif); */
  font-size: 1.7rem;
  color: var(--gold-2);
}

/* LAYOUT */
section {
  padding: 1rem 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 1.15rem 1.25rem;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.partner-logo picture,
.partner-logo img {
  display: block;
  width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.project-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  color: inherit;
}

.project-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.project-card .body {
  padding: 1.1rem 1.15rem 1.3rem;
}

.project-card h3 {
  margin-bottom: 0.3rem;
}

.meta {
  color: var(--gold-2);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.values li,
.principles li {
  margin-bottom: 0.7rem;
}

.team-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
}

.team-card {
  text-align: center;
}

.team-card ul {
  text-align: left;
  color: var(--muted);
  padding-left: 1.1rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.7rem;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.award-card picture {
  display: block;
  background: #081428;
}
.award-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.page-hero {
  padding: 3.2rem 0 1.2rem;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.detail-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.chip {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

form.contact-form {
  display: grid;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.92rem;
}

input,
select,
textarea {
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.map {
  width: 100%;
  min-height: 240px;
  border: 0;
  border-radius: 12px;
  filter: grayscale(0.15) contrast(1.05);
}

.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
  background: rgba(3, 10, 22, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer small {
  display: block;
  margin-top: 1.5rem;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-bar button {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
}

.filter-bar button.is-on,
.filter-bar button:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.sales-chart img {
  width: 100%;
  border-radius: var(--radius);
  background: #fff;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #061325;
    flex-direction: column;
    padding: 1rem 1.2rem 1.4rem;
    border-bottom: 1px solid var(--stroke);
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .partner-grid {
    grid-template-columns: 1fr 1fr;
  }
  body {
    background-attachment: scroll;
  }
}
