:root {
  --ink: #071c2d;
  --ink-soft: #15364b;
  --paper: #f6f8fa;
  --white: #fff;
  --gold: #bb7b45;
  --gold-dark: #9d6031;
  --gold-light: #e8b487;
  --gold-wash: #f6ebe2;
  --line: rgba(7, 28, 45, .13);
  --muted: #596d7b;
  --shadow: 0 24px 70px rgba(7, 28, 45, .14);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  background: rgba(7, 28, 45, .96);
  backdrop-filter: blur(14px);
}
.nav {
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.brand-name { font-size: 1.13rem; font-weight: 900; letter-spacing: .11em; }
.brand-domain {
  margin-top: 6px;
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: .86rem;
  font-weight: 680;
}
.nav-links a {
  padding: 8px 0;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a[aria-current="page"] { box-shadow: inset 0 -2px var(--gold-light); }
.nav-links .nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  box-shadow: none;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  color: var(--white);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5.3vw, 5rem);
  line-height: 1;
  letter-spacing: -.052em;
  text-wrap: balance;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -.044em;
  text-wrap: balance;
}
h3 { line-height: 1.25; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-white { background: var(--white); }
.section-dark { color: var(--white); background: var(--ink); }
.section-head { max-width: 820px; margin-bottom: 44px; }
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-dark .section-kicker { color: var(--gold-light); }
.lead { color: var(--muted); font-size: 1.08rem; }
.section-dark .lead { color: rgba(255,255,255,.7); }

.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px;
  padding: 13px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 790;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--gold-light); }
.button-primary:hover { background: var(--gold); }
.button-dark { color: var(--white); background: var(--ink); }
.button-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.button-ghost { border-color: rgba(255,255,255,.25); color: var(--white); background: rgba(255,255,255,.04); }
.text-link {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.home-hero {
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 15% 25%, rgba(187,123,69,.25), transparent 31rem), var(--ink);
}
.home-hero-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 76px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 62px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.hero-copy {
  max-width: 670px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.04rem, 1.6vw, 1.18rem);
}
.hero-assurance {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 680;
}
.hero-assurance::before {
  content: "✓";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-light);
  font-weight: 900;
}
.hero-visual { position: relative; min-height: 520px; }
.hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(0,0,0,.32);
}
.deadline-card {
  position: absolute;
  right: -24px;
  bottom: 34px;
  width: min(330px, 88%);
  padding: 23px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.deadline-label {
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.deadline-date { margin: 0; font-size: 1.4rem; font-weight: 860; letter-spacing: -.025em; }
.deadline-code { margin: 7px 0 0; color: var(--muted); font-size: .86rem; }

.facts { color: var(--white); background: var(--ink-soft); border-top: 1px solid rgba(255,255,255,.08); }
.facts-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 27px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fact { padding: 3px 25px; border-right: 1px solid rgba(255,255,255,.13); }
.fact:first-child { padding-left: 0; }
.fact:last-child { border-right: 0; }
.fact strong { display: block; margin-bottom: 2px; color: var(--gold-light); font-size: 1.5rem; line-height: 1.15; }
.fact span { color: rgba(255,255,255,.66); font-size: .88rem; }

.page-hero { color: var(--white); background: var(--ink); }
.page-hero-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 76px 0 82px;
}
.breadcrumb {
  margin: 0 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: rgba(255,255,255,.55);
  font-size: .84rem;
}
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.page-hero h1 { max-width: 900px; }
.page-hero .lead { max-width: 780px; color: rgba(255,255,255,.72); font-size: 1.14rem; }

.home-about {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.assurance-card {
  padding: 34px;
  border: 1px solid rgba(187,123,69,.34);
  border-radius: 26px;
  background: var(--gold-wash);
}
.assurance-card h3 { margin-bottom: 12px; font-size: 1.65rem; letter-spacing: -.03em; }
.assurance-card p { margin-bottom: 0; color: #5f4a3a; }
.assurance-card .address {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(187,123,69,.25);
  color: var(--ink);
  font-weight: 760;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.preview-card {
  min-height: 260px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.preview-label {
  margin-bottom: 30px;
  color: var(--gold-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.preview-card h3 { margin-bottom: 10px; font-size: 1.35rem; letter-spacing: -.02em; }
.preview-card p { margin-bottom: 26px; color: var(--muted); }
.preview-card .text-link { margin-top: auto; }

.content-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 58px;
  align-items: start;
}
.prose p { color: var(--muted); }
.prose strong { color: var(--ink); }
.process-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.process-card,
.team-card {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.process-card span,
.team-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.process-card h3,
.team-card h3 { margin-bottom: 10px; font-size: 1.22rem; }
.process-card p,
.team-card p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }

.brand-statement {
  margin-top: 34px;
  padding: 26px 30px;
  border-left: 4px solid var(--gold);
  color: var(--white);
  background: var(--ink);
  border-radius: 0 20px 20px 0;
}
.brand-statement strong { display: block; color: var(--gold-light); font-size: 1.2rem; }
.brand-statement span { color: rgba(255,255,255,.7); }

.competition-head {
  margin-bottom: 36px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.competition-head .section-head { margin-bottom: 0; }
.updated-label {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid rgba(187,123,69,.28);
  border-radius: 999px;
  color: var(--gold-dark);
  background: var(--gold-wash);
  font-size: .82rem;
  font-weight: 780;
}
.competition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.competition-card {
  min-height: 275px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.competition-region {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: var(--gold-wash);
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.competition-card h3 { margin-bottom: 24px; font-size: 1.08rem; letter-spacing: -.015em; }
.competition-data {
  margin-top: auto;
  padding-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
}
.competition-data span { display: block; color: var(--muted); font-size: .74rem; }
.competition-data strong { display: block; color: var(--ink); font-size: .98rem; }
.competition-data .date-soon { color: var(--gold-dark); }
.competition-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.project-card {
  padding: 31px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.project-card h3 { margin-bottom: 8px; font-size: 1.28rem; letter-spacing: -.02em; }
.project-location {
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.project-amount {
  margin-bottom: 17px;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -.025em;
}
.project-card > p:not(.project-location):not(.project-amount):not(.project-status) { color: var(--muted); }
.project-status {
  margin: auto 0 0;
  padding-top: 20px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 760;
  border-top: 1px solid var(--line);
}
.project-status::before { content: ""; width: 8px; height: 8px; margin-right: 8px; display: inline-block; border-radius: 50%; background: var(--gold); }
.projects-disclaimer {
  margin: 25px 0 0;
  padding: 18px 20px;
  border-radius: 16px;
  color: var(--muted);
  background: var(--gold-wash);
  font-size: .9rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.profile-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.profile-card:last-child { grid-column: 1 / -1; }
.profile-heading { margin-bottom: 22px; display: flex; align-items: center; gap: 16px; }
.profile-initials {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-light);
  font-weight: 900;
  letter-spacing: .04em;
}
.profile-card h3 { margin-bottom: 5px; font-size: 1.22rem; }
.profile-role { margin-bottom: 0; color: var(--gold-dark); font-size: .88rem; font-weight: 780; }
.profile-email {
  margin-bottom: 22px;
  display: inline-block;
  color: var(--ink);
  font-weight: 760;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}
.profile-card > p { color: var(--muted); }
.profile-card > p:last-child { margin-bottom: 0; }

.call-panel {
  padding: 46px;
  border-radius: 30px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}
.call-panel .section-kicker { color: var(--gold-light); }
.call-panel .lead { color: rgba(255,255,255,.7); }
.call-details {
  margin: 36px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.call-detail {
  padding: 21px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}
.call-detail strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.call-detail p { margin-bottom: 0; color: rgba(255,255,255,.78); font-size: .94rem; }

.scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.scope-card {
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.scope-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 25px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-weight: 850;
}
.scope-card h3 { margin-bottom: 15px; font-size: 1.32rem; letter-spacing: -.025em; }
.scope-card ul { margin: 0; padding-left: 1.25rem; color: var(--muted); }
.scope-card li { margin-bottom: 8px; }
.scope-card li:last-child { margin-bottom: 0; }
.scope-card li::marker { color: var(--gold); }
.scope-note {
  margin: 22px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  background: var(--gold-wash);
  font-size: .92rem;
}

.results-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.result-main,
.result-side { min-height: 310px; padding: 38px; border-radius: 26px; }
.result-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
}
.result-side { border: 1px solid var(--line); background: var(--white); }
.result-label {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.result-side .result-label { color: var(--gold-dark); }
.result-number {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.055em;
}
.amount-number { font-size: clamp(1.75rem, 4.7vw, 4rem); }
.result-main p { margin-bottom: 0; color: rgba(255,255,255,.68); }
.result-side p { margin-bottom: 0; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 24px;
}
.contact-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
}
.contact-card h2 { margin-bottom: 14px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.contact-card p { color: var(--muted); }
.contact-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.contact-list li { margin-bottom: 15px; }
.contact-list strong { display: block; color: var(--gold-dark); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-list a { font-size: 1.05rem; font-weight: 760; text-decoration: none; }
.contact-steps {
  margin: 24px 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}
.contact-steps li { margin-bottom: 10px; }
.contact-steps li::marker { color: var(--gold); }

.cta-band {
  padding: 36px 0;
  color: var(--white);
  background: var(--ink-soft);
}
.cta-band-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-band h2 { margin-bottom: 6px; font-size: clamp(1.65rem, 3vw, 2.5rem); }
.cta-band p { margin-bottom: 0; color: rgba(255,255,255,.68); }

footer { padding: 30px 0; color: rgba(255,255,255,.66); background: var(--ink); font-size: .87rem; }
.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-inner strong { color: var(--gold-light); letter-spacing: .08em; }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }

@media (max-width: 1050px) {
  .nav-links { gap: 12px; font-size: .8rem; }
}
@media (max-width: 900px) {
  .home-hero-inner,
  .home-about,
  .content-grid,
  .results-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .home-hero-inner { gap: 42px; padding-top: 58px; }
  .hero-visual, .hero-image { min-height: 410px; height: 410px; }
  .deadline-card { right: 18px; bottom: 18px; }
  .preview-grid,
  .process-grid,
  .team-grid,
  .call-details { grid-template-columns: 1fr; }
  .competition-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 760px) {
  .nav { min-height: 68px; }
  .menu-button { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    inset: 68px 0 auto;
    display: none;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .nav-links[data-open="true"] { display: flex; }
  .nav-links a { padding: 12px 0; font-size: .95rem; }
  .nav-links .nav-cta { margin-top: 6px; padding: 12px 16px; text-align: center; }
  .facts-inner { grid-template-columns: 1fr; }
  .fact { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .fact:last-child { border-bottom: 0; }
  .scope-grid { grid-template-columns: 1fr; }
  .competition-head { align-items: flex-start; flex-direction: column; }
  .competition-grid,
  .project-grid,
  .profile-grid { grid-template-columns: 1fr; }
  .profile-card:last-child { grid-column: auto; }
  .section { padding: 70px 0; }
  .call-panel { padding: 31px 23px; border-radius: 24px; }
  .page-hero-inner { padding: 58px 0 64px; }
  .footer-inner { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
