@font-face {
  font-family: "Inter Variable";
  src: url("./assets/fonts/inter-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope Variable";
  src: url("./assets/fonts/manrope-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: "Inter Variable", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2f2f30;
  background: #f5f4ef;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body { margin: 0; min-width: 320px; }

.page-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  padding: clamp(28px, 4.5vw, 72px);
  background: #f5f4ef;
}

.site-header, .site-footer { position: relative; z-index: 2; width: 100%; max-width: 1440px; margin-inline: auto; }

.logo { display: block; width: clamp(185px, 21vw, 285px); height: auto; }

.main-content {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 1440px;
  min-height: 620px;
  margin: auto;
  padding-block: 70px;
  display: flex;
  align-items: center;
}

.hero-copy { position: relative; z-index: 2; width: min(58%, 730px); }

.accent-line { width: 46px; height: 2px; background: #a48b86; margin-bottom: 28px; }

.eyebrow {
  margin: 0 0 21px;
  color: #7a635f;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1 {
  max-width: 790px;
  margin: 0;
  font-family: "Manrope Variable", "Inter Variable", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(3.2rem, 6.6vw, 6.6rem);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: 1.06;
}

h1 span { color: #a48b86; }

.intro {
  max-width: 520px;
  margin: 32px 0 0;
  color: #57575a;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.intro a {
  color: #7a635f;
  font-weight: 650;
  text-decoration-color: #a48b86;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.intro a:hover { color: #2f2f30; text-decoration-color: currentColor; }

.intro a:focus-visible { outline: 2px solid #7a635f; outline-offset: 4px; border-radius: 2px; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  padding: 12px 17px;
  border: 1px solid #d9cec9;
  border-radius: 999px;
  color: #57575a;
  background: rgba(255, 255, 255, .45);
  font-size: .82rem;
  font-weight: 600;
}

.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #a48b86; }

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -7%;
  width: min(72vw, 900px);
  aspect-ratio: 4 / 3;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 30%;
  height: 5%;
  border-radius: 50%;
  background: rgba(47, 47, 48, .13);
  filter: blur(22px);
  transform: translateX(-50%);
}

.logo-video, .motion-poster {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.motion-poster { display: none; }
.hero-visual.video-failed .logo-video { display: none; }
.hero-visual.video-failed .motion-poster { display: block; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 23px;
  border-top: 1px solid #d9cec9;
  color: #77716f;
  font-size: .75rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .main-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 680px;
    min-height: 0;
    padding-block: 70px 45px;
  }
  .hero-copy { width: 100%; }
  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    align-self: center;
    width: min(100%, 650px);
    margin-top: 6px;
    transform: none;
  }
}

@media (max-width: 600px) {
  .page-shell { padding: 28px 24px; }
  .main-content { padding-block: 72px 34px; }
  h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .intro { margin-top: 24px; }
  .status { margin-top: 32px; }
  .hero-visual { width: min(150vw, 620px); flex: none; margin-top: 3px; }
  .site-footer { flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-video { display: none; }
  .motion-poster { display: block; }
}
