/* ================================================================
   Contact section — cream bg, 2-col: info left, photo right
   ================================================================ */

.section-contact {
	padding: 40px 0;
	background: rgb(241, 239, 235);
	scroll-margin-top: 70px;
}

@media (min-width: 768px) {
	.section-contact {
		padding: 80px 0;
	}
}

.section-contact__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
}

@media (min-width: 640px) {
	.section-contact__inner {
		padding: 0 24px;
	}
}

@media (min-width: 1024px) {
	.section-contact__inner {
		padding: 0 32px;
	}
}

@media (min-width: 768px) {
	.section-contact__inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 48px;
		align-items: start;
	}
}

/* ── Left content column ── */

.section-contact__content {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* ── Heading ── */

.section-contact__heading {
	margin-bottom: 0;
}

.section-contact__title {
	font-family: var(--font-display);
	font-size: clamp(36px, 5vw, 50px);
	letter-spacing: 0.05em;
	line-height: 1;
	color: #000;
	margin: 0 0 16px;
}

.section-contact__subtitle {
	font-family: var(--font-body);
	font-weight: var(--fw-regular);
	font-size: clamp(20px, 3vw, 30px);
	line-height: 1.3;
	color: #f7bd49;
	margin: 0;
}

/* ── Content blocks ── */

.section-contact__block {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.section-contact__block-label {
	font-family: var(--font-display);
	font-size: 20px;
	letter-spacing: 0.05em;
	color: #000;
	margin: 0;
}

/* ── Email link ── */

.section-contact__email {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: var(--fw-regular);
	font-size: clamp(15px, 1.8vw, 18px);
	color: #f7bd49;
	text-decoration: none;
	transition: color 0.2s ease;
}

.section-contact__email:hover {
	color: #e6a020;
	text-decoration: none;
}

.section-contact__mail-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* ── Business inquiry button ── */

.section-contact__biz-btn {
	display: inline-block;
	background: #000;
	color: #fff;
	font-family: var(--font-display);
	font-size: 20px;
	letter-spacing: 0.05em;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	align-self: flex-start;
	transition: background 0.2s ease;
}

.section-contact__biz-btn:hover {
	background: #1f2937;
	text-decoration: none;
	color: #fff;
}

/* ── Social icons row ── */

.section-contact__socials {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.section-contact__social-link {
	display: inline-block;
	transition: opacity 0.2s ease;
}

.section-contact__social-link:hover {
	opacity: 0.75;
}

.section-contact__social-icon {
	width: 48px;
	height: 48px;
	display: block;
}

/* ── Right photo column ── */

.section-contact__photo-col {
	margin-top: 32px;
}

@media (min-width: 768px) {
	.section-contact__photo-col {
		margin-top: 0;
	}
}

.section-contact__photo-wrap {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.section-contact__photo {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* ================================================================
   Site footer — black bg, copyright + legal links
   ================================================================ */

.site-footer {
	background: #000;
	padding: 32px 0;
}

.site-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

@media (min-width: 768px) {
	.site-footer__inner {
		flex-direction: row;
		justify-content: space-between;
		padding: 0 32px;
	}
}

.site-footer__copyright {
	font-family: var(--font-body);
	font-size: 14px;
	color: #9ca3af;
}

.site-footer__copy-desktop {
	display: none;
}

.site-footer__copy-mobile {
	display: block;
}

@media (min-width: 768px) {
	.site-footer__copy-desktop {
		display: block;
	}

	.site-footer__copy-mobile {
		display: none;
	}
}

.site-footer__links {
	display: flex;
	gap: 24px;
}

.site-footer__link {
	font-family: var(--font-body);
	font-size: 14px;
	color: #9ca3af;
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__link:hover {
	color: #fff;
	text-decoration: none;
}
