/* =========================================
   COMING SOON - STANDALONE STYLES
   ========================================= */
:root {
  /* Brand Palette */
  --primary: #1F332A;      /* Deep Forest Green */
  --primary-dark: #14241D; /* Darker Forest */
  --accent: #C98A3E;       /* Warm Gold */
  --accent-light: #E8C18C; /* Soft Gold */
  --cream: #F5EAE0;        /* Off-white */
  --white: #FFFFFF;
  --text-dark: #2A3631;
  --text-light: #F4F8F6;
  
  /* Typography */
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--primary-dark);
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.coming-soon-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background-image: linear-gradient(
      to bottom,
      rgba(20, 36, 29, 0.95) 0%,
      rgba(20, 36, 29, 0.7) 40%,
      rgba(20, 36, 29, 0.4) 100%
    ),
    url('../images/coming-soon-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Header */
.cs-header {
  padding: 2rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cs-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--white);
}

.cs-brand-mark {
  width: 48px;
  height: 48px;
}

.cs-brand-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.cs-brand-text small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Main Content */
.cs-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 5%;
  max-width: 800px;
  margin: 0 auto;
}

.cs-eyebrow {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background-color: rgba(201, 138, 62, 0.15);
  color: var(--accent);
  border: 1px solid rgba(201, 138, 62, 0.3);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.cs-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--white);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.1s both;
}

.cs-title span {
  color: var(--accent);
}

.cs-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--cream);
  max-width: 600px;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s both;
}

/* Contact Block */
.cs-contact-block {
  background: rgba(20, 36, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 3rem;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s both;
}

.cs-contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.cs-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cs-contact-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1rem;
}

.cs-contact-list a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cs-contact-list a:hover {
  color: var(--white);
}

.cs-icon {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

/* Footer */
.cs-footer {
  padding: 2rem 5%;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(244, 248, 246, 0.5);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive */
@media (max-width: 768px) {
  .cs-contact-block {
    padding: 1.5rem;
    width: 100%;
  }
}
