/* =========================================================
   Hooton Wallcovering / Coming Soon Landing Page
   Clean continuous layout
   ========================================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: #2a2a2a;
	background: #ffffff;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0 0 18px;
}

h1,
h2,
h3 {
	margin: 0 0 18px;
	line-height: 1.15;
	color: #222222;
}

h1 {
	font-size: clamp(42px, 6vw, 64px);
}

h2 {
	font-size: clamp(30px, 4vw, 42px);
}

h3 {
	font-size: 18px;
}

.container {
	width: min(100% - 32px, 860px);
	margin: 0 auto;
}

.content-narrow {
	max-width: 700px;
	margin: 0 auto;
}

.eyebrow {
	margin-bottom: 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6b6b6b;
}

.section-heading {
	text-align: center;
	margin-bottom: 28px;
}

/* =========================
   HEADER
   ========================= */

.site-header {
	background: #ffffff;
	border-bottom: 1px solid #e6e6e6;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 0;
}

.site-logo img {
	max-width: 120px;
	max-height: 70px;
	width: auto;
}

.header-contact a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 18px;
	border: 1px solid #9d9d9d;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 700;
	background: #ffffff;
	transition: 0.2s ease;
}

.header-contact a:hover {
	background: #222222;
	border-color: #222222;
	color: #ffffff;
}

/* =========================
   MAIN
   ========================= */

main {
	padding-top: 10px;
}

/* =========================
   SECTION SPACING
   ========================= */

.coming-soon-hero,
.about-section,
.family-section,
.contact-section {
	padding: 56px 0;
	border-bottom: 1px solid #ececec;
}

/* =========================
   HERO
   ========================= */

.coming-soon-hero {
	text-align: center;
}

.hero-content {
	max-width: 720px;
	margin: 0 auto;
}

.hero-content h1 {
	margin-bottom: 20px;
}

.hero-intro {
	max-width: 620px;
	margin: 0 auto 28px;
	font-size: 18px;
	line-height: 1.7;
	color: #4a4a4a;
}

.hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 700;
	transition: 0.2s ease;
}

.button-primary {
	background: #222222;
	border: 1px solid #222222;
	color: #ffffff;
}

.button-primary:hover {
	background: #444444;
	border-color: #444444;
}

.button-secondary {
	background: #ffffff;
	border: 1px solid #cfcfcf;
	color: #222222;
}

.button-secondary:hover {
	border-color: #222222;
	background: #f3f3f3;
}

/* =========================
   ABOUT / FAMILY
   ========================= */

.about-section,
.family-section {
	text-align: center;
}

.about-section p,
.family-section p:not(.eyebrow) {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	color: #4d4d4d;
	font-size: 17px;
}

.about-section p:last-child,
.family-section p:last-child {
	margin-bottom: 0;
}

/* =========================
   CONTACT SECTION
   ========================= */

.contact-section {
	text-align: center;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 40px;
	max-width: 700px;
	margin: 0 auto 26px;
}

.contact-item {
	text-align: center;
}

.contact-item h3 {
	margin-bottom: 8px;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #444444;
}

.contact-item p {
	margin: 0;
	font-size: 16px;
	color: #555555;
}

.contact-item a:hover {
	text-decoration: underline;
}

.hours-block {
	max-width: 700px;
	margin: 0 auto;
	padding-top: 24px;
	border-top: 1px solid #e6e6e6;
	text-align: center;
}

.hours-block h3 {
	margin-bottom: 10px;
	font-size: 20px;
}

.hours-block p {
	margin: 0;
	color: #555555;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
	margin-top: 0;
}

.family-footer {
	background: #2f2f2f;
	color: #ffffff;
	text-align: center;
	padding: 22px 16px;
}

.family-footer p {
	margin-bottom: 10px;
	font-size: 14px;
	color: #dddddd;
}

.family-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.family-links a {
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
}

.family-links a:hover {
	text-decoration: underline;
}

.family-links span {
	color: #8f8f8f;
}

.footer-bottom {
	background: #1f1f1f;
	color: #c9c9c9;
	padding: 16px 0;
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 13px;
}

.footer-bottom p {
	margin: 0;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 768px) {
	.coming-soon-hero,
	.about-section,
	.family-section,
	.contact-section {
		padding: 46px 0;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 560px) {
	body {
		font-size: 15px;
	}

	.container {
		width: calc(100% - 24px);
	}

	.header-inner {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}

	.site-logo img {
		max-width: 110px;
	}

	.coming-soon-hero,
	.about-section,
	.family-section,
	.contact-section {
		padding: 38px 0;
	}

	h1 {
		font-size: 36px;
	}

	h2 {
		font-size: 28px;
	}

	.hero-intro,
	.about-section p,
	.family-section p:not(.eyebrow),
	.contact-item p {
		font-size: 16px;
	}

	.hero-actions {
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.family-links {
		flex-direction: column;
		gap: 6px;
	}

	.family-links span {
		display: none;
	}
}