@font-face {
  font-family: "Anton";
  src: url("./assets/Anton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Amarante";
  src: url("./assets/Amarante-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --bg: #f7f1e8;
  --surface: #fffaf3;
  --ink: #1f1a17;
  --muted: #6e6259;
  --accent: #d95d39;
  --accent-dark: #8f2d1d;
  --line: rgba(31, 26, 23, 0.12);
  --shadow: 0 24px 60px rgba(80, 45, 25, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fdf8f1 0%, var(--bg) 100%);
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
}

.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.image-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.image-card {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.image-card picture {
  display: block;
  width: 100%;
  height: 100vh;
}

.image-card img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  background: #f3e0c9;
}

.embed-shell {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 32px);
}

.hero-cta {
  width: min(520px, 100%);
  margin-top: 30px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: #fed734;
  color: #000000;
  font-family: "Amarante", "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  cursor: pointer;
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 24px, 1120px);
    padding: 0;
  }

  .image-card img {
    object-fit: cover;
    object-position: center top;
  }

  .embed-shell {
    padding: 16px;
  }

  .hero-cta {
    padding: 24px 20px;
    margin-top: 50px;
  }
}
