* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #f7f3ed;
  color: #171717;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

.num,
.step-number,
footer div {
  font-family: Arial, sans-serif;
  font-variant-numeric: tabular-nums;
}

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

.entry-topbar {
  align-items: center;
  background: rgba(247, 243, 237, 0.94);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  display: flex;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 clamp(20px, 4vw, 72px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
}

.brand img {
  height: 46px;
  width: auto;
}

.entry-tabs {
  background: #eee5dc;
  border: 1px solid #d9ccbf;
  border-radius: 8px;
  display: flex;
  gap: 4px;
  padding: 4px;
}

.entry-tabs a {
  border-radius: 6px;
  color: #28231f;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
}

.entry-tabs a.active {
  background: #171717;
  color: white;
}

.entry-layout {
  display: grid;
  flex: 1;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 54px clamp(22px, 5vw, 88px);
  width: 100%;
}

.welcome-panel {
  background-image: linear-gradient(90deg, rgba(23, 23, 23, 0.96), rgba(23, 23, 23, 0.45)), url("registerbackground.jpeg");
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 620px;
  padding: clamp(30px, 4vw, 56px);
}

.eyebrow {
  color: #5be0c4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
  max-width: 760px;
}

.lead {
  color: #f1e7dd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.55;
  margin-top: 24px;
  max-width: 620px;
}

.table-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.table-strip div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
}

.table-strip strong {
  color: #5be0c4;
  display: block;
  font-size: 13px;
  margin-bottom: 28px;
}

.table-strip span {
  display: block;
  font-size: 18px;
  font-weight: 800;
}

.guest-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.guest-links a {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 14px;
}

.guest-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.register-card {
  background: #fffaf4;
  border: 1px solid #dfd2c4;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(38, 28, 20, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-media {
  background-image: url("bg.webp");
  background-position: center;
  background-size: cover;
  min-height: 210px;
}

.card-body {
  padding: 30px;
}

.form-label {
  color: #0f8f80;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

h2 {
  font-size: 34px;
  margin-bottom: 22px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  color: #312b25;
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

input {
  background: white;
  border: 1px solid #d6cabe;
  border-radius: 8px;
  font-size: 15px;
  min-height: 48px;
  outline: none;
  padding: 0 14px;
  width: 100%;
}

input:focus {
  border-color: #0f8f80;
  box-shadow: 0 0 0 3px rgba(15, 143, 128, 0.12);
}

button {
  background: #0f8f80;
  border: 0;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  min-height: 48px;
  text-transform: uppercase;
}

button:hover {
  background: #0b756a;
}

.staff-entry {
  border-top: 1px solid #e3d7cb;
  margin-top: 22px;
  padding-top: 20px;
  text-align: center;
}

.staff-entry p {
  color: #665c53;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  margin-bottom: 10px;
}

.staff-entry a {
  color: #8b2b2b;
  font-size: 14px;
  font-weight: 900;
}

footer {
  background: #171717;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.18;
  padding: 26px 20px;
  text-align: center;
}

@media (max-width: 900px) {
  .entry-layout {
    grid-template-columns: 1fr;
  }

  .welcome-panel {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .entry-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .entry-tabs {
    width: 100%;
  }

  .entry-tabs a {
    flex: 1;
    text-align: center;
  }

  .entry-layout {
    padding: 28px 18px;
  }

  .table-strip {
    grid-template-columns: 1fr;
  }
}
