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

:root {
  --bg:       #080f10;
  --surface:  #0c1a1a;
  --border:   rgba(45,140,140,.12);
  --text:     #7de0e0;
  --muted:    rgba(125,220,220,.45);
  --accent:   #2d8080;
  --accent2:  #1a4d4d;
  --radius:   4px;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  font-weight: 300;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow-x: hidden;
}

/* ── Canvas particles ── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Grain noise overlay ── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: .6;
  mix-blend-mode: overlay;
}

/* ── Layout ── */
.container {
  position: relative;
  z-index: 2;
  width: min(1100px, 90vw);
  margin: 0 auto;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100dvh;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.logo-img {
  width: clamp(16rem, 52vw, 38rem);
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-filter: invert(1) hue-rotate(180deg) brightness(0.68);
  filter: invert(1) hue-rotate(180deg) brightness(0.68);
  opacity: 0;
}

/* ── Center section ── */
.center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  padding: 4rem 0;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  background: rgba(255,255,255,.02);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}


/* Body text */
.body-text {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  color: var(--muted);
  line-height: 1.8;
  max-width: 42ch;
  opacity: 0;
}

/* Contact block */
.contact-block {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.contact-label {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  color: var(--muted);
  line-height: 1.8;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.contact-list a,
.contact-list a:link,
.contact-list a:visited {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  color: #7de0e0;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .02em;
  opacity: .75;
  transition: opacity .2s ease;
}

.contact-list a:hover,
.contact-list a:active { opacity: 1; color: #7de0e0; color: var(--text); }

/* ── Footer ── */
.footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  opacity: 0;
}

.footer-copy {
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--muted);
}

/* ── Decorative gradient blob ── */
.container::before {
  content: '';
  position: fixed;
  top: -20vh;
  right: -15vw;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,128,128,.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.container::after {
  content: '';
  position: fixed;
  bottom: -10vh;
  left: -10vw;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125,220,220,.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .footer { justify-content: flex-start; }
}
