*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #d0102a;
  --purple: #7a1fa2;
  --mid:    #a3118e;
  --light-bg: #fdf5f0;
  --text:   #2a1520;
  --muted:  #8a6070;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background-color: var(--light-bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 15% 10%, rgba(208, 16, 42, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 90%, rgba(122, 31, 162, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 230, 220, 0.4) 0%, transparent 80%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

/* Subtle noise grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Logo */
.logo-wrap {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.logo-wrap img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  margin: -150px auto 50px;
  mix-blend-mode: multiply;
}

/* Contacts row */
.contacts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.2rem;
  margin-top: 2.8rem;
  animation: fadeUp 0.6s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Separator dot between items */
.contacts .sep {
  color: var(--muted);
  opacity: 0.4;
  font-size: 0.6rem;
  line-height: 1;
  user-select: none;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 0.55rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(208, 16, 42, 0.14);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(163, 17, 142, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(122, 31, 162, 0.10);
}

.contact-link:active {
  transform: translateY(0);
}

/* Icon circles */
.icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-phone { background: linear-gradient(135deg, #fff0f0, #ffe4f0); color: var(--red); }
.icon-fb    { background: linear-gradient(135deg, #f0f0ff, #e4e0ff); color: #3b5998; }
.icon-ig    { background: linear-gradient(135deg, #fff0f8, #ffe8d0); color: var(--mid); }

.icon svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-fb svg, .icon-ig svg {
  fill: currentColor;
  stroke: none;
}

.contact-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

/* Copyright footer */
.footer-note {
  position: fixed;
  bottom: 1.2rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  opacity: 0.55;
  z-index: 1;
}

.footer-note a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-note a:hover {
  opacity: 1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile: hide separator dots so items wrap cleanly */
@media (max-width: 480px) {
  .sep { display: none; }
  .contacts { gap: 0.5rem; }
}