:root {
  --red-deep: #8b1520;
  --red: #be1924;
  --red-bright: #d4212c;
  --ink: #0f1115;
  --ink-soft: #3a4150;
  --paper: #ffffff;
  --mist: #f3f4f6;
  --line: rgba(15, 17, 21, 0.08);
  --shadow: 0 18px 50px rgba(139, 21, 32, 0.18);
  --font: "Satoshi", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(190, 25, 36, 0.08), transparent 60%),
    linear-gradient(180deg, #fafafa 0%, var(--paper) 40%, var(--mist) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--red);
}

address {
  font-style: normal;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  border-radius: 0.4rem;
}

.skip-link:focus {
  top: 1rem;
}

.logo-word span {
  color: var(--red);
  font-weight: 700;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
}

.brand img {
  height: 2rem;
  width: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 20px rgba(15, 17, 21, 0.08);
}

.header-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(15, 17, 21, 0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
}

.hero-visual {
  position: relative;
  min-height: 52vh;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 35%;
  transform: scale(1.04);
  animation: kenburns 18s var(--ease) infinite alternate;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: var(--red-deep);
  box-shadow: var(--shadow);
}

.shape-a {
  width: 58%;
  height: 42%;
  top: -6%;
  right: -8%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 78%);
  animation: slide-in 1s var(--ease) both;
}

.shape-b {
  width: 36%;
  height: 28%;
  top: 28%;
  right: 8%;
  background: var(--red);
  clip-path: polygon(22% 0, 100% 12%, 78% 100%, 0 86%);
  opacity: 0.92;
  animation: slide-in 1.15s 0.12s var(--ease) both;
}

.shape-c {
  width: 24%;
  height: 18%;
  bottom: 10%;
  left: -4%;
  background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
  clip-path: polygon(0 20%, 100% 0, 86% 100%, 0 100%);
  animation: slide-in 1.2s 0.2s var(--ease) both;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5.5rem, 10vh, 7rem) clamp(1.5rem, 5vw, 4.5rem)
    clamp(2.5rem, 6vh, 4rem);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 250, 250, 0.92) 100%);
}

.eyebrow {
  margin: 0 0 1rem;
  max-width: 28rem;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
}

.powered {
  margin: 0.85rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
}

.coming {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.6rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.pulse-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(190, 25, 36, 0.55);
  animation: pulse 1.8s ease-out infinite;
}

.lede {
  margin: 0.9rem 0 0;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.notify {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  max-width: 28rem;
}

.notify input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 0.55rem;
  padding: 0.9rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.notify input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(190, 25, 36, 0.15);
}

.notify button {
  border: 0;
  border-radius: 0.55rem;
  background: var(--red-deep);
  color: var(--paper);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.25rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.notify button:hover {
  background: var(--red);
}

.notify button:active {
  transform: translateY(1px);
}

.notify-status {
  grid-column: 1 / -1;
  min-height: 1.25rem;
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.notify-status.is-success {
  color: #1f6b3a;
}

.notify-status.is-error {
  color: var(--red);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 70vh;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.contact-inner {
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.contact-intro h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.contact-intro p {
  margin: 0.65rem 0 0;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  max-width: 34rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  font-size: 1.02rem;
  line-height: 1.45;
}

.icon {
  width: 2.1rem;
  height: 2.1rem;
  color: var(--red);
  display: grid;
  place-items: center;
}

.icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.contact-panel {
  position: relative;
  background: var(--red-deep);
  overflow: hidden;
  min-height: 28rem;
}

.contact-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.88;
}

.panel-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem 1.75rem 2.25rem;
  background: linear-gradient(180deg, transparent, rgba(139, 21, 32, 0.92) 45%);
  color: var(--paper);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-transform: uppercase;
}

.panel-caption p {
  margin: 0;
}

/* Footer */
.site-footer {
  padding: 1.4rem clamp(1.25rem, 4vw, 3rem) 1.75rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.85s var(--ease) forwards;
}

.reveal-delay-1 { animation-delay: 0.12s; }
.reveal-delay-2 { animation-delay: 0.22s; }
.reveal-delay-3 { animation-delay: 0.34s; }
.reveal-delay-4 { animation-delay: 0.46s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes kenburns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(190, 25, 36, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(190, 25, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(190, 25, 36, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .shape,
  .hero-photo,
  .pulse-dot {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-photo {
    transform: none;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .header-badge {
    color: var(--paper);
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    min-height: 22rem;
  }
}

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

  .site-header {
    padding-top: 1rem;
  }

  .brand img {
    height: 1.75rem;
  }
}
