:root {
--brand: #a01623;
--brand-dark: #760f19;
--text: #333333;
--muted: #686868;
--light: #f6f6f6;
--border: #e5e5e5;
--white: #ffffff;
--max-width: 1180px;
}

* {
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
color: var(--text);
background: var(--white);
font-size: 16px;
line-height: 1.7;
}

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

a {
color: var(--brand);
text-decoration: none;
}

a:hover {
color: var(--brand-dark);
}

.container {
width: min(var(--max-width), calc(100% - 40px));
margin: 0 auto;
}

/* Header */

.site-header {
background: var(--white);
border-bottom: 1px solid var(--border);
position: relative;
z-index: 10;
}

.header-inner {
min-height: 105px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
}

.logo {
display: inline-flex;
align-items: center;
}

.logo img {
display: block;
max-width: 300px;
max-height: 80px;
object-fit: contain;
}

.main-nav {
display: flex;
align-items: center;
gap: 8px;
}

.main-nav a {
display: inline-block;
padding: 12px 18px;
color: var(--text);
font-size: 14px;
font-weight: 600;
border-radius: 4px;
}

.main-nav a:hover,
.main-nav a.active {
color: var(--white);
background: var(--brand);
}

/* Hero */

.hero {
background: linear-gradient(
135deg,
#fafafa 0%,
#f2f2f2 100%
);
padding: 110px 0 115px;
}

.hero-content {
max-width: 850px;
}

.eyebrow {
margin: 0 0 14px;
color: var(--brand);
font-size: 13px;
font-weight: 700;
letter-spacing: 1.5px;
text-transform: uppercase;
}

h1,
h2,
h3 {
line-height: 1.2;
margin-top: 0;
}

h1 {
margin-bottom: 24px;
font-size: clamp(42px, 6vw, 68px);
letter-spacing: -2px;
}

h2 {
margin-bottom: 22px;
font-size: clamp(30px, 4vw, 44px);
letter-spacing: -1px;
}

h3 {
margin-bottom: 12px;
font-size: 21px;
}

.hero-text {
max-width: 720px;
margin: 0 0 32px;
color: var(--muted);
font-size: 20px;
line-height: 1.65;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
}

/* Buttons */

.button {
display: inline-block;
padding: 13px 24px;
background: var(--brand);
color: var(--white);
border: 2px solid var(--brand);
border-radius: 4px;
font-size: 14px;
font-weight: 700;
transition: 0.2s ease;
}

.button:hover {
background: var(--brand-dark);
border-color: var(--brand-dark);
color: var(--white);
}

.button-secondary {
background: transparent;
color: var(--brand);
}

.button-secondary:hover {
background: var(--brand);
}

.button-light {
background: var(--white);
border-color: var(--white);
color: var(--brand);
}

.button-light:hover {
background: transparent;
color: var(--white);
}

/* Sections */

.intro,
.services,
.content-section,
.contact-section {
padding: 90px 0;
}

.two-column {
display: grid;
grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
gap: 80px;
align-items: start;
}

.two-column p {
color: var(--muted);
}

/* Cards */

.services {
background: var(--light);
}

.section-heading {
max-width: 700px;
margin-bottom: 45px;
}

.cards {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}

.card {
padding: 30px;
background: var(--white);
border: 1px solid var(--border);
}

.card-icon {
margin-bottom: 30px;
color: var(--brand);
font-size: 14px;
font-weight: 700;
}

.card p {
margin: 0;
color: var(--muted);
}

/* Page hero */

.page-hero {
padding: 85px 0;
background: var(--light);
border-bottom: 1px solid var(--border);
}

.page-hero .container {
max-width: 900px;
}

.page-hero h1 {
max-width: 850px;
margin-bottom: 20px;
}

.page-hero p:last-child {
max-width: 750px;
margin: 0;
color: var(--muted);
font-size: 19px;
}

/* Content */

.content-narrow {
max-width: 850px;
}

.content-section p {
color: var(--muted);
}

.content-section h2:not(:first-child) {
margin-top: 60px;
}

/* Highlight */

.highlight {
padding: 80px 0;
background: var(--light);
border-top: 1px solid var(--border);
}

.principles {
display: grid;
gap: 25px;
}

.principles div {
padding-bottom: 20px;
border-bottom: 1px solid var(--border);
}

.principles h3 {
margin-bottom: 5px;
}

.principles p {
margin: 0;
color: var(--muted);
}

/* Features */

.feature-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 45px 30px;
}

.feature {
border-top: 2px solid var(--brand);
padding-top: 20px;
}

.feature > span {
display: block;
margin-bottom: 18px;
color: var(--brand);
font-size: 13px;
font-weight: 700;
}

.feature p {
margin: 0;
color: var(--muted);
}

/* CTA */

.cta {
padding: 70px 0;
background: var(--brand);
color: var(--white);
}

.cta-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
}

.cta .eyebrow {
color: rgba(255, 255, 255, 0.75);
}

.cta h2 {
margin: 0;
max-width: 700px;
}

/* Contact */

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

.contact-intro p:not(.eyebrow) {
max-width: 600px;
margin-bottom: 30px;
color: var(--muted);
}

.company-details {
padding: 35px;
background: var(--light);
border: 1px solid var(--border);
}

.company-details h2 {
font-size: 30px;
}

.company-details dl {
margin: 0;
}

.company-details dl > div {
padding: 18px 0;
border-bottom: 1px solid var(--border);
}

.company-details dl > div:last-child {
border-bottom: 0;
}

.company-details dt {
margin-bottom: 5px;
color: var(--brand);
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.company-details dd {
margin: 0;
color: var(--muted);
}

/* Footer */

.site-footer {
padding: 35px 0;
background: #222222;
color: #ffffff;
}

.footer-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
}

.footer-brand {
display: flex;
align-items: center;
gap: 15px;
}

.footer-brand img {
width: 45px;
height: 45px;
object-fit: contain;
}

.footer-brand p,
.footer-copy p {
margin: 0;
font-size: 13px;
}

.footer-copy {
color: #aaaaaa;
}

/* Responsive */

@media (max-width: 900px) {

```
.header-inner {
    min-height: auto;
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.main-nav {
    width: 100%;
    flex-wrap: wrap;
}

.cards {
    grid-template-columns: repeat(2, 1fr);
}

.feature-grid {
    grid-template-columns: repeat(2, 1fr);
}

.two-column,
.contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.cta-inner {
    align-items: flex-start;
    flex-direction: column;
}
```

}

@media (max-width: 600px) {

```
.container {
    width: min(100% - 30px, var(--max-width));
}

.hero {
    padding: 70px 0 75px;
}

.hero-text {
    font-size: 18px;
}

.intro,
.services,
.content-section,
.contact-section {
    padding: 65px 0;
}

.page-hero {
    padding: 60px 0;
}

h1 {
    font-size: 40px;
    letter-spacing: -1px;
}

h2 {
    font-size: 32px;
}

.main-nav {
    gap: 3px;
}

.main-nav a {
    padding: 9px 12px;
    font-size: 13px;
}

.cards,
.feature-grid {
    grid-template-columns: 1fr;
}

.hero-actions {
    flex-direction: column;
    align-items: stretch;
}

.hero-actions .button {
    text-align: center;
}

.footer-inner {
    align-items: flex-start;
    flex-direction: column;
}
```

}
