/* ========================================
   BRAND VARIABLES
======================================== */

:root {
    --navy: #071d38;
    --navy-light: #0d2b4f;
    --navy-soft: #163b64;

    --gold: #c7a244;
    --gold-light: #e2c977;

    --cream: #f7f2e7;
    --white: #ffffff;

    --text: #17202b;
    --text-soft: #5b6571;

    --background: #f4f5f7;
    --border: rgba(7, 29, 56, 0.12);

    --shadow-small: 0 8px 24px rgba(7, 29, 56, 0.08);
    --shadow-large: 0 24px 60px rgba(7, 29, 56, 0.15);
}


/* ========================================
   GLOBAL
======================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;

    background: var(--background);
    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.5;
}

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

a {
    color: inherit;
}

.section-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.section-kicker {
    margin: 0 0 14px;

    color: var(--gold);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.section-kicker-light {
    color: var(--gold-light);
}


/* ========================================
   NAVIGATION
======================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(7, 29, 56, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(12px);
}

.nav-container {
    width: min(1240px, calc(100% - 48px));
    min-height: 90px;

    margin: 0 auto;

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 13px;

    flex-shrink: 0;

    color: var(--white);
    text-decoration: none;
}

.nav-logo {
    width: 72px;
    height: 72px;
    padding: -10px;

    flex-shrink: 0;

    object-fit: contain;

    background: #ffffff;
    border: 2px solid var(--gold);
    border-radius: 50%;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.28),
        0 0 0 2px rgba(255, 255, 255, 0.10);
}

.nav-brand-name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 29px;
}

.nav-links a {
    position: relative;

    color: rgba(255, 255, 255, 0.88);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    white-space: nowrap;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.nav-links a:not(.nav-register)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;

    height: 2px;

    background: var(--gold);

    content: "";

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.2s ease;
}

.nav-links a:not(.nav-register):hover {
    color: var(--white);
}

.nav-links a:not(.nav-register):hover::after {
    transform: scaleX(1);
}

.nav-register {
    padding: 11px 20px;

    background: var(--gold);
    color: var(--navy) !important;

    border-radius: 5px;
}

.nav-register:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}


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

.hero {
    position: relative;

    min-height: calc(100vh - 82px);

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background-image: url("images/hero.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(7, 29, 56, 0.78),
            rgba(7, 29, 56, 0.46),
            rgba(7, 29, 56, 0.78)
        ),
        linear-gradient(
            180deg,
            rgba(7, 29, 56, 0.10),
            rgba(7, 29, 56, 0.55)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(960px, calc(100% - 40px));

    padding: 100px 0 130px;
}

.eyebrow {
    margin: 0 0 22px;

    color: var(--gold-light);

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 900px;

    margin: 0 auto 28px;

    font-size: clamp(52px, 7vw, 88px);
    line-height: 0.98;
    letter-spacing: -2px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
}

.hero-description {
    max-width: 760px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.90);

    font-size: 21px;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 38px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.hero-scroll {
    position: absolute;
    bottom: 27px;
    left: 50%;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;

    transform: translateX(-50%);
}

.scroll-arrow {
    font-size: 21px;
}


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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 0 29px;

    border: 2px solid transparent;
    border-radius: 5px;

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-decoration: none;

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

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--gold);
    color: var(--navy);
}

.button-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.65);

    background: rgba(7, 29, 56, 0.20);
    color: var(--white);
}

.button-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.10);
}

.button-light {
    flex-shrink: 0;

    background: var(--white);
    color: var(--navy);
}

.button-light:hover {
    background: var(--cream);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}


/* ========================================
   INTRODUCTION
======================================== */

.intro-section {
    padding: 100px 0;

    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
    gap: 90px;
}

.intro-heading h2 {
    max-width: 520px;

    margin: 0;

    color: var(--navy);

    font-size: clamp(39px, 5vw, 59px);
    line-height: 1.04;
    letter-spacing: -1.8px;
}

.intro-copy {
    padding-top: 8px;
}

.intro-copy p {
    margin: 0 0 22px;

    color: var(--text-soft);

    font-size: 19px;
    line-height: 1.75;
}

.intro-copy p:last-child {
    margin-bottom: 0;
}


/* ========================================
   TOURNAMENT
======================================== */

.tournament-section {
    padding: 105px 0;

    background: var(--background);
}

.section-heading {
    margin-bottom: 44px;

    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: end;
    gap: 60px;
}

.section-heading h2 {
    margin: 0;

    color: var(--navy);

    font-size: clamp(40px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -1.8px;
}

.section-introduction {
    margin: 0;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.7;
}

.tournament-card {
    display: grid;
    grid-template-columns: 1.65fr 0.85fr;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 14px;

    box-shadow: var(--shadow-large);
}

.tournament-main {
    min-height: 430px;
    padding: 54px;

    display: flex;
    align-items: center;
    gap: 50px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-light)
        );

    color: var(--white);
}

.tournament-date {
    width: 132px;
    min-width: 132px;
    height: 162px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.06);
}

.date-month {
    color: var(--gold-light);

    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
}

.date-day {
    margin: 3px 0;

    font-size: 68px;
    font-weight: 800;
    line-height: 1;
}

.date-year {
    color: rgba(255, 255, 255, 0.70);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tournament-status {
    display: inline-block;

    margin: 0 0 17px;
    padding: 7px 11px;

    border: 1px solid rgba(226, 201, 119, 0.55);
    border-radius: 3px;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tournament-information h3 {
    margin: 0 0 12px;

    font-size: clamp(36px, 4vw, 53px);
    line-height: 1;
    letter-spacing: -1.4px;
}

.tournament-location {
    margin: 0;

    color: rgba(255, 255, 255, 0.73);

    font-size: 17px;
}

.tournament-features {
    margin-top: 40px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-number {
    color: var(--white);

    font-size: 23px;
    font-weight: 800;
}

.feature-label {
    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.tournament-summary {
    padding: 50px 42px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tournament-summary h4 {
    margin: 0 0 24px;

    color: var(--navy);

    font-size: 23px;
    line-height: 1.25;
}

.tournament-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.tournament-list li {
    position: relative;

    margin-bottom: 13px;
    padding-left: 24px;

    color: var(--text-soft);

    font-size: 15px;
}

.tournament-list li::before {
    position: absolute;
    top: 1px;
    left: 0;

    color: var(--gold);

    content: "✓";

    font-weight: 900;
}

.tournament-button {
    width: 100%;
    margin-top: 26px;
}

.registration-note {
    margin: 14px 0 0;

    color: #7a828c;

    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}


/* ========================================
   EXPERIENCE
======================================== */

.experience-section {
    padding: 110px 0;

    background: var(--white);
}

.centered-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}

.centered-heading h2 {
    margin: 0;

    color: var(--navy);

    font-size: clamp(40px, 5vw, 59px);
    line-height: 1.05;
    letter-spacing: -1.7px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.experience-card {
    min-height: 320px;
    padding: 35px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--white);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.experience-card:hover {
    border-color: rgba(199, 162, 68, 0.65);

    box-shadow: var(--shadow-small);

    transform: translateY(-6px);
}

.card-number {
    display: inline-block;

    margin-bottom: 70px;

    color: var(--gold);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.experience-card h3 {
    margin: 0 0 15px;

    color: var(--navy);

    font-size: 25px;
}

.experience-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 16px;
    line-height: 1.7;
}


/* ========================================
   ABOUT
======================================== */

.about-section {
    padding: 110px 0;

    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 95px;
}

.about-brand {
    min-height: 440px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.38)
        );

    border: 1px solid rgba(199, 162, 68, 0.30);
    border-radius: 50%;
}

.about-logo {
    width: min(330px, 78%);
    height: auto;

    object-fit: contain;

    filter: drop-shadow(0 22px 24px rgba(7, 29, 56, 0.14));
}

.about-content h2 {
    margin: 0 0 28px;

    color: var(--navy);

    font-size: clamp(39px, 5vw, 57px);
    line-height: 1.06;
    letter-spacing: -1.7px;
}

.about-content p {
    margin: 0 0 20px;

    color: var(--text-soft);

    font-size: 18px;
    line-height: 1.75;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 11px;

    color: var(--navy);

    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.text-link span {
    color: var(--gold);

    font-size: 21px;

    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}


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

.contact-section {
    padding: 85px 0;

    background: var(--navy);
    color: var(--white);
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.contact-content h2 {
    margin: 0 0 17px;

    font-size: clamp(37px, 5vw, 55px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.contact-content p:not(.section-kicker) {
    max-width: 690px;

    margin: 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 17px;
    line-height: 1.7;
}


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

.footer {
    padding: 64px 0 30px;

    background: #041426;
    color: var(--white);

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 104px;
    height: 104px;
    padding: 2px;

    object-fit: contain;

    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.28),
        0 0 0 3px rgba(255, 255, 255, 0.08);
}

.footer-name {
    margin: 22px 0 0;

    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-tagline {
    margin: 8px 0 0;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.footer-socials {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;

    margin-top: 24px;

}

.footer-socials a {

    color: rgba(255,255,255,.70);

    font-size: 1.35rem;

    transition:
        color .25s ease,
        transform .25s ease;

}

.footer-socials a:hover {

    color: var(--gold-light);

    transform: translateY(-3px) scale(1.1);
<div class="footer-socials">


}

.footer-divider {
    width: min(420px, 80%);
    height: 1px;

    margin: 34px 0 22px;

    background: rgba(255, 255, 255, 0.14);
}

.footer-copyright {
    margin: 0;

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;
    letter-spacing: 0.5px;
}

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

@media (max-width: 980px) {

    .nav-container {
        width: min(100% - 32px, 1240px);
    }

    .nav-links {
        gap: 17px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .nav-brand-name {
        font-size: 16px;
    }

    .nav-logo {
        width: 52px;
        height: 52px;
    }

    .intro-grid {
        gap: 50px;
    }

    .tournament-card {
        grid-template-columns: 1fr;
    }

    .tournament-summary {
        padding: 42px;
    }

    .tournament-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 30px;
    }

    .experience-card {
        padding: 29px;
    }

    .about-grid {
        gap: 55px;
    }

    .about-brand {
        min-height: 350px;
    }

}


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

@media (max-width: 760px) {

    html {
        scroll-padding-top: 136px;
    }

    .section-container {
        width: min(100% - 32px, 1180px);
    }

    .navbar {
        position: relative;
    }

    .nav-container {
        width: 100%;
        min-height: auto;

        padding: 11px 16px 13px;

        flex-direction: column;
        gap: 10px;
    }

    .nav-brand {
        gap: 9px;
    }

    .nav-logo {
        width: 64px;
        height: 64px;
    }

    .nav-brand-name {
        font-size: 16px;
    }

    .nav-links {
        width: 100%;

        flex-wrap: wrap;
        justify-content: center;

        gap: 10px 16px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .nav-links a:nth-child(2) {
        display: none;
    }

    .nav-register {
        padding: 8px 13px;
    }


    /* HERO */

    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding: 90px 0 120px;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 2.5px;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 64px);
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: min(100%, 320px);
    }


    /* INTRO */

    .intro-section {
        padding: 75px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .intro-heading h2 {
        font-size: 43px;
    }

    .intro-copy p {
        font-size: 17px;
    }


    /* TOURNAMENT */

    .tournament-section {
        padding: 78px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-heading h2 {
        font-size: 44px;
    }

    .tournament-main {
        min-height: auto;
        padding: 38px 25px;

        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .tournament-date {
        width: 105px;
        min-width: 105px;
        height: 126px;
    }

    .date-day {
        font-size: 51px;
    }

    .tournament-information h3 {
        font-size: 40px;
    }

    .tournament-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-item {
        padding-bottom: 14px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .tournament-summary {
        padding: 34px 25px;
    }

    .tournament-list {
        grid-template-columns: 1fr;
    }


    /* EXPERIENCE */

    .experience-section {
        padding: 78px 0;
    }

    .centered-heading {
        margin-bottom: 38px;

        text-align: left;
    }

    .centered-heading h2 {
        font-size: 43px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        min-height: auto;
    }

    .card-number {
        margin-bottom: 45px;
    }


    /* ABOUT */

    .about-section {
        padding: 78px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-brand {
        min-height: auto;
        padding: 35px;
    }

    .about-logo {
        width: min(280px, 80%);
    }

    .about-content h2 {
        font-size: 42px;
    }

    .about-content p {
        font-size: 17px;
    }


    /* CONTACT */

    .contact-section {
        padding: 70px 0;
    }

    .contact-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

    .contact-content h2 {
        font-size: 42px;
    }

    .contact-content .button {
        width: 100%;
    }


    /* FOOTER */

    .footer {
    padding: 52px 0 26px;
}

.footer-content {
    align-items: center;
}

.footer-logo {
    width: 88px;
    height: 88px;
}

.footer-name {
    font-size: 17px;
    letter-spacing: 2.4px;
}

.footer-tagline {
    font-size: 10px;
    letter-spacing: 1.8px;
}
}