﻿:root {
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Josefin Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #27313e;
    background-color: #f8f9fb;
}

a {
    color: #244b74;
}

a:hover,
a:focus {
    color: #162e44;
}

.site-header {
    background-color: #1e2a36;
    color: #fff;
}

.hero {
    position: relative;
    background-image: linear-gradient(180deg, rgba(24, 32, 42, 0.75), rgba(24, 32, 42, 0.85)), url("../onewebmedia/stem-t4l-qF9GpDlsDfI-unsplash.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__content {
    max-width: 960px;
    margin: 0 auto;
    padding: 5rem 1.5rem 6rem;
}

.hero__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__title {
    margin: 0;
    font-size: clamp(2.75rem, 6vw, 4rem);
    line-height: 1.1;
}

.hero__subtitle {
    margin: 1rem 0 2rem;
    font-size: 1.25rem;
}

.hero__cta {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    background-color: #f1b82d;
    color: #18202a;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta:hover,
.hero__cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

main {
    display: block;
}

.section {
    padding: 3.5rem 1.5rem;
}

.section--highlight {
    background-color: #ffffff;
}

.section--contact {
    background-color: #e9f2fb;
}

.section__inner {
    max-width: 960px;
    margin: 0 auto;
}

.section__inner--split {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.section__title {
    margin: 0 0 1.5rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.2;
    color: #162e44;
}

.offer-list {
    margin: 0;
    padding-left: 1.25rem;
    list-style: disc;
}

.offer-list li {
    margin-bottom: 0.75rem;
}

.section__content p {
    margin: 0;
}

.profile {
    margin: 0;
    justify-self: center;
}

.profile img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.contact {
    font-style: normal;
}

.contact__lead {
    margin: 0 0 1.5rem;
}

.contact__name {
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.site-footer {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #556273;
}

@media (min-width: 768px) {
    .section__inner--split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    }
}

@media (max-width: 767px) {
    .hero__content {
        padding: 4rem 1.5rem 5rem;
    }
}
