/* ═══════════════════════════════════════════════════════════
   POMADE & TONIC — Coming Soon Page Styles
═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

:root {
  --ink:#0a0806; --dark:#141108; --paper:#f5ecd7; --paper-dim:#d9cfb8;
  --gold:#c49a3a; --gold-lt:#e0b852; --gold-dk:#7a5f20; --red:#9c2222;
  --oswald:'Oswald',sans-serif; --display:'Abril Fatface',Georgia,serif;
  --body:'Cormorant Garamond',Georgia,serif;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex; flex-direction: column;
  position: relative;
}

/* Paper grain texture */
body::before {
  content:''; position: fixed; inset: 0;
  pointer-events: none; z-index: 1; opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.6 0 0 0 0 0.2 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Radial glow background */
body::after {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(196,154,58,0.12), transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(156,34,34,0.08), transparent 70%),
    linear-gradient(180deg, var(--ink) 0%, var(--dark) 100%);
}

a { color: inherit; text-decoration: none; }
svg { display: block; }

/* Main content area */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative;
  z-index: 2;
}

.wrap {
  max-width: 720px;
  width: 100%;
  text-align: center;
  position: relative;
}

/* Decorative outer corners */
.corner {
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  z-index: 1;
}
.corner.tl { top: -20px; left: -20px; border-right: none; border-bottom: none; }
.corner.tr { top: -20px; right: -20px; border-left: none; border-bottom: none; }
.corner.bl { bottom: -20px; left: -20px; border-right: none; border-top: none; }
.corner.br { bottom: -20px; right: -20px; border-left: none; border-top: none; }

/* The crest emblem */
.emblem {
  margin: 0 auto 2.5rem;
  width: 220px;
  height: 220px;
  position: relative;
  animation: floatIn 1s ease-out both;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.emblem svg { width: 100%; height: 100%; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5)); }

/* Slow rotating ring around emblem */
@keyframes slowSpin { to { transform: rotate(360deg); } }
.emblem-ring {
  position: absolute; inset: -12px;
  border: 1px dashed var(--gold-dk);
  border-radius: 50%;
  animation: slowSpin 60s linear infinite;
  opacity: 0.5;
}

/* Eyebrow */
.eyebrow {
  font-family: var(--oswald); font-weight: 300;
  font-size: 0.75rem; letter-spacing: 0.5em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-flex; align-items: center; gap: 1rem;
  animation: fadeUp 0.9s 0.2s ease-out both;
}
.eyebrow::before, .eyebrow::after {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}

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

/* Headline */
h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.9s 0.35s ease-out both;
}
h1 .ital {
  font-style: italic; color: var(--gold);
  display: block;
}

/* Subhead */
.sub {
  font-family: var(--body);
  font-size: 1.2rem;
  color: var(--paper-dim);
  font-style: italic;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.9s 0.5s ease-out both;
}

/* Divider ornament */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; margin: 2rem auto;
  color: var(--gold);
  animation: fadeUp 0.9s 0.4s ease-out both;
}
.divider::before, .divider::after {
  content: ''; width: 70px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.divider svg { width: 16px; height: 16px; }

/* Card with info */
.card {
  background: rgba(20, 17, 8, 0.6);
  border: 1px solid rgba(196, 154, 58, 0.25);
  padding: 2.5rem 2rem;
  margin: 0 auto 2rem;
  max-width: 560px;
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeUp 0.9s 0.65s ease-out both;
}
.card::before, .card::after {
  content: ''; position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
}
.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-label {
  font-family: var(--oswald); font-weight: 400;
  font-size: 0.7rem; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 1rem;
}
.card-msg {
  font-size: 1.05rem;
  color: var(--paper-dim);
  margin-bottom: 1.75rem;
  font-style: italic;
}

/* Actions */
.actions {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--oswald); font-weight: 500;
  font-size: 0.82rem; letter-spacing: 0.25em;
  padding: 0.95rem 1.8rem;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline { border-color: var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn svg { width: 14px; height: 14px; }

/* Info grid */
.info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 560px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(196,154,58,0.15);
  animation: fadeUp 0.9s 0.8s ease-out both;
}
.info-block { text-align: center; }
.info-head {
  font-family: var(--oswald); font-weight: 500;
  font-size: 0.7rem; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.info-body {
  font-size: 0.95rem;
  color: var(--paper-dim);
  line-height: 1.5;
}
.info-body a { color: var(--paper); transition: color 0.2s; }
.info-body a:hover { color: var(--gold); }

/* Social row */
.social {
  display: flex; gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
  animation: fadeUp 0.9s 0.95s ease-out both;
}
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-dk);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.social-btn svg { width: 16px; height: 16px; }

/* Bottom signature */
.signature {
  text-align: center;
  padding: 2rem 2rem 2.5rem;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s 1.1s ease-out both;
}
.sig-brand {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.sig-tag {
  font-family: var(--oswald); font-weight: 300;
  font-size: 0.6rem; letter-spacing: 0.35em;
  color: var(--paper-dim); text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 600px) {
  main { padding: 2rem 1.25rem; }
  .emblem { width: 170px; height: 170px; margin-bottom: 1.75rem; }
  .card { padding: 2rem 1.5rem; }
  .info { grid-template-columns: 1fr; gap: 1.5rem; }
  .corner { display: none; }
  .actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}
