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

:root {
  --gold: #c9a227;
  --deep-teal: #1a5f5f;
  --cream: #faf8f3;
  --warm-white: #fffef9;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Cormorant Garamond", Georgia, serif;
  background: radial-gradient(
    ellipse at center,
    var(--warm-white) 0%,
    var(--cream) 100%
  );
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow-x: hidden;
}

/* Subtle decorative corner accents */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 120px;
  height: 120px;
  opacity: 0.06;
  pointer-events: none;
}

body::before {
  top: 20px;
  left: 20px;
  border-top: 2px solid var(--deep-teal);
  border-left: 2px solid var(--deep-teal);
}

body::after {
  bottom: 20px;
  right: 20px;
  border-bottom: 2px solid var(--deep-teal);
  border-right: 2px solid var(--deep-teal);
}

main {
  text-align: center;
  max-width: 700px;
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  max-width: 100%;
  width: 500px;
  height: auto;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.tagline {
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: #4a4a4a;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.phone {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--deep-teal);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.phone:hover,
.phone:focus {
  color: var(--gold);
  outline: none;
}

.phone:focus-visible {
  box-shadow: 0 0 0 2px var(--gold);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .logo {
    width: 90%;
  }

  .tagline {
    font-size: 1.15rem;
    padding: 0 1rem;
  }

  .phone {
    font-size: 1.1rem;
  }

  body::before,
  body::after {
    width: 60px;
    height: 60px;
  }
}

