* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal: #1f6f6f;
  --cyan: #3aa8c1;
  --green: #8dc63f;
  --bg: #fbfcfa;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: #2c4a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wave {
  position: fixed;
  left: -10%;
  width: 120%;
  height: 320px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
  border-radius: 50%;
}

.wave-1 {
  top: 6%;
  border: 6px solid var(--cyan);
  border-bottom-color: transparent;
  border-left-color: transparent;
  transform: rotate(-8deg);
  animation: drift 12s ease-in-out infinite;
}

.wave-2 {
  bottom: 4%;
  border: 6px solid var(--green);
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(6deg);
  animation: drift 14s ease-in-out infinite reverse;
}

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(12px) rotate(-6deg); }
}

.container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 32px;
  max-width: 600px;
}

.logo-wrap {
  margin-bottom: 26px;
  animation: floaty 5s ease-in-out infinite;
}

.logo {
  max-width: 300px;
  width: 78%;
  filter: drop-shadow(0 4px 18px rgba(31,111,111,0.15));
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  letter-spacing: 0.03em;
  color: var(--teal);
}

.subline {
  margin-top: 10px;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #6b8a8a;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px auto;
  width: 200px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.divider::after {
  background: linear-gradient(90deg, var(--green), transparent);
}

.divider span {
  width: 8px;
  height: 8px;
  margin: 0 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  display: inline-block;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 10px 24px;
  border: 1px solid rgba(31,111,111,0.2);
  border-radius: 999px;
  background: rgba(58,168,193,0.05);
  transition: all 0.25s ease;
  min-width: 230px;
  justify-content: center;
}

.contact-item:hover {
  border-color: var(--green);
  background: rgba(141,198,63,0.1);
  box-shadow: 0 4px 16px rgba(31,111,111,0.12);
  transform: translateY(-2px);
}

.icon {
  width: 17px;
  height: 17px;
  fill: var(--cyan);
  flex-shrink: 0;
}

.footer {
  position: fixed;
  bottom: 18px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #a3b8b8;
}

@media (max-width: 480px) {
  .contact-item { min-width: unset; width: 100%; }
}
