* {
  box-sizing: border-box;
}

:root {
  --background: #070505;
  --paper: #d8d5cb;
  --ink: #26211d;
  --muted: #aaa29a;
  --line: rgba(255, 255, 255, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", system-ui, sans-serif;
  color: #fff;
  background: var(--background);
}

button,
a {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 56px 24px;
  isolation: isolate;
  background:
    linear-gradient(rgba(7, 5, 5, 0.3), rgba(7, 5, 5, 0.88)),
    radial-gradient(circle at 50% 110%, rgba(115, 35, 28, 0.5), transparent 48%),
    linear-gradient(135deg, #160d0c 0%, #080606 42%, #120807 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 79px,
      rgba(255,255,255,0.018) 80px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 79px,
      rgba(255,255,255,0.014) 80px
    );
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -22%;
  height: 54%;
  z-index: -2;
  transform: perspective(850px) rotateX(67deg);
  transform-origin: bottom;
  background:
    linear-gradient(rgba(73, 22, 18, 0.28), rgba(14, 8, 7, 0.92)),
    repeating-linear-gradient(
      90deg,
      #25120f 0 110px,
      #150b09 110px 220px
    );
  box-shadow: 0 -40px 100px rgba(0, 0, 0, 0.62);
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
}

.ambient-one {
  width: 480px;
  height: 480px;
  top: -240px;
  left: -140px;
  background: rgba(121, 43, 34, 0.2);
}

.ambient-two {
  width: 380px;
  height: 380px;
  right: -100px;
  bottom: -180px;
  background: rgba(169, 62, 45, 0.15);
}

.content {
  width: min(980px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #d9c6bd;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.34em;
}

h1 {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.intro {
  max-width: 610px;
  margin: 18px auto 42px;
  color: var(--muted);
  line-height: 1.7;
}

.business-card {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 1.78 / 1;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 5vw, 48px);
  color: var(--ink);
  text-align: left;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.25), transparent 32%),
    linear-gradient(180deg, #dedbd2, #cbc7bd);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 3px;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.58),
    0 7px 16px rgba(0, 0, 0, 0.42),
    inset 0 0 28px rgba(93, 84, 72, 0.14);
  transform: perspective(1200px) rotateX(2.2deg) rotateY(-2deg) rotateZ(-0.7deg);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.business-card:hover {
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateY(-8px);
  box-shadow:
    0 56px 110px rgba(0, 0, 0, 0.64),
    0 14px 22px rgba(0, 0, 0, 0.35),
    inset 0 0 28px rgba(93, 84, 72, 0.14);
}

.paper-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: multiply;
  background-image:
    repeating-radial-gradient(
      circle at 20% 30%,
      rgba(44, 38, 31, 0.14) 0 0.7px,
      transparent 0.8px 4px
    );
}

.card-top,
.card-bottom,
.identity {
  position: relative;
  z-index: 1;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.phone,
.card-bottom a {
  color: inherit;
  text-decoration: none;
}

.company {
  display: grid;
  text-align: right;
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.12;
}

.company strong {
  font-size: clamp(0.85rem, 2vw, 1.24rem);
}

.company span {
  margin-top: 3px;
  font-size: clamp(0.5rem, 1.35vw, 0.72rem);
  font-weight: 700;
  text-transform: uppercase;
}

.phone {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.76rem, 1.75vw, 1.05rem);
  font-weight: 600;
}

.identity {
  align-self: center;
  text-align: center;
  font-family: "Cinzel", Georgia, serif;
}

.identity h2 {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 2.05rem);
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.identity p {
  margin: 6px 0 0;
  font-size: clamp(0.72rem, 1.8vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
}

.card-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 14px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.5rem, 1.35vw, 0.72rem);
  font-weight: 600;
  text-align: center;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn {
  min-width: 138px;
  padding: 13px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.primary-btn {
  color: #16100e;
  background: #f0e8df;
  text-decoration: none;
  font-weight: 700;
}

.secondary-btn {
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.09);
}

.status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: #b7ada8;
  font-size: 0.86rem;
}

@media (max-width: 620px) {
  .hero {
    padding: 42px 16px;
  }

  .intro {
    margin-bottom: 30px;
  }

  .business-card {
    min-height: 230px;
    aspect-ratio: auto;
    transform: rotateZ(-0.5deg);
  }

  .card-top {
    gap: 12px;
  }

  .card-bottom {
    max-width: 360px;
    align-self: center;
  }
}

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