*, *::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);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

/* Animated gradient orbs */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  will-change: transform, opacity;
  animation-timing-function: ease-in-out;
}

.bg-orb-1 {
  width: 90vw;
  height: 80vh;
  top: -25vh;
  left: -20vw;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(208, 16, 42, 0.22) 60%, rgba(208, 16, 42, 0.65) 100%);
  animation: orbDrift1 10s ease-in-out infinite alternate;
}

.bg-orb-2 {
  width: 85vw;
  height: 80vh;
  bottom: -25vh;
  right: -15vw;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(122, 31, 162, 0.25) 60%, rgba(122, 31, 162, 0.68) 100%);
  animation: orbDrift2 13s ease-in-out infinite alternate;
}

.bg-orb-3 {
  width: 70vw;
  height: 70vh;
  top: 15vh;
  left: 15vw;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(210, 90, 50, 0.18) 60%, rgba(210, 90, 50, 0.55) 100%);
  animation: orbDrift3 8s ease-in-out infinite alternate;
}

/* Bright white vignette locked to center viewport */
.bg-center {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 50%,
    rgba(255, 252, 250, 1.0) 0%,
    rgba(255, 248, 244, 0.85) 30%,
    rgba(253, 245, 240, 0.4) 60%,
    transparent 100%);
}

@keyframes orbDrift1 {
  0%   { transform: translate(0, 0) scale(1);           opacity: 0.75; }
  20%  { transform: translate(18vw, 15vh) scale(1.2);   opacity: 1; }
  40%  { transform: translate(8vw, 30vh) scale(0.88);   opacity: 0.82; }
  60%  { transform: translate(25vw, 18vh) scale(1.28);  opacity: 1; }
  80%  { transform: translate(12vw, 35vh) scale(0.85);  opacity: 0.78; }
  100% { transform: translate(28vw, 12vh) scale(1.18);  opacity: 0.95; }
}

@keyframes orbDrift2 {
  0%   { transform: translate(0, 0) scale(1);             opacity: 0.82; }
  25%  { transform: translate(-20vw, -15vh) scale(1.25);  opacity: 1; }
  50%  { transform: translate(-10vw, -30vh) scale(0.82);  opacity: 0.78; }
  75%  { transform: translate(-26vw, -18vh) scale(1.30);  opacity: 1; }
  100% { transform: translate(-15vw, -32vh) scale(0.88);  opacity: 0.88; }
}

@keyframes orbDrift3 {
  0%   { transform: translate(0, 0) scale(1);            opacity: 0.7; }
  30%  { transform: translate(-15vw, 18vh) scale(1.32);  opacity: 0.95; }
  60%  { transform: translate(18vw, -12vh) scale(0.78);  opacity: 0.72; }
  100% { transform: translate(-10vw, 22vh) scale(1.25);  opacity: 0.92; }
}

/* Subtle noise grain overlay — sits above orbs */
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: 1;
}

/* Logo */
.logo-wrap {
  position: relative;
  z-index: 2;
  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: 2;
  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: 2;
}

.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; }
}