@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/aileron/Aileron-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/aileron/Aileron-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/aileron/Aileron-Black.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --bg: #ff7e14;
  --bg-deep: #d95c00;
  --bg-soft: #fff2e3;
  --ink: #171311;
  --paper: rgba(255, 246, 236, 0.88);
  --line: rgba(23, 19, 17, 0.1);
  --shadow: 0 28px 90px rgba(92, 33, 0, 0.24);
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Aileron", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 222, 173, 0.22), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 243, 226, 0.24), transparent 28%),
    linear-gradient(135deg, #ff7e14 0%, #f36c0a 42%, #dc5600 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 250, 244, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 244, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.34;
  pointer-events: none;
}

.construction-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.construction-card {
  width: min(100%, 760px);
  padding: 34px;
  border: 1px solid rgba(255, 245, 235, 0.34);
  border-radius: 36px;
  background: var(--paper);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.construction-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.construction-brand img {
  width: 62px;
  height: 62px;
  padding: 10px;
  border-radius: 18px;
  background: #fff7ef;
  border: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--bg-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Aileron", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.construction-text,
.construction-note {
  max-width: 52ch;
  color: rgba(23, 19, 17, 0.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.construction-text {
  margin: 22px 0 0;
}

.construction-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.construction-tags span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff7ef;
  border: 1px solid rgba(23, 19, 17, 0.08);
  color: var(--bg-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.construction-note {
  margin: 0;
}

@media (max-width: 720px) {
  .construction-card {
    padding: 24px;
    border-radius: 28px;
  }

  .construction-brand {
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.82rem;
  }

  .construction-brand img {
    width: 56px;
    height: 56px;
  }

  h1 {
    max-width: 100%;
  }
}
