:root {
  --ink: #14181c;
  --ink-soft: #3d454c;
  --ink-faint: #6b737a;
  --paper: #f2f0ec;
  --paper-2: #e6e2db;
  --brand-red: #b10406;
  --brand-deep: #7a0305;
  --line: rgba(20, 24, 28, 0.12);
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(177, 4, 6, 0.14), transparent 55%),
    linear-gradient(165deg, #f7f5f1 0%, var(--paper) 42%, var(--paper-2) 100%);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) 1.5rem 2rem;
  max-width: 40rem;
  margin: 0 auto;
  animation: rise 0.85s ease-out both;
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
  animation: fade 1s ease-out 0.15s both;
}

.logo {
  display: block;
  margin: 0 0 1.75rem;
  max-width: min(100%, 28rem);
  animation: fade 1s ease-out 0.25s both;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(122, 3, 5, 0.18));
}

h1 {
  margin: 0 0 0.85rem;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 9vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--ink);
  animation: fade 1s ease-out 0.35s both;
}

.lead {
  margin: 0 0 2rem;
  max-width: 28rem;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.55;
  color: var(--ink-soft);
  animation: fade 1s ease-out 0.45s both;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
  animation: fade 1s ease-out 0.55s both;
}

.cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta a:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 3px;
}

.phone {
  color: #fff;
  background: linear-gradient(180deg, var(--brand-red), var(--brand-deep));
  box-shadow: 0 10px 28px -12px rgba(122, 3, 5, 0.65);
}

.phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -12px rgba(122, 3, 5, 0.75);
}

.mail {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.mail:hover {
  transform: translateY(-1px);
  background: #fff;
}

.en {
  margin: 1.75rem 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  animation: fade 1s ease-out 0.65s both;
}

footer {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.5rem 1.75rem;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--ink-faint);
}

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

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .eyebrow,
  .logo,
  h1,
  .lead,
  .cta,
  .en {
    animation: none;
  }
  .cta a {
    transition: none;
  }
}
