/* =========================================================
   CONTACT INFO - WIDGET CSS
   ========================================================= */

.contact__info {
	--bg-deep: #070f24;
	--text: #f5efe4;
	--text-dim: #a3adc8;
	--text-mute: #6b7592;
	--accent: #d4a574;
	--line: rgba(245, 239, 228, 0.10);
	--line-strong: rgba(245, 239, 228, 0.18);
  
	width: 100%;
	border-top: 1px solid var(--line);
	color: var(--text);
	font-family: "Manrope", sans-serif;
	box-sizing: border-box;
  }
  
  .contact__info,
  .contact__info * {
	box-sizing: border-box;
  }
  
  .contact__row {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 24px;
	padding: 24px 0;
	border-bottom: 1px solid var(--line);
	align-items: start;
  }
  
  .contact__row .lbl {
	font-family: "Manrope", sans-serif;
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
	line-height: 1.5;
  }
  
  .contact__row .val {
	font-family: "Cormorant Garamond", serif;
	font-size: 24px;
	font-weight: 400;
	color: var(--text);
	line-height: 1.3;
  }
  
  .contact__row .val em {
	font-style: italic;
	color: var(--accent);
  }
  
  .contact__row a.val {
	text-decoration: none;
	transition: color 0.3s ease;
  }
  
  .contact__row a.val:hover {
	color: var(--accent);
  }
  
  
  /* ================================
	 SOCIAL ICONS
	 ================================ */
  
  .social-icons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
  }
  
  .social-icon {
	width: 42px;
	height: 42px;
	border: 1px solid var(--line-strong);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text);
	background: transparent;
	text-decoration: none;
	transition:
	  background-color 0.3s ease,
	  color 0.3s ease,
	  border-color 0.3s ease,
	  transform 0.3s ease;
  }
  
  .social-icon svg {
	width: 20px;
	height: 20px;
	display: block;
	flex-shrink: 0;
	fill: currentColor;
  }
  
  .social-icon:hover {
	background: var(--accent);
	color: var(--bg-deep);
	border-color: var(--accent);
	transform: translateY(-2px);
  }
  
  
  /* ================================
	 MOBILE
	 ================================ */
  
  @media (max-width: 560px) {
	.contact__row {
	  grid-template-columns: 1fr;
	  gap: 8px;
	  padding: 22px 0;
	}
  
	.contact__row .val {
	  font-size: 22px;
	}
  
	.social-icons {
	  gap: 10px;
	}
  
	.social-icon {
	  width: 40px;
	  height: 40px;
	}
  
	.social-icon svg {
	  width: 19px;
	  height: 19px;
	}
  }
