:root {
  --ink: #1d1d1b;
  --muted: #7a7a7a;
  --sand: #f6f2ea;
  --gold: #b79258;
  --deep: #0b0d10;
  --shadow: rgba(10, 10, 10, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--sand);
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 46%) 1fr;
}

.content {
  padding: 4.5rem 4.8vw 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  background: radial-gradient(circle at top left, #ffffff 0%, var(--sand) 48%, #efe7db 100%);
  animation: fadeUp 0.8s ease both;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s ease both;
}

.logo {
  width: min(340px, 90%);
  height: auto;
}

.logo--invert {
  filter: brightness(0) invert(1);
}

.headline-block {
  text-align: center;
  animation: fadeUp 0.9s ease both;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.4vw + 1.3rem, 3.2rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
  color: var(--ink);
}

h1 span {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.2vw + 0.9rem, 1.8rem);
  margin-top: 0.6rem;
}

.lead {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.cta-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  justify-content: center;
  width: 100%;
  animation: fadeUp 1s ease both;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.3s ease;
  flex: 1;
  min-width: 0;
  height: 56px;
  max-width: 100%;
  overflow: hidden;
}

.store-button:hover {
  transform: translateY(-2px);
}

.store-button img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


.legal {
  text-align: center;
  color: rgba(29, 29, 27, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: fadeUp 1.1s ease both;
}

.hero {
  background: url("assets/hero-bg.webp") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.2));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 45vh;
    order: -1;
  }

  .hero-inner {
    display: flex;
    padding: 2.5rem 8vw;
  }

  .logo-wrap {
    display: none;
  }

  .logo--hero {
    filter: brightness(0) invert(1) drop-shadow(0 12px 28px rgba(0, 0, 0, 0.65))
      drop-shadow(0 0 12px rgba(0, 0, 0, 0.45));
  }

  .content {
    order: 0;
    padding: 3.5rem 8vw 3rem;
  }
}

@media (max-width: 640px) {
  .content {
    gap: 2rem;
    padding: 3rem 7vw 2.5rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-button {
    justify-content: center;
  }
}
