/* Author: Szymon Kolano (https://github.com/skolano) */

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Figtree", system-ui, sans-serif;
  color: #fff;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: #f0c893;
}

.bg-image {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) saturate(0.75) brightness(0.68);
  transform: scale(1.05);
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, rgba(23, 86, 85, 0.72), rgba(14, 59, 60, 0.78));
}

.content {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 40px;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.logo-badge {
  width: 84px;
  height: 90px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0c893;
}

h1 {
  font-family: "Lora", serif;
  font-size: 46px;
  font-weight: 600;
  margin: 0;
}

.lead {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.divider {
  width: 100%;
  max-width: 760px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 6px 0;
}

.contact-row {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.88);
}

.fineprint {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 640px) {
  h1 {
    font-size: 34px;
  }

  .contact-row {
    gap: 20px;
  }
}
