
:root {
--primary: #c2410c;
--secondary: #f97316;
--bg: #fff7ed;
--text: #1f2937;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
}
header {
background: white;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
nav {
max-width: 1100px;
margin: auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
nav a {
margin-left: 1rem;
text-decoration: none;
color: var(--text);
font-weight: 500;
}
nav a:hover { color: var(--primary); }
.hero {
max-width: 1100px;
margin: 4rem auto;
padding: 0 2rem;
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 2rem;
align-items: center;
}
.hero h1 {
font-size: 2.6rem;
line-height: 1.2;
margin-bottom: 1rem;
}
.hero p { font-size: 1.1rem; }
.button {
display: inline-block;
margin-top: 1.5rem;
padding: 0.8rem 1.6rem;
background: var(--primary);
color: white;
border-radius: 0.6rem;
text-decoration: none;
font-weight: 600;
}
.section {
max-width: 1100px;
margin: 4rem auto;
padding: 0 2rem;
}
.section h2 {
font-size: 2rem;
margin-bottom: 1.5rem;
color: var(--primary);
}
.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.card {
background: white;
padding: 1.8rem;
border-radius: 1rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.card h3 { margin-top: 0; }
.contact {
background: white;
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
footer {
background: #431407;
color: #fed7aa;
padding: 2rem;
text-align: center;
margin-top: 4rem;
}
@media (max-width: 768px) {
.hero { grid-template-columns: 1fr; }
}