:root {

    /*------------------------------------------------------
      Brand Colors
    ------------------------------------------------------*/

    --navy: #0B1D35;
    --navy2: #0F2542;
    --navy3: #162E4D;

    --gold: #C8963E;
    --gold-light: #E8B55A;

    --cream: #F7F3EE;
    --cream-dark: #EDE8E1;

    --white: #FFFFFF;


    /*------------------------------------------------------
      Text
    ------------------------------------------------------*/

    --text: #1A2E44;
    --muted: #7A8FA8;


    /*------------------------------------------------------
      Borders
    ------------------------------------------------------*/

    --border: #D4CECC;


    /*------------------------------------------------------
      Status Colors
    ------------------------------------------------------*/

    --success: #4BAE6A;
    --warning: #E2A93B;
    --danger: #D9534F;


    /*------------------------------------------------------
      Typography
    ------------------------------------------------------*/

    --font-display: "Cormorant Garamond", serif;
    --font-body: "DM Sans", sans-serif;
    --font-mono: "DM Mono", monospace;


    /*------------------------------------------------------
      Layout
    ------------------------------------------------------*/

    --container: 1200px;
    --container-small: 900px;

    --section-space: 120px;
    --section-space-mobile: 80px;


    /*------------------------------------------------------
      Radius
    ------------------------------------------------------*/

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-pill: 999px;


    /*------------------------------------------------------
      Shadows
    ------------------------------------------------------*/

    --shadow:
        0 5px 30px rgba(11, 29, 53, .08);

    --shadow-large:
        0 15px 60px rgba(11, 29, 53, .14);


    /*------------------------------------------------------
      Transition
    ------------------------------------------------------*/

    --transition: .3s ease;


    /*------------------------------------------------------
      Spacing
    ------------------------------------------------------*/

    --space-xs: .5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 7rem;

}

/*==========================================================
  2. RESET
==========================================================*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;

    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;

    color: var(--text);
    background: var(--white);

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

svg {
    display: block;
    max-width: 100%;
}

picture {
    display: block;
}

iframe {
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

/*==========================================================
  3. BASE
==========================================================*/

::selection {
    background: var(--gold);
    color: var(--white);
}

body.admin-bar .site-header {
    top: 32px;
}

main {
    overflow: hidden;
}

section {
    position: relative;
}

hr {
    height: 1px;
    margin: 2rem 0;
    border: 0;
    background: var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
}

figure {
    margin: 0;
}


/*==========================================================
  4. TYPOGRAPHY
==========================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px;

    color: var(--navy);

    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.02em;
}

h1 {
    font-size: clamp(
        3rem,
        6vw,
        5rem
    );
}

h2 {
    font-size: clamp(
        2.4rem,
        5vw,
        3.75rem
    );
}

h3 {
    font-size: clamp(
        1.5rem,
        3vw,
        2rem
    );
}

h4 {
    font-size: 1.35rem;
}

h5 {
    font-size: 1.15rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin: 0 0 20px;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    color: var(--navy);
}

small {
    font-size: .875rem;
}


/*==========================================================
  5. LAYOUT
==========================================================*/

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}

.container-small {
    width: min(
        calc(100% - 40px),
        var(--container-small)
    );

    margin-inline: auto;
}

.site-main {
    overflow: hidden;
}

/*==========================================================
  6. HEADER
==========================================================*/

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(
        255,
        255,
        255,
        .96
    );

    border-bottom: 1px solid rgba(
        212,
        206,
        204,
        .7
    );

    box-shadow: var(--shadow);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 90px;

    gap: 30px;
}


/*----------------------------------------------------------
  Branding
----------------------------------------------------------*/

.site-branding {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.site-title {
    display: flex;
    align-items: center;

    gap: 15px;
}

.logo-gc {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--gold);
    color: var(--white);

    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .04em;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.site-title:hover .logo-gc {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    color: var(--navy);

    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text small {
    margin-top: 3px;

    color: var(--muted);

    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/*----------------------------------------------------------
  Navigation
----------------------------------------------------------*/

.main-navigation {
    margin-left: auto;
}

.main-menu {
    display: flex;
    align-items: center;

    gap: 30px;

    list-style: none;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 8px 0;

    color: var(--navy);

    font-size: .95rem;
    font-weight: 600;

    transition:
        color var(--transition);
}

.main-menu a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    border-radius: var(--radius-pill);

    background: var(--gold);

    transition:
        width var(--transition);
}

.main-menu a:hover {
    color: var(--gold);
}

.main-menu a:hover::after {
    width: 100%;
}

.main-menu .current-menu-item > a,
.main-menu .current_page_item > a {
    color: var(--gold);
}

.main-menu .current-menu-item > a::after,
.main-menu .current_page_item > a::after {
    width: 100%;
}

/*----------------------------------------------------------*
* Language Switcher
*----------------------------------------------------------*/

.language-switcher {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.language-switcher ul {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.language-switcher li {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}

.language-switcher li + li::before {
	content: "|";

	margin: 0 9px;

	color: var(--border);
	font-size: .8rem;
	font-weight: 400;
}

.language-switcher a {
	display: inline-flex;
	align-items: center;

	padding: 6px 0;

	color: var(--muted);

	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;

	text-decoration: none;

	transition:
		color var(--transition);
}

.language-switcher a:hover {
	color: var(--gold);
}

.language-switcher .current-lang a {
	color: var(--gold);
}

.language-switcher .current-lang a::after {
	display: none;
}

/*----------------------------------------------------------
  Header Actions
----------------------------------------------------------*/

.header-actions {
    display: flex;
    align-items: center;

    gap: 15px;
}


/*----------------------------------------------------------
  Mobile Toggle
----------------------------------------------------------*/

.mobile-toggle {
    display: none;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    gap: 5px;
    padding: 0;

    border: 0;
    border-radius: var(--radius-sm);

    background: transparent;
}

.mobile-toggle span {
    display: block;

    width: 27px;
    height: 3px;

    border-radius: var(--radius-pill);

    background: var(--navy);

    transition:
        transform var(--transition),
        opacity var(--transition);
}

/*==========================================================
  7. ACCESSIBILITY
==========================================================*/

.skip-link {
    position: absolute;

    top: auto;
    left: -9999px;

    z-index: 99999;

    padding: 10px 20px;

    background: var(--navy);
    color: var(--white);
}

.skip-link:focus {
    top: 20px;
    left: 20px;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}


/*==========================================================
  8. RESPONSIVE BASE
==========================================================*/

@media (max-width: 992px) {

    .header-container {
        min-height: 80px;
    }

    .main-navigation {
        display: none;

        width: 100%;
        margin: 0;
    }

    .main-navigation.is-open {
        display: block;
    }

    .main-menu {
        flex-direction: column;
        align-items: flex-start;

        gap: 5px;

        padding: 20px 0;
    }

    .main-menu a {
        width: 100%;

        padding: 10px 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-container {
        flex-wrap: wrap;
    }
}


@media (max-width: 768px) {

    body {
        font-size: 15px;
    }

    .container,
    .container-small {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.1rem;
    }
}


@media (max-width: 600px) {

    body.admin-bar .site-header {
        top: 46px;
    }
}


/*==========================================================
  REDUCED MOTION
==========================================================*/

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;
    }
}