@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

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

body {
  background-color: #1a1410;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(139, 119, 75, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(180, 140, 80, 0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='60' height='60' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  color: #bfa87a;
  font-family: 'Cormorant Garamond', Georgia, serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
}

.container {
  max-width: 680px;
  width: 90%;
  padding: 64px 40px;
  position: relative;
}

.container::before,
.container::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(191, 168, 122, 0.15) 15%,
    rgba(191, 168, 122, 0.5) 50%,
    rgba(191, 168, 122, 0.15) 85%,
    transparent 100%
  );
}
.container::before { top: 0; }
.container::after { bottom: 0; }

.ornament {
  text-align: center;
  color: #8b774b;
  font-size: 1.6em;
  letter-spacing: 0.3em;
  margin-bottom: 28px;
  opacity: 0.7;
}

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.8em;
  font-weight: 400;
  color: #c9a96e;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.tagline {
  text-align: center;
  font-style: italic;
  color: #8b774b;
  font-size: 1.25em;
  letter-spacing: 0.05em;
  margin-bottom: 52px;
}

.divider {
  text-align: center;
  margin: 36px 0;
  color: #8b774b;
  font-size: 1em;
  letter-spacing: 0.5em;
  opacity: 0.5;
}

.content {
  font-size: 1.3em;
  color: #b89a68;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.content p {
  margin-bottom: 18px;
}

.content em {
  color: #c9a96e;
  font-style: italic;
}

.coming-soon {
  display: inline-block;
  margin-top: 44px;
  padding: 16px 44px;
  border: 1px solid #8b774b;
  color: #a08250;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  cursor: default;
}

.coming-soon:hover {
  border-color: #c9a96e;
  color: #c9a96e;
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.1);
}

.footer {
  margin-top: 60px;
  text-align: center;
  font-size: 0.95em;
  color: #6b5b3e;
  letter-spacing: 0.04em;
}

.corner-tl, .corner-br {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(139, 119, 75, 0.35);
  border-style: solid;
}
.corner-tl {
  top: 12px; left: 12px;
  border-width: 1px 0 0 1px;
}
.corner-br {
  bottom: 12px; right: 12px;
  border-width: 0 1px 1px 0;
}
