:root {
	--primary: #001913;
	--accent: #f25e3d;
	--light: #f3f3f3;	
}

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

body {
    font-family: Arial, sans-serif;
    color: var(--primary);
    background: var(--light);
    display: flex;
    flex-direction: column;
    line-height: 1.5;
	min-height: 100dvh;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.75rem;
    padding: 3rem 3rem;
    max-width: 760px;
    margin: 0 auto;
}

/* Logo */
.logo {
    width: clamp(240px, 40vw, 320px);
    height: auto;
	margin-bottom: 3rem;
}

/* Headings & text */
h1 {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
}

.subtitle {
    font-size: clamp(1.125rem, 1.2vw + 1rem, 1.5rem);
    font-weight: 600;
}

.contact {
    font-size: 1rem;
    opacity: 0.75;
}

.email-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.email-link:hover {
  text-decoration: underline;
}

/* Footer */
footer {
	background: var(--accent);
	color: var(--light);
    text-align: center;
    font-size: 0.875rem;
    padding: 1.5rem 1rem;
}