:root {
	--mango: #E94A12;
	--mango-dark: #c43d0e;
	--cream: #FBF6EE;
	--ink: #2a2118;
	--muted: #7a6f63;
	--card: #ffffff;
	--border: #efe4d4;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	padding: 2.5rem 1.25rem 4rem;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Arial", sans-serif;
	background: var(--cream);
	color: var(--ink);
	line-height: 1.5;
}

.wrap { max-width: 960px; margin: 0 auto; }

/* Hero */
.hero { text-align: center; margin-bottom: 2.75rem; }
.hero .emoji { font-size: 3.5rem; line-height: 1; }
.hero h1 {
	font-size: 2.6rem;
	margin: 0.4rem 0 0.3rem;
	color: var(--mango);
	letter-spacing: -0.02em;
}
.tagline { font-size: 1.15rem; margin: 0 auto 0.9rem; max-width: 600px; color: var(--ink); }
.modal { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem; }
.btn {
	display: inline-block;
	background: var(--mango);
	color: #fff;
	text-decoration: none;
	padding: 0.7rem 1.4rem;
	border-radius: 999px;
	font-weight: 600;
	transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--mango-dark); transform: translateY(-1px); }

/* Grid */
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1rem;
}
.card {
	display: block;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 1.25rem;
	text-decoration: none;
	color: inherit;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(233, 74, 18, 0.12);
	border-color: var(--mango);
}
.card .ico { font-size: 1.6rem; }
.card h2 { font-size: 1.05rem; margin: 0.5rem 0 0.35rem; color: var(--mango-dark); }
.card p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* Footer */
footer { text-align: center; margin-top: 3rem; color: var(--muted); font-size: 0.85rem; }
footer a { color: var(--mango); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.made { margin-top: 0.3rem; }
