@font-face {
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("assets/fonts/cormorant-latin-400.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --bg: #FEFDFE;
  --ink: oklch(32% 0 0);
  --muted: oklch(47% 0 0);
  --line: oklch(84% 0 0);
  --panel: oklch(100% 0 0);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

.hero {
  height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.hero__content {
  width: min(100%, 58rem);
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--ink);
  font-family: "Cormorant", Georgia, serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
}

h1 {
  max-width: 22ch;
  margin: 0;
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(1.6rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 400;
}

.soft-word {
  color: oklch(58% 0 0);
}

.image-frame {
  width: min(90vw, 58rem, 82svh);
  margin: clamp(1.25rem, 4vw, 3rem) 0 clamp(0.9rem, 2vw, 1.4rem);
  position: relative;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  opacity: 1;
}

.image-frame--empty::before {
  content: "Image goes here";
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.status {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: -0.02em;
}

.email {
  color: var(--ink);
  font-size: 0.875rem;
  text-underline-offset: 0.28em;
  text-decoration-color: oklch(70% 0 0);
}

.email:hover {
  color: var(--ink);
}

@media (max-width: 560px) {
  .hero {
    padding: 1.25rem;
  }

  h1 {
    max-width: 20ch;
    font-size: clamp(1.45rem, 7vw, 2.25rem);
  }

  .eyebrow {
    margin-bottom: 0.75rem;
  }

  .image-frame {
    width: min(96vw, 34rem);
    margin: 1.35rem 0 0.85rem;
  }
}
