:root {
  --roman-red: #7d1114;
  --antique-gold: #b58a45;
  --gold-soft: #d6bd7a;
  --travertine: #f3eee5;
  --ink: #251d18;
  --muted: #5f554b;
  --trajan: "Trajan Pro 3", "Trajan Pro", "Trajan Sans Pro", "Cinzel", "Times New Roman", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #17120e;
  color: var(--ink);
  font-family: var(--trajan);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell,
.hero {
  width: 100%;
  height: 100vh;
  height: 100svh;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.carousel,
.carousel-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.carousel {
  z-index: -3;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1800ms ease, transform 9000ms ease;
}

.carousel-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.94) 0%, rgba(246, 241, 231, 0.82) 31%, rgba(246, 241, 231, 0.28) 54%, rgba(30, 23, 17, 0.28) 100%),
    linear-gradient(90deg, rgba(246, 241, 231, 0.72), rgba(30, 23, 17, 0.12) 52%, rgba(30, 23, 17, 0.48));
}

.top-statement {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100vw - 72px));
  margin: clamp(18px, 3vh, 34px) auto 0;
  padding: clamp(8px, 1.2vh, 14px) clamp(18px, 3vw, 42px) clamp(10px, 1.5vh, 18px);
  text-align: center;
}

.top-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(246, 241, 231, 0.72), rgba(246, 241, 231, 0.34) 48%, transparent 74%);
  filter: blur(2px);
}

.brand-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1vh, 12px);
}

.official-logo {
  width: clamp(104px, 10.5vw, 168px);
  height: clamp(104px, 10.5vw, 168px);
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 5px 14px rgba(246, 241, 231, 0.72)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.24));
}

h1 {
  margin: 0;
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}

.title-main,
.title-sub {
  display: block;
  color: var(--roman-red);
  text-shadow:
    0 1px 0 rgba(246, 241, 231, 0.7),
    0 4px 20px rgba(246, 241, 231, 0.9),
    0 2px 7px rgba(0, 0, 0, 0.26);
}

.title-main {
  color: var(--antique-gold);
  font-size: clamp(3.2rem, 6.4vw, 7.3rem);
  letter-spacing: 0.115em;
}

.title-sub {
  position: relative;
  width: fit-content;
  margin: clamp(4px, 0.8vh, 8px) auto 0;
  padding: 0 clamp(42px, 6vw, 92px);
  color: var(--antique-gold);
  font-size: clamp(1.45rem, 3vw, 3.55rem);
  letter-spacing: 0.13em;
}

.title-sub::before,
.title-sub::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(28px, 4vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--antique-gold), transparent);
}

.title-sub::before {
  left: 0;
}

.title-sub::after {
  right: 0;
}

.eyebrow,
.project-name,
.status-label {
  margin: 0;
  font-family: var(--trajan);
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  margin-top: clamp(8px, 1.3vh, 14px);
  color: var(--roman-red);
  font-size: clamp(0.66rem, 0.82vw, 0.86rem);
  letter-spacing: 0.34em;
  text-shadow: 0 1px 0 rgba(246, 241, 231, 0.68), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.project-name {
  margin-top: clamp(8px, 1.2vh, 12px);
  color: var(--antique-gold);
  font-size: clamp(0.68rem, 0.86vw, 0.88rem);
  letter-spacing: 0.34em;
  text-shadow: 0 1px 0 rgba(246, 241, 231, 0.72), 0 2px 8px rgba(0, 0, 0, 0.18);
}

.subtitle {
  margin: clamp(8px, 1.2vh, 12px) auto 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.35;
  text-shadow: 0 1px 0 rgba(246, 241, 231, 0.8), 0 2px 9px rgba(0, 0, 0, 0.24);
}

.status-panel {
  margin-top: clamp(13px, 2vh, 22px);
}

.status-label {
  color: var(--roman-red);
  font-size: clamp(0.83rem, 1.07vw, 1.07rem);
  letter-spacing: 0.32em;
  text-shadow: 0 1px 0 rgba(246, 241, 231, 0.7), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.status-copy {
  max-width: 850px;
  margin: clamp(7px, 1vh, 10px) auto 0;
  color: #000;
  font-size: clamp(1.09rem, 1.3vw, 1.3rem);
  line-height: 1.42;
  text-shadow: 0 1px 0 rgba(246, 241, 231, 0.88), 0 2px 8px rgba(246, 241, 231, 0.65);
}

.site-contact {
  position: fixed;
  right: clamp(18px, 3vw, 48px);
  bottom: clamp(58px, 7.2vh, 76px);
  left: clamp(18px, 3vw, 48px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: rgba(251, 250, 246, 0.9);
  font-family: var(--trajan);
  font-size: clamp(0.66rem, 0.82vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.site-contact span,
.site-contact a {
  white-space: nowrap;
}

.site-contact a:hover {
  color: var(--gold-soft);
}

.ai-note {
  position: fixed;
  right: clamp(12px, 2vw, 28px);
  bottom: clamp(10px, 1.4vh, 18px);
  left: clamp(12px, 2vw, 28px);
  z-index: 3;
  max-width: 1460px;
  margin: 0 auto;
  padding: 7px 12px;
  border: 0;
  border-radius: 4px;
  background: rgba(251, 250, 246, 0.78);
  color: rgba(37, 29, 24, 0.72);
  font-family: var(--trajan);
  font-size: clamp(0.48rem, 0.62vw, 0.56rem);
  line-height: 1.22;
  text-align: center;
}

.ai-note strong {
  color: var(--roman-red);
  font-weight: 700;
}

@media (max-height: 760px) {
  .top-statement {
    margin-top: 18px;
  }

  .official-logo {
    width: clamp(82px, 8.5vw, 118px);
    height: clamp(82px, 8.5vw, 118px);
  }

  .title-main {
    font-size: clamp(2.4rem, 5vw, 4.9rem);
  }

  .title-sub {
    font-size: clamp(1.1rem, 2.4vw, 2.5rem);
  }

  .eyebrow {
    margin-top: 6px;
  }

  .project-name,
  .subtitle {
    margin-top: 7px;
  }

  .status-panel {
    margin-top: 10px;
  }

  .status-copy {
    line-height: 1.3;
  }

  .site-contact {
    bottom: 50px;
    font-size: 0.62rem;
  }
}

@media (max-width: 820px) {
  .top-statement {
    width: min(680px, calc(100vw - 32px));
  }

  .brand-line {
    flex-direction: column;
    gap: 8px;
  }

  .title-main {
    font-size: clamp(2.15rem, 11vw, 3.8rem);
  }

  .title-sub {
    padding: 0 36px;
    font-size: clamp(1rem, 6vw, 1.9rem);
  }

  .site-contact {
    flex-wrap: wrap;
    row-gap: 7px;
    bottom: 62px;
    letter-spacing: 0.08em;
  }
}
