:root {
  --navy: #00242e;
  --deep: #011f46;
  --orange: #fe7629;
  --burnt: #a14000;
  --text: #41484b;
  --soft: #f3f3f4;
  --pale: #f9f9f9;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-dark: rgba(0, 36, 46, 0.68);
  --glass-edge: rgba(255, 255, 255, 0.42);
  --glass-shadow: 0 24px 70px rgba(0, 22, 28, 0.14);
  --max: 1280px;
  --edge: 32px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--white); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(254, 118, 41, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f7f8 48%, #eef4f5 100%);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(0, 36, 46, 0.78);
  border-bottom: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 45px rgba(0, 18, 25, 0.18);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.nav-inner {
  width: min(100%, var(--max));
  min-height: 80px;
  margin: 0 auto;
  padding: 0 var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: "Work Sans", Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .05em;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--orange);
  border-color: var(--orange);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.button,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 8px 24px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.button:hover,
.contact-button:hover {
  transform: translateY(-1px);
  background: #e86922;
}

.site-header .contact-button {
  position: relative;
  isolation: isolate;
  min-height: 36px;
  padding: 0.35em 3.3em 0.35em 1.2em;
  border-radius: 0.9em;
  box-shadow: inset 0 0 1.4em -0.65em #a14000;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  overflow: hidden;
}

.site-header .contact-button::after {
  content: "";
  position: absolute;
  right: 0.3em;
  top: 50%;
  z-index: 0;
  width: 2.2em;
  height: 2.2em;
  background: var(--white);
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.15em rgba(161, 64, 0, 0.42);
  transform: translateY(-50%);
  transition: width 260ms ease;
}

.contact-button-label {
  position: relative;
  z-index: 1;
}

.site-header .contact-button::before {
  content: "";
  position: absolute;
  right: 0.85em;
  top: 50%;
  z-index: 1;
  width: 1.1em;
  height: 1.1em;
  background: var(--orange);
  clip-path: polygon(8% 43%, 60% 43%, 38% 21%, 50% 9%, 92% 50%, 50% 91%, 38% 79%, 60% 57%, 8% 57%);
  transform: translateY(-50%);
  transition: transform 260ms ease;
}

.site-header .contact-button:hover::after {
  width: calc(100% - 0.6em);
}

.site-header .contact-button:hover {
  color: var(--navy);
}

.site-header .contact-button:hover::before {
  transform: translate(0.1em, -50%);
}

.site-header .contact-button:active::after {
  transform: translateY(-50%) scale(0.95);
}

.site-header .language-toggle {
  font-weight: 400;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 30px;
  padding: 7px 12px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 4px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transform: translateX(-5px);
}

.language-toggle:hover {
  border-color: var(--orange);
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 417px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero.tall { min-height: 600px; text-align: center; place-items: center; }
.hero.left { text-align: left; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image, linear-gradient(135deg, #14313a, #09212a));
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,36,46,.78), rgba(0,36,46,.42));
}

.hero.tall::after { background: rgba(0,36,46,.6); }

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 88px var(--edge);
  display: grid;
  gap: 16px;
}

.hero.tall .hero-content {
  width: min(100%, 800px);
  justify-items: center;
  padding-top: 96px;
  padding-bottom: 84px;
}

h1 {
  max-width: 760px;
  font-family: "Work Sans", Inter, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.hero.tall h1 {
  text-shadow: 0 4px 2px rgba(0,0,0,.1), 0 10px 4px rgba(0,0,0,.04);
}

.hero p {
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  line-height: 1.6;
}

.about-intro {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 30px var(--edge) 70px;
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
}

.about-hero-image {
  width: 100%;
  aspect-ratio: 1120 / 435;
  overflow: hidden;
  background: var(--soft);
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  padding-top: 26px;
  color: #002386;
}

.about-copy h1 {
  max-width: none;
  color: #002386;
  font-family: Inter, Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

.about-copy p {
  max-width: 1160px;
  margin-top: 12px;
  color: #002386;
  font-size: 14px;
  line-height: 1.45;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 80px var(--edge);
}

.band {
  width: 100%;
  background: linear-gradient(135deg, rgba(243,243,244,.78), rgba(255,255,255,.58));
  border-top: 1px solid var(--glass-edge);
  border-bottom: 1px solid var(--glass-edge);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
}

.pale {
  background: linear-gradient(135deg, rgba(249,249,249,.88), rgba(237,244,245,.7));
}

.section-title {
  color: var(--navy);
  font-family: "Work Sans", Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.center { text-align: center; }
.accent-line {
  width: 64px;
  height: 4px;
  margin-top: 8px;
  background: var(--orange);
}
.center .accent-line { margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 4px 12px;
  color: var(--white);
  background: var(--burnt);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.card {
  border: 1px solid var(--glass-edge);
  background: var(--glass);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  padding: 32px;
}

.card.dark {
  color: var(--white);
  background: var(--glass-dark);
}

.card h3,
.card h4 {
  color: var(--navy);
  font-family: "Work Sans", Inter, sans-serif;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.card.dark h3,
.card.dark h4 { color: var(--white); }
.card p { font-size: 16px; }

.image-frame {
  overflow: hidden;
  border: 1px solid var(--glass-edge);
  background: var(--glass-dark);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame.tall { height: 400px; }
.image-frame.short { height: 300px; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 300px 300px;
  gap: 24px;
  margin-top: 32px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-edge);
  min-height: 300px;
  color: var(--white);
  background: var(--glass-dark);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.category-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,36,46,.9), rgba(0,36,46,.3) 50%, rgba(0,36,46,0));
}

.category-copy {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 14px 16px;
  background: rgba(0, 36, 46, 0.34);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 14px 40px rgba(0,0,0,.16);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
}

.category-copy h3 {
  color: var(--white);
  font-family: "Work Sans", Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.category-copy p {
  color: rgba(255,255,255,.8);
  font-size: 16px;
}

.form {
  border: 1px solid var(--glass-edge);
  background: var(--glass-strong);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  padding: 32px;
  display: grid;
  gap: 24px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.62);
  min-height: 50px;
  padding: 12px;
  font: inherit;
  color: var(--navy);
  background: rgba(255,255,255,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

textarea { min-height: 122px; resize: vertical; }

.footer {
  width: 100%;
  padding: 36px 0 32px;
  color: var(--white);
  background: rgba(1, 31, 70, 0.84);
  border-top: 1px solid rgba(254, 118, 41, 0.54);
  box-shadow: 0 -18px 60px rgba(0, 18, 25, 0.16);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--edge);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(48px, 10vw, 160px);
}

.footer-inner > section {
  flex: 0 1 auto;
}

.footer h4 {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: 16px;
}

.footer a:hover { color: var(--orange); }

@media (max-width: 900px) {
  :root { --edge: 24px; }
  .nav-inner {
    height: auto;
    flex-wrap: wrap;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 4px;
  }
  .nav-actions {
    margin-left: auto;
  }
  h1 { font-size: 40px; }
  .grid-2, .grid-3, .grid-4, .footer-inner, .field-grid { grid-template-columns: 1fr; }
  .footer-inner {
    display: grid;
    gap: 24px;
  }
  .category-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .category-card, .category-card.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }
  .about-copy h1 { font-size: 24px; }
}

@media (max-width: 560px) {
  :root { --edge: 18px; }
  .brand { font-size: 21px; }
  .contact-button { padding-inline: 16px; }
  h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  .section { padding-top: 56px; padding-bottom: 56px; }
  .section-title { font-size: 28px; }
  .image-frame.tall { height: 300px; }
  .about-intro { padding-top: 18px; padding-bottom: 48px; }
  .about-hero-image { aspect-ratio: 4 / 3; }
  .about-copy h1 { font-size: 22px; }
  .about-copy p { font-size: 14px; }
}
