:root {
  --bg: #06100b;
  --bg-soft: #0a1610;
  --text: #f0d1b5;
  --muted: #af9a8a;
  --button: #a63d12;
  --button-hover: #ba4716;
  --button-disabled: #5e260f;
  --button-disabled-text: #837468;
  --shadow: rgba(0, 0, 0, 0.22);
}

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

html {
  height: 100%;
}

body {
  min-height: 100vh;
  height: 100dvh;
  margin: 0;
  background:
    radial-gradient(circle at top center, rgba(19, 36, 26, 0.55), transparent 36%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Schibsted Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  height: 100dvh;
  display: flex;
  justify-content: center;
}

.hero {
  width: min(100%, 600px);
  min-height: 100vh;
  height: 100dvh;
  justify-content: center;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: min(68px, 13vw);
  height: auto;
  margin-bottom: 26px;
}

h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.title-line {
  display: block;
}

.title-line-wide {
  white-space: nowrap;
}

.intro {
  max-width: none;
  margin: 14px 0 34px;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.6vw, 1.16rem);
  line-height: 1.16;
  font-weight: 300;
}

.actions {
  width: 100%;
  display: grid;
  gap: 14px;
}

.action-button {
  width: 100%;
  min-height: 60px;
  padding: 12px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--button);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 30px var(--shadow);
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.action-button:hover,
.action-button:focus-visible {
  background: var(--button-hover);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 34px var(--shadow);
  outline: none;
}

.action-button:active {
  background: #8f350f;
  transform: translateY(1px) scale(0.995);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.18);
}

.action-button-disabled,
.action-button-disabled:hover,
.action-button-disabled:focus-visible,
.action-button-disabled:active {
  background: var(--button-disabled);
  color: var(--button-disabled-text);
  transform: none;
  box-shadow: none;
  cursor: default;
}

.button-label {
  font-size: clamp(0.98rem, 1.4vw, 1.2rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-align: center;
}

.contact {
  margin-top: 34px;
  padding-top: 0;
}

.contact p {
  margin: 0 0 8px;
  color: var(--button-disabled-text);
  font-size: clamp(0.88rem, 1.45vw, 1.05rem);
  font-weight: 300;
}

.contact a {
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  transition:
    color 180ms ease,
    text-decoration-thickness 180ms ease,
    text-underline-offset 180ms ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: #f6dcc5;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
  outline: none;
}

@media (max-width: 640px) {
  .hero {
    padding: 22px 16px;
  }

  .logo {
    width: clamp(72px, 22vw, 88px);
    margin-bottom: 24px;
  }

  .intro {
    margin: 14px 0 32px;
  }

  .action-button {
    min-height: 56px;
    border-radius: 14px;
    padding: 11px 16px;
  }

  .contact {
    margin-top: 32px;
    padding-top: 0;
  }

  .title-line-wide {
    white-space: normal;
  }

  .button-label {
    font-size: clamp(0.92rem, 3.7vw, 1.08rem);
  }
}
