/* ═══════════════════════════════════════
   CONTACT PAGE — Dennis Snellenberg style
═══════════════════════════════════════ */

/* ── Nav: scrolls away naturally (same as about) ── */
.page-nav {
  position: relative;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 44px;
  z-index: 100;
  background: #fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
}
.logo-copy {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 20px;
}
.logo-name {
  overflow: hidden;
  height: 20px;
}
.logo-name-inner {
  transition: transform .5s cubic-bezier(.76, 0, .24, 1);
}
.logo:hover .logo-name-inner {
  transform: translateY(-20px);
}
.logo-name-inner p {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 20px;
  height: 20px;
  margin: 0;
  white-space: nowrap;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 44px;
}
.nav-links a {
  font-size: 14px; color: #1a1a1a;
  text-decoration: none; position: relative; transition: opacity .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #1a1a1a;
  transform: translateX(-50%);
  opacity: 0; transition: opacity .3s;
}
.nav-links a.active::after { opacity: 1; }
.nav-links a:hover { opacity: .4; }

/* ── Contact Header ── */
.contact-header {
  padding: 80px 48px 64px;
}

.ch-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.ch-label, .ch-index {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.ch-title {
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.05;
}

/* Reuse clip-wrap/clip-line from about.css */
.clip-wrap {
  display: block;
  overflow: hidden;
}
.clip-line {
  display: block;
  transform: translateY(110%);
}
.clip-line.vis {
  transform: translateY(0%);
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

/* ── Email Section ── */
.email-section {
  padding: 0 48px 80px;
  text-align: center;
}

.email-link {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -.03em;
  color: #1a1a1a;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: opacity .3s;
}
.email-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 1.5px;
  background: #1a1a1a;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.email-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.email-link:hover { opacity: .6; }

.email-hint {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  color: #8a8a8a;
  letter-spacing: .06em;
}

/* ── Contact Body: Info + Form ── */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 0 48px 120px;
  max-width: 1200px;
}

.cb-info { }

.cb-block {
  margin-bottom: 36px;
}

.cb-title {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 12px;
}

.cb-value {
  font-size: 15px;
  line-height: 1.7;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.avail-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.cb-socials { margin-top: 48px; }

.cb-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cb-links a {
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity .2s;
}
.cb-links a:hover { opacity: .4; }

/* ── Form ── */
.cb-form { }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 32px;
}

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 12px;
}

.form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d8d8d8;
  padding: 12px 0;
  font-size: 16px;
  font-family: 'Hanken Grotesk', sans-serif;
  color: #1a1a1a;
  background: transparent;
  outline: none;
  transition: border-color .3s;
}
.form-input:focus {
  border-color: #1a1a1a;
}
.form-input::placeholder {
  color: #c8c8c8;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .3s, transform .35s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.form-submit:hover {
  background: #3d5af1;
  transform: scale(1.04);
}

.fs-arrow {
  font-size: 18px;
  transition: transform .3s;
}
.form-submit:hover .fs-arrow {
  transform: translateX(4px) translateY(-2px);
}

/* ── Footer Nav ── */
.page-footer-nav {
  border-top: 1px solid #e4e4e4;
}

.pfn-next {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 48px;
  text-decoration: none;
  color: #1a1a1a;
  transition: opacity .3s;
}
.pfn-next:hover { opacity: .4; }

.pfn-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 16px;
}

.pfn-title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -.04em;
}

/* ── Footer ── */
footer {
  display: flex;
  justify-content: space-between;
  padding: 24px 48px;
  border-top: 1px solid #e4e4e4;
  font-size: 11px;
  color: #8a8a8a;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .page-nav { padding: 20px 24px; }
  .contact-header { padding: 48px 24px 40px; }
  .email-section { padding: 0 24px 60px; }
  .contact-body {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px 80px;
  }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .pfn-next { padding: 48px 24px; }
  footer { padding: 20px 24px; flex-direction: column; gap: 8px; }
}
