/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonts */
@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../fonts/NeueHaasGroteskText-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../fonts/NeueHaasGroteskText-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Base Typography */
body {
    font-family: 'Neue Haas Grotesk', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 4.5vw, 1.2rem);
    line-height: 1.5;
    color: #000;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h2 {
    font-size: clamp(11px, 4.5vw, 12px);
    color: #b4b4b4;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
}

a:hover {
    color: #999;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.mobile-legend {
    display: none;
}

header.light {
    color: #e8e8e8;
}

header.light a:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* Plus Icon */
.plus-icon {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    vertical-align: middle;
    transform: translateY(-2px);
}

header.light .plus-icon,
.mobile-footer.light .plus-icon {
    filter: invert(1);
}

/* Mobile Footer */
.mobile-footer {
    display: none;
}

@media (max-width: 1100px) {
    .desktop-header {
        display: none;
    }

    .mobile-legend {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    header.light .mobile-legend {
        color: #e8e8e8;
    }

    .mobile-footer {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 20px 24px;
        justify-content: space-between;
    }

    .mobile-footer.light {
        color: #e8e8e8;
    }

    .mobile-footer.light a:hover {
        color: rgba(255, 255, 255, 0.5);
    }
}