/*
Theme Name: Excellence Coming Soon
Theme URI: https://example.com/
Author: ChatGPT
Description: A premium one-page coming soon landing theme for Excellence Meat Group.
Version: 1.0.1
License: GNU General Public License v2 or later
Text Domain: excellence-coming-soon
*/

:root {
  --emg-black: #161616;
  --emg-charcoal: #242424;
  --emg-red: #9b0f18;
  --emg-red-dark: #6f0910;
  --emg-soft: #f7f4f1;
  --emg-white: #ffffff;
  --emg-muted: #696969;
  --emg-border: rgba(155, 15, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--emg-charcoal);
  background:
    radial-gradient(circle at top left, rgba(155, 15, 24, 0.11), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(22, 22, 22, 0.09), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, #fbf8f6 48%, #f1ece8 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.emg-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 18px;
}

.emg-page::before,
.emg-page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.emg-page::before {
  width: 430px;
  height: 430px;
  background: rgba(155, 15, 24, 0.08);
  top: -180px;
  right: -130px;
}

.emg-page::after {
  width: 310px;
  height: 310px;
  border: 1px solid rgba(155, 15, 24, 0.20);
  bottom: -150px;
  left: -90px;
}

.emg-card {
  position: relative;
  z-index: 1;
  width: min(1060px, 100%);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(22, 22, 22, 0.13);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
}

.emg-logo-panel {
  min-height: 620px;
  padding: 54px 42px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(247, 244, 241, 0.9)),
    repeating-linear-gradient(45deg, rgba(155, 15, 24, 0.04) 0 1px, transparent 1px 14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--emg-border);
}

.emg-logo-wrap {
  width: min(360px, 100%);
  padding: 28px;
  background: var(--emg-white);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(22, 22, 22, 0.12);
  border: 1px solid rgba(155, 15, 24, 0.12);
}

.emg-logo {
  width: 100%;
  height: auto;
  display: block;
}

.emg-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emg-red-dark);
  background: rgba(155, 15, 24, 0.08);
  border: 1px solid rgba(155, 15, 24, 0.16);
}

.emg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emg-red);
  box-shadow: 0 0 0 6px rgba(155, 15, 24, 0.12);
}

.emg-content {
  padding: 64px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.emg-kicker {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--emg-red);
}

.emg-title {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: var(--emg-black);
}

.emg-title span {
  color: var(--emg-red);
}

.emg-description {
  margin: 26px 0 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--emg-muted);
}

.emg-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0 0;
}

.emg-highlight {
  padding: 17px 14px;
  border-radius: 18px;
  background: rgba(247, 244, 241, 0.86);
  border: 1px solid rgba(22, 22, 22, 0.07);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emg-charcoal);
}


.emg-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 36px 0 0;
}

.emg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.emg-button:hover {
  transform: translateY(-2px);
}

.emg-button-primary {
  background: var(--emg-red);
  color: var(--emg-white);
  box-shadow: 0 14px 32px rgba(155, 15, 24, 0.25);
}

.emg-button-secondary {
  border-color: rgba(22, 22, 22, 0.14);
  color: var(--emg-black);
  background: var(--emg-white);
}

.emg-footer-note {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(22, 22, 22, 0.08);
  color: var(--emg-muted);
  font-size: 14px;
}

.emg-footer-note strong {
  color: var(--emg-black);
}

@media (max-width: 900px) {
  .emg-card {
    grid-template-columns: 1fr;
  }

  .emg-logo-panel {
    min-height: auto;
    padding: 42px 24px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--emg-border);
  }

  .emg-logo-wrap {
    width: min(270px, 100%);
    padding: 18px;
  }

  .emg-content {
    padding: 42px 24px 46px;
    text-align: center;
    align-items: center;
  }

  .emg-description {
    font-size: 16px;
  }

  .emg-highlights {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .emg-page {
    padding: 18px 12px;
  }

  .emg-card {
    border-radius: 24px;
  }

  .emg-highlights {
    grid-template-columns: 1fr;
  }


  .emg-actions {
    width: 100%;
  }

  .emg-button {
    width: 100%;
  }
}
