:root {
--navy: #1f2a44;
--navy-dark: #162033;
--gold: #c6a75e;
--gold-hover: #b4954f;
--charcoal: #2e2e2e;
--offwhite: #f7f8fa;
--white: #ffffff;
--shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
box-sizing: border-box;
}

body {
margin: 0;
font-family: 'Inter', sans-serif;
color: var(--charcoal);
background-color: var(--offwhite);
line-height: 1.6;
}

h1, h2, h3 {
font-family: 'Playfair Display', serif;
color: var(--navy);
margin-top: 0;
}

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

header {
background: var(--navy);
color: var(--white);
padding: 18px 60px;
display: flex;
align-items: center;
justify-content: space-between;
}

nav ul {
list-style: none;
display: flex;
gap: 30px;
margin: 0;
padding: 0;
}

nav a {
color: var(--white);
font-weight: 500;
}

.nav-cta {
background: var(--gold);
color: var(--navy);
padding: 10px 18px;
border-radius: 4px;
font-weight: 600;
}

.nav-cta:hover {
background: var(--gold-hover);
}

.hero {
background: linear-gradient(
rgba(31, 42, 68, 0.75),
rgba(31, 42, 68, 0.75)
),
url('/images/hero-bg.jpg') center / cover no-repeat;
color: var(--white);
padding: 100px 60px;
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
align-items: center;
}

.hero h1 {
font-size: 3.2rem;
color: var(--white);
}

.hero p {
font-size: 1.15rem;
max-width: 520px;
}

.hero .btn-primary {
margin-top: 30px;
}

.btn-primary {
display: inline-block;
background: var(--gold);
color: var(--navy);
padding: 14px 28px;
border-radius: 4px;
font-weight: 600;
transition: background 0.2s ease;
}

.btn-primary:hover {
background: var(--gold-hover);
}

.section {
padding: 80px 60px;
background: var(--white);
}

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

.card-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-top: 50px;
}

.card {
background: var(--white);
padding: 40px 30px;
border-radius: 8px;
box-shadow: var(--shadow);
text-align: center;
transition: transform 0.25s ease;
}

.card:hover {
transform: translateY(-6px);
}

.card img {
height: 48px;
margin-bottom: 20px;
}

.card h3 {
margin-bottom: 10px;
}

.why {
background: var(--offwhite);
}

.why-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-top: 40px;
}

.why-item {
background: var(--white);
padding: 30px;
border-radius: 8px;
text-align: center;
box-shadow: var(--shadow);
}

.testimonials {
background: var(--white);
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
margin-top: 40px;
}

.testimonial {
background: var(--offwhite);
padding: 30px;
border-radius: 6px;
font-style: italic;
}

.testimonial span {
display: block;
margin-top: 15px;
font-weight: 600;
color: var(--navy);
font-style: normal;
}

.cta-strip {
background: var(--navy-dark);
color: var(--white);
text-align: center;
padding: 70px 30px;
}

.cta-strip h2 {
color: var(--white);
}

.cta-strip .btn-primary {
margin-top: 20px;
}

footer {
background: var(--navy);
color: var(--white);
padding: 50px 60px;
}

.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 40px;
}

footer a {
color: var(--white);
opacity: 0.85;
}

footer a:hover {
opacity: 1;
}

@media (max-width: 900px) {
.hero {
grid-template-columns: 1fr;
text-align: center;
}

.card-grid,
.why-grid,
.testimonial-grid,
.footer-grid {
grid-template-columns: 1fr;
}

header {
flex-direction: column;
gap: 20px;
}
}