:root {
  --color-background: #f5efe6;
  --color-primary: #7b4a2a;
  --color-accent: #ead8c0;
  --color-text: #2a1a12;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(
      circle at top right,
      rgba(239, 213, 180, 0.4),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(219, 190, 158, 0.35),
      transparent 60%
    ),
    var(--color-background);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  width: min(520px, 90vw);
  padding: clamp(2rem, 5vh, 3rem);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 40px 70px -34px rgba(70, 43, 23, 0.4);
  text-align: center;
  backdrop-filter: blur(10px);
  animation: fade-in 900ms ease forwards;
  transform: translateY(12px);
  opacity: 0;
}

.logo {
  display: block;
  margin: 0 auto clamp(1.5rem, 4vh, 2.2rem);
  width: 100%;
  max-width: 240px;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.tagline {
  margin: 0 0 clamp(1.4rem, 3.8vh, 2rem);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

h1 {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-primary);
}

h2 {
  margin: clamp(0.75rem, 2vh, 1rem) 0 clamp(1.5rem, 4vh, 2rem);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.4rem, 3.4vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.social-links {
  display: inline-flex;
  gap: clamp(1rem, 6vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 4vh, 2.1rem);
}

.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px -12px rgba(70, 43, 23, 0.35);
  background: #f4e2c9;
  outline: none;
}

.social-links svg path {
  fill: var(--color-primary);
}

.contact {
  font-style: normal;
  font-size: clamp(1rem, 2.8vw, 1.1rem);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--color-text);
}

.contact a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.contact a:hover,
.contact a:focus-visible {
  text-decoration: underline;
  outline: none;
}

@keyframes fade-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .container {
    border-radius: 24px;
    padding: clamp(1.8rem, 8vw, 2.4rem);
  }

  .logo {
    max-width: 180px;
  }

  .social-links {
    gap: 1.25rem;
  }

  .social-links a {
    width: 52px;
    height: 52px;
  }
}
