@font-face {
  font-family: Raleway;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/raleway-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Raleway;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/raleway-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Raleway;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/raleway-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Raleway;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/raleway-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --yellow: #ffd200;
  --yellow-2: #ffc400;
  --bg: #141414;
  --ink: #1a1a1a;
  --panel: #1c1c1c;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.1);
  --white: #f5f5f5;
  --max: 1180px;
  --header: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Raleway, system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--yellow);
  color: var(--ink);
  padding: 8px 14px;
  z-index: 200;
  font-weight: 700;
}
.skip:focus { left: 8px; }

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.kicker {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
h3 { font-size: 18px; font-weight: 700; }

.stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--yellow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font: 700 12px/1 Raleway, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-yellow,
a.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover,
a.btn-yellow:hover { background: var(--yellow-2); color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-dark { background: var(--ink); color: var(--yellow); }
.btn-dark:hover { background: #000; color: var(--yellow); }
.btn[disabled] { opacity: 0.6; cursor: wait; transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--yellow);
}
body.nav-open { overflow: hidden; }
.header-inner {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header);
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo:hover { opacity: 0.88; }
.logo img {
  display: block;
  height: 54px;
  width: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 18px;
}
.nav a {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 0;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-phone {
  background: var(--ink);
  color: var(--yellow) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 10px 16px;
  white-space: nowrap;
}
.header-phone:hover { background: #000; color: var(--yellow) !important; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: 0.2s;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
body.nav-open .menu-toggle span { background: transparent; }
body.nav-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 72px;
}
.hero h1 {
  font-size: clamp(40px, 8vw, 92px);
  font-weight: 800;
  max-width: 14ch;
  margin-bottom: 22px;
}
.hero p {
  max-width: 62ch;
  color: #ddd;
  font-size: 16px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.marquee {
  background: var(--yellow);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track span { padding: 0 28px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 88px 0; }
.section-panel { background: var(--panel); }
.section-yellow { background: var(--yellow); color: var(--ink); }
.section-yellow .kicker,
.section-yellow p { color: var(--ink); }
.section-yellow a.btn-dark { color: var(--yellow); }

.section-head { margin-bottom: 40px; }
.section-head p { color: var(--muted); max-width: 60ch; margin: 14px 0 0; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split-rev { grid-template-columns: 0.95fr 1.05fr; }
.split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-copy p { color: #cfcfcf; margin: 0 0 16px; }
.trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.trust span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.trust-logo {
  background: #000;
  padding: 10px 14px;
  max-width: 180px;
}
.trust-logo img { width: 150px; height: auto; }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: #161616;
  border-left: 4px solid var(--yellow);
  padding: 28px 22px 26px;
  min-height: 210px;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s, transform 0.2s;
}
.service-card:hover { background: #222; color: #fff; transform: translateY(-3px); }
.service-num {
  color: var(--yellow);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
}
.service-card h3 { font-size: 18px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }

.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 10px;
}
.mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  display: block;
  background: #000;
}
.mosaic .tall { grid-row: 1 / span 2; }
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mosaic figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 14px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.mosaic-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.offer-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.offer-row:last-child { border-bottom: 1px solid var(--line); }
.offer-num {
  color: var(--yellow);
  font-size: 28px;
  font-weight: 800;
}
.offer-row p { margin: 0; color: #cfcfcf; }

.materials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.materials img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.mat-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}
.mat-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}
.mat-list li:last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
.mat-list span { color: rgba(0, 0, 0, 0.45); }

.spec-box {
  background: #111;
  color: #fff;
  padding: 28px;
  margin-top: 24px;
}
.spec-box h3 {
  color: var(--yellow);
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 0.14em;
}
.spec-box ul { margin: 0; padding-left: 18px; color: #ddd; }
.spec-box li { margin: 6px 0; }

.cta-band {
  position: relative;
  min-height: 340px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.cta-card {
  position: relative;
  z-index: 1;
  background: var(--yellow);
  color: var(--ink);
  padding: 40px 36px;
  max-width: 460px;
}
.cta-card h2 { margin-bottom: 12px; }
.cta-card p { margin: 0 0 22px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.contact-block h3 {
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.contact-block p,
.contact-block a:not(.btn) { color: #ddd; }
.contact-block + .contact-block { margin-top: 28px; }
.phone-xl {
  font-size: 28px;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: 0.02em;
}
.phone-xl:hover { color: var(--yellow) !important; }

.map-wrap { margin-top: 16px; }
.map-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}
.map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: #111;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 22px;
  background: #0f0f0f;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-logo { width: 118px; height: auto; display: block; }
.footer-meta,
.footer-meta a { color: var(--muted); font-size: 13px; }
.footer-meta a:hover { color: var(--yellow); }
.gwp { font-size: 13px; color: #777; }
.gwp a { color: #999; }
.gwp a:hover { color: var(--yellow); }

.page-hero {
  padding: 72px 0 48px;
  border-bottom: 4px solid var(--yellow);
}
.page-hero h1 { font-size: clamp(36px, 7vw, 80px); }
.prose {
  max-width: 800px;
  margin: 0 auto;
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.85;
}
.prose p { margin: 0 0 16px; }
.fund-banner {
  background: #fff;
  padding: 22px 24px;
  margin: 0 auto 40px;
  max-width: 960px;
}
.fund-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.policy h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  text-transform: none;
  letter-spacing: 0;
}
.policy p,
.policy li { color: #ccc; }

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  max-width: 720px;
  margin: 0 auto;
  background: #1a1a1a;
  color: #eee;
  border: 1px solid var(--yellow);
  padding: 22px 24px;
  display: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 14px; font-size: 14px; color: #ccc; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.notfound {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
}
.notfound h1 {
  font-size: clamp(48px, 10vw, 120px);
  color: var(--yellow);
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav,
  .header-phone { display: none; }
  body.nav-open .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--yellow);
    padding: 12px 24px 28px;
    gap: 8px;
    border-bottom: 2px solid var(--ink);
  }
  body.nav-open .header-phone {
    display: inline-flex;
    position: absolute;
    left: 24px;
    top: calc(var(--header) + 290px);
  }
  .split,
  .split-rev,
  .materials,
  .contact-grid,
  .grid-4 { grid-template-columns: 1fr; }
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .mosaic .tall { grid-row: auto; }
  .offer-row { grid-template-columns: 48px 1fr; }
  .offer-row p { grid-column: 1 / -1; }
  .split img,
  .materials img { height: 280px; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, var(--max)); }
  .section { padding: 64px 0; }
  .hero-content { padding: 56px 0 48px; }
  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .mosaic figure { height: 220px; }
  :root { --header: 64px; }
  .cta-card { padding: 28px 22px; }
  .logo img { height: 42px; }
  .fund-banner { padding: 14px; }
  body.nav-open .header-phone { top: calc(var(--header) + 310px); }
}
