:root {
  --color-text: #111111;
  --color-muted: #5d5d5d;
  --color-surface: #ffffff;
  --color-soft: #f8f8f8;
  --color-blue: #0f6baa;
  --color-yellow: #f7dd19;
  --shadow-header: 0 1px 18px rgba(0, 0, 0, 0.08);
  --content-width: 1180px;
  font-family: Signika, "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
  padding: 10px clamp(18px, 5vw, 56px);
  background: var(--color-surface);
  box-shadow: var(--shadow-header);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 120px;
}

.brand img {
  display: block;
  width: auto;
  height: 75px;
  max-width: 190px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 4vw, 42px);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--color-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 94px);
  align-items: center;
  overflow: hidden;
  background-image: url("assets/halle.jpg");
  background-position: center;
  background-size: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
}

.hero__content {
  position: relative;
  width: min(var(--content-width), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 12vw, 130px) 0;
  color: #ffffff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--color-yellow);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin-bottom: 34px;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 0;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button--primary {
  color: #000000;
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}

.button--primary:hover,
.button--primary:focus-visible {
  color: #ffffff;
  background: var(--color-blue);
  border-color: var(--color-blue);
}

.button--secondary {
  color: #ffffff;
  background: transparent;
  border-color: #ffffff;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  color: #000000;
  background: #ffffff;
}

.notice,
.contact {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 56px);
}

.notice {
  background: var(--color-soft);
}

.notice__inner,
.contact__inner {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.notice__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.notice h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.notice__copy {
  color: var(--color-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.notice__copy p:last-child,
.contact p:last-child {
  margin-bottom: 0;
}

.contact {
  background: #ffffff;
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: baseline;
}

.contact p {
  color: var(--color-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.contact a {
  color: var(--color-blue);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 5vw, 56px);
  color: #ffffff;
  background: #111111;
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--color-yellow);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 16px;
  }

  .brand img {
    height: 64px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .notice__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .actions,
  .button {
    width: 100%;
  }
}
