:root {
  color-scheme: dark;
  --ink: #f9f6f0;
  --muted: rgba(249, 246, 240, .72);
  --line: rgba(255, 255, 255, .18);
  --gold: #f2a46f;
  --pink: #cc583d;
  --dark: #100e0d;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  background: var(--dark);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
}

a { color: inherit; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  background: url("assets/hermassi-hero-v3.png") 58% center / cover no-repeat;
  animation: reveal 1.3s ease-out both;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 15, 15, .98) 0%, rgba(9, 15, 15, .89) 34%, rgba(9, 15, 15, .22) 67%, rgba(9, 15, 15, .04) 100%),
    linear-gradient(0deg, rgba(9, 15, 15, .70) 0%, transparent 42%);
}

.topbar,
footer {
  width: min(1400px, calc(100% - 7vw));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar { justify-content: flex-end; padding-block: clamp(1.2rem, 3vw, 2.6rem); }

.social { display: flex; gap: clamp(1rem, 3vw, 2.4rem); }

.social a {
  text-decoration: none;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.social a:hover, .social a:focus-visible { color: var(--ink); }

.content {
  width: min(1400px, calc(100% - 7vw));
  align-self: start;
  margin: 0 auto;
  padding-block: clamp(.5rem, 2vh, 1.5rem) clamp(3rem, 7vh, 6rem);
}

.content > * { max-width: 670px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--gold);
  font-size: clamp(.72rem, 1.2vw, .88rem);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.eyebrow span { width: 42px; height: 1px; background: currentColor; }

.campaign-title {
  position: relative;
  display: flex;
  align-items: end;
  gap: clamp(1.1rem, 2.2vw, 2.2rem);
  max-width: 610px;
}

h1 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(4.7rem, 8.4vw, 8.1rem);
  line-height: .76;
  letter-spacing: -.035em;
  color: rgba(255, 255, 255, .94);
  text-shadow: 0 8px 35px rgba(0, 0, 0, .18);
}

h1 span { display: block; }

.campaign-title > p {
  margin: 0 0 .3rem;
  color: rgba(255, 255, 255, .78);
  max-width: 125px;
  font-size: clamp(.72rem, 1vw, .86rem);
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.55;
  text-transform: uppercase;
}
.campaign-title > p strong { display: block; color: var(--gold); font-size: 1.15em; }

.launch {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin: 1.7rem 0 0;
  color: rgba(255,255,255,.68);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.launch span {
  padding: .48rem .72rem;
  border-radius: .3rem;
  background: var(--gold);
  color: #1c1210;
}

.lead {
  max-width: 560px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  text-wrap: balance;
}


.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  border: 1px solid var(--line);
  padding: .85rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button--primary {
  background: linear-gradient(110deg, #e86f46, var(--pink));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(204, 88, 61, .24);
}
.button--primary:hover { background: linear-gradient(110deg, #f2855f, #dc674d); }
.button--quiet { background: rgba(255, 255, 255, .05); backdrop-filter: blur(10px); }

footer {
  border-top: 1px solid var(--line);
  padding-block: 1.25rem;
  color: rgba(249, 246, 240, .58);
  font-size: .76rem;
  letter-spacing: .03em;
}

footer p { margin: 0; }

@keyframes reveal {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 720px) {
  .hero__image { background-position: 68% center; opacity: .68; }
  .hero__shade {
    background:
      linear-gradient(90deg, rgba(9, 15, 15, .96), rgba(9, 15, 15, .42)),
      linear-gradient(0deg, rgba(9, 15, 15, .88), transparent 60%);
  }
  .topbar, .content, footer { width: min(100% - 2rem, 1400px); }
  .social { gap: 1rem; }
  .social a { font-size: .7rem; }
  .content { padding-block: .75rem 3.5rem; }
  h1 { font-size: clamp(4.5rem, 22vw, 6.8rem); }
  .campaign-title > p { max-width: 92px; font-size: .66rem; }
  .lead { max-width: 34rem; }
  .actions { flex-direction: column; align-items: stretch; max-width: 430px; }
  footer { align-items: flex-start; gap: .6rem; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; }
}
