:root {
  --page: #050505;
  --panel: #101010;
  --panel-soft: #181818;
  --white: #ffffff;
  --cream: #f4efe5;
  --muted: #aaa59e;
  --line: rgba(255, 255, 255, 0.12);
  --red-dark: #780f1d;
  --red: #b11226;
  --red-bright: #e13b4d;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(177, 18, 38, 0.2), transparent 28rem),
    radial-gradient(circle at 82% 68%, rgba(120, 15, 29, 0.14), transparent 32rem),
    var(--page);
  color: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 0 1px, transparent 1.4px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  opacity: 0.16;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(225, 59, 77, 0.58);
  outline-offset: 4px;
}

.home-hub {
  width: min(100% - 30px, 490px);
  margin: 0 auto;
  padding: 22px 0 38px;
}

.identity-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #090909;
  box-shadow: var(--shadow);
}

.identity-photo-wrap {
  position: relative;
  display: block;
  height: 250px;
  overflow: hidden;
  background: #131313;
}

.identity-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 52%, rgba(9, 9, 9, 0.92) 100%),
    linear-gradient(120deg, rgba(177, 18, 38, 0.08), transparent 48%);
}

.identity-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.identity-copy {
  position: relative;
  z-index: 1;
  margin-top: -22px;
  padding: 0 25px 25px;
  text-align: center;
}

.identity-kicker {
  margin: 0 0 5px;
  color: var(--cream);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.identity-copy h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.authority-line {
  margin: 14px 0 7px;
  color: var(--red-bright);
  font-size: 1.08rem;
  font-weight: 800;
}

.identity-promise {
  max-width: 360px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.offer-links {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.offer-link {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    var(--panel);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.offer-link:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 59, 77, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--panel-soft);
}

.offer-link-primary {
  border-color: rgba(244, 239, 229, 0.34);
  background: linear-gradient(135deg, #f5efe3, #d9c8ab);
  color: #111111;
}

.offer-link-primary:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: linear-gradient(135deg, #fffaf0, #e2cfad);
}

.offer-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(225, 59, 77, 0.2);
  border-radius: 50%;
  background: rgba(177, 18, 38, 0.12);
  color: var(--red-bright);
}

.offer-link-primary .offer-icon {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(120, 15, 29, 0.1);
  color: var(--red-dark);
}

.offer-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-copy {
  min-width: 0;
}

.offer-copy strong,
.offer-copy small {
  display: block;
}

.offer-copy strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.offer-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.offer-link-primary .offer-copy small {
  color: rgba(17, 17, 17, 0.68);
}

.offer-arrow {
  font-size: 1.2rem;
  opacity: 0.64;
  transition: transform 180ms ease;
}

.offer-link:hover .offer-arrow {
  transform: translateX(3px);
}

.book-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(145px, 178px);
  align-items: center;
  gap: 8px;
  overflow: hidden;
  margin-top: 16px;
  min-height: 220px;
  padding: 24px 12px 24px 24px;
  border: 1px solid rgba(225, 59, 77, 0.35);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 10%, rgba(225, 59, 77, 0.2), transparent 11rem),
    linear-gradient(135deg, #171010, #090909 62%);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.book-feature-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.book-feature-label,
.book-feature b {
  position: relative;
  z-index: 1;
  color: var(--red-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.book-feature strong {
  font-size: 1.25rem;
  line-height: 1.22;
}

.book-feature-description {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.book-feature b {
  margin-top: 4px;
  letter-spacing: 0;
}

.book-feature-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 188px;
  max-width: 100%;
  height: auto;
  align-self: end;
  justify-self: end;
  margin: -20px -8px -24px 0;
  filter: drop-shadow(0 18px 16px rgba(0, 0, 0, 0.52));
  transition: transform 220ms ease;
}

.book-feature:hover .book-feature-image {
  transform: translateY(-4px) rotate(0.6deg);
}

.social-section {
  margin-top: 22px;
  text-align: center;
}

.social-section > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-links a {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(225, 59, 77, 0.24);
  border-radius: 15px;
  background: linear-gradient(145deg, var(--red-bright), var(--red-dark));
  box-shadow: 0 12px 28px rgba(177, 18, 38, 0.2);
  transition: transform 180ms ease, filter 180ms ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.social-links svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.home-footer a {
  text-decoration: none;
}

.home-footer a:hover {
  color: var(--white);
}

@media (max-width: 520px) {
  .home-hub {
    width: min(100% - 22px, 490px);
    padding-top: 11px;
  }

  .identity-card {
    border-radius: 20px;
  }

  .identity-photo-wrap {
    height: 230px;
  }

  .identity-copy {
    padding-inline: 20px;
  }

  .identity-kicker {
    font-size: 1.35rem;
  }

  .offer-link {
    grid-template-columns: 39px minmax(0, 1fr) auto;
    min-height: 72px;
    padding: 11px 14px;
  }

  .offer-icon {
    width: 39px;
    height: 39px;
  }

  .offer-copy strong {
    font-size: 0.84rem;
  }

  .offer-copy small {
    font-size: 0.68rem;
  }

  .book-feature {
    grid-template-columns: minmax(0, 1fr) minmax(122px, 145px);
    min-height: 196px;
    padding: 19px 8px 19px 18px;
  }

  .book-feature strong {
    font-size: 1.08rem;
  }

  .book-feature-description {
    font-size: 0.74rem;
  }

  .book-feature-image {
    width: 154px;
    margin: -12px -7px -20px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
