:root {
    --ink: #102a43;
    --muted: #617282;
    --paper: #f7f3ea;
    --soft: #ece7dc;
    --green: #102a43;
    --green-dark: #071c2f;
    --gold: #d6a84f;
    --line: rgba(16, 42, 67, 0.12);
    --shadow: 0 26px 70px rgba(16, 42, 67, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 0%, rgba(214, 168, 79, 0.2), transparent 34rem),
        linear-gradient(180deg, #fbf8f0 0%, var(--paper) 52%, #eee7d8 100%);
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(23, 36, 33, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 36, 33, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 70%);
    z-index: -1;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

h1,
h2,
p {
    margin: 0;
}

.hero {
    width: min(1180px, calc(100vw - 40px));
    min-height: 100dvh;
    margin: 0 auto;
    padding: clamp(34px, 6vw, 76px) 0 clamp(54px, 7vw, 92px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(28px, 4vw, 46px);
    text-align: center;
}

.hero-image {
    width: min(980px, 100%);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
    mix-blend-mode: multiply;
    opacity: 0.96;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: saturate(0.96) contrast(1.02);
}

.hero-content {
    width: min(860px, 100%);
    margin: 0 auto;
    margin-top: 2cm;
}

h1,
h2 {
    font-family: "Libre Baskerville", Georgia, serif;
    letter-spacing: 0;
    text-wrap: balance;
}

h1 {
    max-width: 1100px;
    margin: 0 auto;
    font-size: clamp(2.25rem, 4.35vw, 4.15rem);
    line-height: 1.08;
    text-align: center;
}

h1 span {
    display: block;
    white-space: nowrap;
    text-align: center;
}

.indent-line {
    transform: translateX(1ch);
}

.hero-content p {
    max-width: 560px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--green);
    color: white;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(15, 92, 103, 0.22);
    transition: transform 180ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--green-dark);
    box-shadow: 0 22px 44px rgba(15, 92, 103, 0.28);
}

.button:active {
    transform: translateY(0) scale(0.98);
}

.section {
    padding: clamp(70px, 9vw, 118px) 20px;
}

.section-inner {
    width: min(960px, 100%);
    margin: 0 auto;
}

.section-inner.narrow {
    width: min(760px, 100%);
    text-align: center;
}

h2 {
    color: var(--ink);
    font-size: clamp(2rem, 4.5vw, 4.2rem);
    line-height: 1.08;
}

.about-section {
    background: rgba(233, 243, 242, 0.62);
}

.content {
    margin-top: 34px;
    color: #42534e;
    font-size: 1.05rem;
}

.content p + p {
    margin-top: 20px;
}

.content ul {
    display: grid;
    gap: 12px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.content li {
    padding: 16px 18px;
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 34px rgba(15, 92, 103, 0.07);
}

.mission-section p,
.contact-section p {
    margin-top: 22px;
    color: var(--muted);
    font-size: 1.08rem;
}

.contact-section {
    color: white;
    background:
        linear-gradient(rgba(7, 28, 47, 0.88), rgba(7, 28, 47, 0.9)),
        url("hero.jpg") calc(50% + 1.8cm) calc(50% + 5.5cm) / 92% auto;
}

.contact-section h2 {
    color: white;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.76);
}

.email-link {
    display: inline-flex;
    margin-top: 30px;
    color: white;
    font-size: clamp(1.22rem, 4vw, 2.75rem);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
    transition: color 220ms ease, transform 180ms ease, border-color 220ms ease;
}

.email-link:hover {
    color: #f0c76c;
    border-color: #f0c76c;
    transform: translateY(-2px);
}

footer {
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 28px 0;
    color: var(--muted);
    text-align: center;
    font-size: 0.94rem;
}

:focus-visible {
    outline: 3px solid rgba(214, 168, 79, 0.7);
    outline-offset: 3px;
}

@media (max-width: 560px) {
    .hero {
        width: min(100vw - 28px, 1180px);
        padding-top: 28px;
        min-height: auto;
    }

    h1 {
        font-size: clamp(1.72rem, 8.5vw, 2.8rem);
    }

    h1 span {
        white-space: normal;
    }

    .indent-line {
        transform: none;
    }

    .hero-content {
        margin-top: 18px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-top: 16px;
    }

    h2 {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }

    .button {
        width: 100%;
        min-height: 56px;
        margin-top: 24px;
        font-size: 1rem;
    }

    .section {
        padding: 52px 16px;
    }

    .content {
        font-size: 0.97rem;
        margin-top: 24px;
    }

    .content li {
        padding: 12px 14px;
        font-size: 0.93rem;
    }

    .contact-section {
        background:
            linear-gradient(rgba(7, 28, 47, 0.88), rgba(7, 28, 47, 0.9)),
            url("hero.jpg") center center / cover;
    }

    .email-link {
        max-width: 100%;
        overflow-wrap: break-word;
        font-size: clamp(1.05rem, 5vw, 1.45rem);
        padding: 8px 0;
    }
}
