/* ============================================
   VALUMO DIGITAL — Contact Page Styles
   ============================================ */

/* Light page body */
.page-light {
  background: #fafaf8;
  color: #1a1a1a;
}

.page-light .nav {
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: transparent;
  height: 88px;
}

.page-light .nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: transparent;
}

.page-light .nav-logo {
  color: #f5f5f0;
}

.page-light .nav-logo-img {
  width: 180px;
  height: auto;
  background: none;
  padding: 0;
}

.page-light .nav-links a {
  color: #888;
}

.page-light .nav-links a:hover,
.page-light .nav-links a.nav-active {
  color: #f5f5f0;
}

.page-light .nav-burger span {
  background: #f5f5f0;
}

.page-light .nav-mobile-menu {
  background: #111;
  border-top-color: rgba(245,245,240,0.1);
}

/* --- INTRO SECTION (dark) --- */
.contact-intro-section {
  background: #111;
  padding: calc(88px + 72px) 0 96px;
}

.contact-intro-block {
  max-width: 680px;
}

.contact-intro-section .section-label {
  color: #666;
  margin-bottom: 20px;
}

.contact-headline {
  font-family: var(--font-main);
  font-size: var(--size-h1);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #f5f5f0;
  margin-bottom: 24px;
}

.contact-saate {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: #f5f5f0;
  max-width: 560px;
}

/* --- PERSON SECTION (light) --- */
.contact-person-section {
  background: #fafaf8;
  padding: 96px 0;
}

/* --- SPLIT LAYOUT --- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* --- PHOTO --- */
.contact-photo-wrap {
  position: relative;
}

.contact-photo {
  width: 100%;
  max-width: 420px;
  display: block;
  border-radius: 6px;
 }

/* --- CONTACT INFO --- */
.contact-info-wrap {
  padding-top: 8px;
}

.contact-person-name {
  font-family: var(--font-main);
  font-size: var(--size-h2);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.contact-person-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 48px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 0;
  border-top: none;
  text-decoration: none;
  transition: padding-left 0.2s;
  color: inherit;
}

.contact-link:last-child {
  border-bottom: none;
}

a.contact-link:hover {
  padding-left: 12px;
}

.contact-link-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.contact-link-value {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
}

/* --- MAP SECTION --- */
.map-section {
  background: #111;
  color: #f5f5f0;
  padding: var(--section-pad) 0;
}

.map-section .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.section-label--light {
  color: #666;
}

.map-headline {
  font-family: var(--font-main);
  font-size: var(--size-h1);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #f5f5f0;
  margin-bottom: 20px;
  margin-top: 16px;
}

.map-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: #f5f5f0;
  font-weight: 400;
  max-width: 320px;
}

/* --- MAP SVG --- */
.map-svg {
  width: 100%;
  max-width: 520px;
  display: block;
}

.map-land {
  fill: rgba(245,245,240,0.08);
  stroke: rgba(245,245,240,0.2);
  stroke-width: 0.5;
}

.map-land--scan {
  fill: rgba(245,245,240,0.12);
}

.map-finland {
  fill: rgba(245,245,240,0.85);
  stroke: rgba(245,245,240,0.4);
  stroke-width: 0.5;
}

.map-dot {
  fill: #111;
}

.map-dot-pulse {
  fill: rgba(245,245,240,0.12);
  animation: mapPulse 2.5s ease-in-out infinite;
}

@keyframes mapPulse {
  0%, 100% { r: 12; opacity: 0.4; }
  50% { r: 20; opacity: 0.1; }
}

.map-label {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: rgba(245,245,240,0.7);
  letter-spacing: 0.08em;
}

.map-line {
  stroke: rgba(245,245,240,0.12);
  stroke-width: 0.75;
  stroke-dasharray: 3 4;
}

.map-dest {
  fill: rgba(245,245,240,0.4);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-photo {
    max-width: 320px;
    margin: 0 auto;
  }

  .contact-info-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .map-section .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .map-sub {
    max-width: 100%;
  }
}
