* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #b8c4ca;
    color: #17212b;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
}

/* ============================================================
   HEADER
   ============================================================ */

header {
    min-height: 76px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(225, 232, 236, 0.97);
    border-bottom: 1px solid #aeb9c0;
    backdrop-filter: blur(10px);
}

.logo {
    color: #17212b;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    text-decoration: none;
    white-space: nowrap;
}

.logo span {
    color: #1fa976;
}

nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

nav a {
    color: #4e5b66;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #17212b;
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */

main {
    width: 100%;
    padding: 34px 20px 48px;
}

.hero,
.section {
    width: min(1180px, 100%);
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    min-height: 520px;
    margin-bottom: 0;
    padding: 72px 72px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 28%,
            rgba(54, 211, 153, 0.24) 0%,
            rgba(54, 211, 153, 0.10) 32%,
            transparent 60%
        ),
        #d4e2de;

    border: 1px solid #9eabb3;
    border-radius: 18px 18px 0 0;

    box-shadow: 0 18px 46px rgba(30, 42, 52, 0.12);
}

.hero-content {
    width: 100%;
    max-width: 820px;
}

/* ============================================================
   TYPO
   ============================================================ */

.eyebrow,
.section-label {
    color: #14885f;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

h1 {
    max-width: 850px;
    margin: 14px 0 28px;

    color: #17212b;
    font-size: clamp(46px, 5.6vw, 74px);
    line-height: 1.04;
    letter-spacing: -2.4px;
}

h1 span {
    color: #66737e;
}

h2 {
    max-width: 860px;
    margin: 14px 0 28px;

    color: #17212b;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -1px;
}

h3 {
    color: #17212b;
    line-height: 1.25;
}

.intro,
.section-text,
.contact > p {
    color: #4d5b66;
    line-height: 1.75;
}

.intro {
    max-width: 740px;
    margin-bottom: 21px;
    font-size: 18px;
}

.section-text {
    max-width: 820px;
    font-size: 17px;
}

.section-text strong,
.contact strong,
.player-card strong,
.memory strong {
    color: #17212b;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.button,
.submit-button {
    background: #36d399;
    color: #07110d;
    border: 1px solid #29bd87;
    border-radius: 8px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.button {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 24px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(20, 120, 86, 0.13);
}

.button:hover,
.submit-button:hover {
    transform: translateY(-1px);
    background: #42daa2;
    box-shadow: 0 8px 20px rgba(20, 120, 86, 0.17);
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
    padding: 70px 72px;
    background: #d4dde1;
    border-left: 1px solid #a8b5bc;
    border-right: 1px solid #a8b5bc;
    border-top: 1px solid #b0bcc2;
}

/* No left/right alternation: all content shares one centered column */
.section > * {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.section h2,
.section .section-label,
.section .section-text,
.section > p:not(.section-label) {
    text-align: center;
}

.section + .section {
    border-top: 1px solid #aeb9c0;
}

main > .section:nth-of-type(even),
main > .section:nth-of-type(odd) {
    background: #d4dde1;
}

/* last section closes the content block */
main > .section:last-of-type {
    border-bottom: 1px solid #a8b5bc;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 46px rgba(30, 42, 52, 0.10);
}

/* ============================================================
   PLAYER CARD
   ============================================================ */

.player-card {
    max-width: 860px;
    padding: 30px;

    background: #edf2f4;
    border: 1px solid #b7c3c9;
    border-radius: 12px;

    box-shadow: 0 8px 24px rgba(25, 35, 45, 0.08);

    text-align: left;
}

.player-card h3 {
    margin: 14px 0 10px;
    font-size: 30px;
}

.player-card p {
    max-width: 750px;
    color: #53616c;
}

.status {
    display: inline-block;
    color: #14885f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

/* ============================================================
   MEMORIES
   ============================================================ */

.memories {
    max-width: 860px;
    margin-top: 54px;
    text-align: left;
}

.memories h3 {
    margin-bottom: 20px;
    font-size: 26px;
}

.memory {
    display: grid;
    grid-template-columns:
        minmax(90px, 120px)
        minmax(170px, 1fr)
        2fr;

    gap: 25px;
    align-items: start;

    padding: 20px 0;
    border-bottom: 1px solid #b3c0c6;
}

.memory:first-of-type {
    border-top: 1px solid #b3c0c6;
}

.memory span {
    color: #14885f;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.memory p {
    margin: 0;
    color: #596772;
}

/* ============================================================
   CONTACT SECTIONS
   ============================================================ */

.contact {
    text-align: center;
}

.contact h2 {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.contact > p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
}

/* ============================================================
   FORM
   ============================================================ */

.contact-form {
    max-width: 850px;
    margin: 46px auto 0;
    padding: 30px;

    text-align: left;

    background: #edf2f4;
    border: 1px solid #b7c3c9;
    border-radius: 12px;

    box-shadow: 0 10px 28px rgba(25, 35, 45, 0.09);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-field {
    margin-bottom: 22px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;

    color: #26323d;
    font-size: 14px;
    font-weight: 700;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 15px;

    background: #f8fafb;
    color: #17212b;

    border: 1px solid #b6c2c8;
    border-radius: 6px;

    font: inherit;
    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 150px;
}

.form-field input:hover,
.form-field textarea:hover {
    border-color: #9eabb3;
}

.form-field input:focus,
.form-field textarea:focus {
    background: #ffffff;
    border-color: #36d399;
    box-shadow: 0 0 0 3px rgba(54, 211, 153, 0.16);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #7f8a94;
}

/* ============================================================
   HONEYPOT
   ============================================================ */

.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ============================================================
   CAPTCHA
   ============================================================ */

.turnstile-container {
    margin: 10px 0 22px;
    display: flex;
    justify-content: flex-start;
    min-height: 65px;
}

/* ============================================================
   PRIVACY NOTE
   ============================================================ */

.privacy-note {
    margin-top: 12px;
    padding: 12px 14px;

    color: #46555f;
    font-size: 13px;
    line-height: 1.55;

    background: #dcefe8;
    border-left: 3px solid #36d399;
    border-radius: 4px;
}

/* ============================================================
   SUBMIT
   ============================================================ */

.submit-button {
    width: 100%;
    margin-top: 15px;
    padding: 15px 24px;

    font-size: 15px;
    cursor: pointer;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 34px;
    padding: 34px 40px;

    background: #bcc8ce;
    color: #4d5a65;

    border: 1px solid #a8b4bb;
    border-radius: 14px;

    box-shadow: 0 10px 26px rgba(30, 42, 52, 0.08);
}

footer .logo {
    display: inline-block;
    margin-bottom: 10px;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #41505a;
    text-decoration: none;
}

footer a:hover {
    color: #17212b;
    text-decoration: underline;
}

.copyright {
    margin-top: 18px;
    color: #6f7b84;
    font-size: 12px;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

::selection {
    background: #36d399;
    color: #07110d;
}

.button:focus-visible,
.submit-button:focus-visible,
nav a:focus-visible,
footer a:focus-visible {
    outline: 2px solid #14885f;
    outline-offset: 3px;
}

/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 900px) {

    header {
        padding-left: 5%;
        padding-right: 5%;
    }

    nav {
        gap: 18px;
    }

    main {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero,
    .section {
        padding-left: 7%;
        padding-right: 7%;
    }

    .memory {
        grid-template-columns:
            90px
            1fr
            1.5fr;

        gap: 15px;
    }
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    header {
        min-height: 68px;
        padding-left: 5%;
        padding-right: 5%;
    }

    nav {
        display: flex;
        margin-left: auto;
    }

    nav a {
        display: none;
    }

    nav a[hreflang] {
        display: inline-block;
        color: #41505a;
        font-size: 14px;
        font-weight: 700;
    }

    .logo {
        font-size: 19px;
    }

    main {
        padding: 14px 8px 26px;
    }

    .hero {
        min-height: auto;
        padding: 54px 7% 52px;
        border-radius: 12px 12px 0 0;
    }

    .section {
        padding: 52px 7%;
    }

    main > .section:last-of-type {
        border-radius: 0 0 12px 12px;
    }

    h1 {
        font-size: clamp(42px, 12vw, 58px);
        letter-spacing: -2px;
    }

    h2 {
        font-size: clamp(32px, 9vw, 42px);
    }

    .intro,
    .section-text {
        font-size: 17px;
    }

    .player-card {
        padding: 24px;
    }

    .player-card h3 {
        font-size: 27px;
    }

    .memories {
        margin-top: 44px;
    }

    .memory {
        grid-template-columns: 1fr;
        gap: 3px;
        padding: 18px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .button {
        width: 100%;
        text-align: center;
    }

    footer {
        width: calc(100% - 16px);
        margin-bottom: 18px;
        padding: 28px 7%;
        border-radius: 12px;
    }
}

/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 420px) {

    h1 {
        font-size: 41px;
    }

    h2 {
        font-size: 33px;
    }

    .hero {
        padding-top: 48px;
    }
}
