:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --ink-soft: #34302c;
  --gray: #706b64;
  --light-gray: #e5e5e5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--white);
  color: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 760px;
  text-align: center;
  padding: 64px 24px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.9s ease both;
}

.logo {
  width: clamp(128px, 18vw, 170px);
  margin-bottom: 40px;
  filter: drop-shadow(0 18px 30px rgba(10, 10, 10, 0.12));
}

.eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.title {
  font-size: clamp(3rem, 12vw, 7.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.subtitle {
  color: var(--gray);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.cta {
  margin-top: 36px;
  padding-top: 30px;
  width: min(100%, 620px);
  border-top: 1px solid rgba(10, 10, 10, 0.16);
}

.footer {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  color: var(--gray);
  padding: 28px 16px;
  text-align: center;
  width: 100%;
}

.footer a {
  color: var(--black);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 22px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 24px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.contact-details {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.separator {
  color: var(--light-gray);
}

@media (max-width: 560px) {
  .container {
    padding-top: 52px;
  }

  .logo {
    margin-bottom: 32px;
  }

  .contact-details {
    flex-direction: column;
  }

  .separator {
    display: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

