/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design tokens ── */
:root {
  --orange:    #E8651A;
  --orange-lt: #F5884A;
  --orange-dk: #BF4E10;
  --cream:     #FFF8F2;
  --text:      #1A120B;
  --muted:     #7A5C46;
}

/* ── Body ── */
body {
  font-family: 'Roboto', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ── Subtle background glow ── */
body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
  animation: drift 14s ease-in-out infinite alternate;
}
body::before {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -140px; left: -140px;
}
body::after {
  width: 380px; height: 380px;
  background: var(--orange-lt);
  bottom: -100px; right: -80px;
  animation-delay: -7s;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(28px, 18px) scale(1.06); }
}

/* ── Card ── */
.card {
  position: relative;
  text-align: center;
  padding: clamp(1rem, 3vh, 2.5rem) clamp(1rem, 3vw, 2rem);
  max-width: 780px;
  width: 95%;
  animation: fadeUp 0.85s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Coming Soon label ── */
.coming-soon-label {
  display: inline-block;
  margin-bottom: clamp(0.2rem, 1.5vh, 1rem);
  padding: 0;
  background: none;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  animation: fadeUp 0.7s ease both;
}
.cs-coming { color: var(--text); }
.cs-soon   { color: var(--orange); }

/* ── Hero image ── */
.hero-img {
  max-width: 100%;
  max-height: 55vh;
  width: auto;
  object-fit: contain;
  border-radius: 16px;
  display: block;
  margin: 0 auto clamp(0.5rem, 2vh, 1.8rem);
  box-shadow: 0 8px 40px rgba(232, 101, 26, 0.12);
  animation: fadeUp 1s ease both 0.15s;
}

/* ── Brand heading ── */
h1 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.5rem, 6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text);
}
h1 span { 
  color: var(--orange); 
}

@media (max-width: 600px) {
  h1 span {
    display: block;
  }
}

/* ── Tagline ── */
.tagline {
  display: block;
  margin-top: clamp(0.2rem, 1vh, 0.7rem);
  font-size: clamp(0.55rem, 2vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tagline .bull { color: var(--orange); }

/* ── Divider ── */
.divider {
  width: 44px;
  height: clamp(2px, 0.5vh, 3px);
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  border-radius: 2px;
  margin: clamp(0.5rem, 1.5vh, 1.4rem) auto;
}

/* ── Headline text ── */
.headline {
  font-size: clamp(0.8rem, 2.5vw, 0.97rem);
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ── Socials row ── */
.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.2rem, 1vw, 0.6rem);
  margin-top: clamp(0.8rem, 2vh, 1.8rem);
  width: 100%;
}

.social-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.2rem, 1vw, 0.6rem);
  flex-wrap: nowrap;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .socials {
    flex-direction: column;
    gap: 0.6rem;
  }
}

@media (min-width: 601px) {
  .socials {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.15rem, 0.5vw, 0.35rem);
  text-decoration: none;
  color: var(--muted);
  font-size: clamp(0.55rem, 1.8vw, 0.75rem);
  font-weight: 500;
  padding: clamp(0.2rem, 1vh, 0.4rem) clamp(0.3rem, 1.5vw, 0.75rem);
  border: 1.5px solid #e0cfc4;
  border-radius: 999px;
  background: #fff;
  flex-shrink: 1;
  transition: color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social-link:hover {
  color: var(--orange);
  border-color: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(232, 101, 26, 0.12);
}
.social-link svg { 
  width: clamp(10px, 3vw, 15px); 
  height: clamp(10px, 3vw, 15px); 
  flex-shrink: 0; 
}

/* ── Platform-specific pill colors ── */
.social-link.phone          { border-color: #d4e4f7; color: #1a5a96; }
.social-link.phone:hover    { color: #0a84d4; border-color: #0a84d4; box-shadow: 0 4px 14px rgba(10, 132, 212, 0.15); }

.social-link.whatsapp       { border-color: #d4ead4; color: #3a7a3a; }
.social-link.whatsapp:hover { color: #25d366; border-color: #25d366; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.15); }

.social-link.instagram       { border-color: #f5d9e8; color: #c13584; }
.social-link.instagram:hover { color: #e1306c; border-color: #e1306c; box-shadow: 0 4px 14px rgba(225, 48, 108, 0.15); }

.social-link.facebook       { border-color: #d4e0f5; color: #1877f2; }
.social-link.facebook:hover { color: #0a55c4; border-color: #1877f2; box-shadow: 0 4px 14px rgba(24, 119, 242, 0.15); }

/* ── Footer ── */
.footer {
  margin-top: clamp(0.5rem, 2vh, 2rem);
  font-size: clamp(0.5rem, 1.5vw, 0.7rem);
  color: #c4aa98;
  letter-spacing: 0.04em;
}
