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

html, body {
  height: 100%;
  font-family: 'EB Garamond', 'Times New Roman', serif;
  color: #e8e2d0;
  overflow: hidden;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(191, 161, 90, 0.08), transparent 60%),
    linear-gradient(180deg, #0a0f1c 0%, #0d1526 50%, #0a0f1c 100%);
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
}

.ornament {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #bfa15a, transparent);
  margin: 0 auto 1.6rem;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.2s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeInDown 1.1s ease forwards 0.1s;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: #bfa15a;
}

.pan {
  animation: sway 3.2s ease-in-out infinite;
  transform-origin: 50px 24px;
}

.pan-right {
  animation-delay: 0.05s;
}

@keyframes sway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(4deg); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #bfa15a;
  margin-bottom: 0.6rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.4s;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  letter-spacing: 3px;
  margin-bottom: 2.6rem;
  color: #f3ecd8;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.6s;
}

h1 .dots span {
  animation: blink 1.6s infinite;
  color: #bfa15a;
}

h1 .dots span:nth-child(2) { animation-delay: 0.3s; }
h1 .dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes blink {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 1; }
}

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

.card {
  background: rgba(191, 161, 90, 0.04);
  border: 1px solid rgba(191, 161, 90, 0.35);
  padding: 2.2rem 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.1s;
  position: relative;
}

.card::before,
.card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid #bfa15a;
}

.card::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.card::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #bfa15a;
  margin-bottom: 1.3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1.05rem;
}

.contact-info a {
  color: #e8e2d0;
  text-decoration: none;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-info a:hover {
  color: #bfa15a;
  letter-spacing: 0.5px;
}

.contact-info .label {
  color: #7d7666;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

footer {
  position: absolute;
  bottom: 24px;
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: rgba(232, 226, 208, 0.35);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.4s;
}

.particle {
  position: absolute;
  bottom: -10px;
  background: rgba(191, 161, 90, 0.35);
  border-radius: 50%;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 0.6; }
  100% { transform: translateY(-110vh); opacity: 0; }
}
