:root {
    /* || Colors */
    --color-white:    #ffffff;
    --color-green:    #609665;
    --color-green-l1: #88B08B;
    --color-green-l2: #AFCBB2;
    --color-green-l3: #D7E5D8;
    --color-green-l4: #EFF4F0;
    --color-green-d1: #48714C;
    --color-green-d2: #304B33;
    --color-green-d3: #182619;

    --color-green-light: rgb(230, 255, 230);
    --color-green-dark: rgb(64, 108, 73);
    --color-grey: #cedece;

    --color-bg: var(--color-green-light);
    --color-normal: var(--color-green);
    --color-highlight: var(--color-green-l1);
    --color-accent: var(--color-grey);

    --border: 1px solid var(--color-grey);
    --x-lr: 0 1rem;
    --x-tb: 1rem 0;

    --header-h: 0;
    --footer-h: 0;
    --main-h: calc(100vh - var(--header-h) - var(--footer-h));
}
* {
    /* background-color: #0000ff10; */
    box-sizing: border-box;
}
html {
    font-size: 20px;
}

body {
    margin: 0;
    background-color: var(--color-bg);
    color: var(--color-normal);
    font-family: "Poppins", sans-serif;

}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.1;
}
h1 {
    text-align: center;
}

figure {
    margin: 0 auto;
}
img {
    width: auto;
    max-width: 100%;
    vertical-align: bottom;
}

a, a:visited {
    color: var(--color-normal);
    /* text-decoration: none; */
    cursor: pointer;
}
a:hover {
    color: var(--color-highlight);
}
.menu  a {
    text-decoration: none;
}
a.button {
    padding: 0.25rem 1rem;
    background-color: white;
    border: var(--border);
    border-radius: 2rem;
    font-weight: bold;
}

hr {
    border: var(--border);
    border-bottom: none;
}

address {
    font-size: 0.8rem;
    font-style: normal;
    /* line-height: 1.2; */
    /* margin: 0; */
}

small {
    font-size: 0.8rem;
}

figcaption {
    text-align: center;
    font-size: 0.8rem;
}

/* || Site */
.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.header__inner,
.main__inner,
.footer__inner {
    /* padding: var(--x-tb); */
}
.header {
    padding-top: 1rem;
    border-bottom: var(--border);
}
.header__inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.header__right {
    display: flex;
    align-items: center;
    padding-bottom: 0.75rem;
}


.main {
    flex: 1 0 auto;
}
.main-inner {
    padding: 1rem 0;
}
.footer {
    border-top: var(--border);
}
.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer__privacy {
    text-align: right;
}

.footer__logos {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}
.footer__logo {
    max-width: 100px;
}

.site-logo {
    display: block;
    width: 200px;
    z-index: 9;
    mix-blend-mode: darken;
}

.menu-toggle {
    display: none;
}

.menu__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 1rem;
}
.menu__item--active {
    text-decoration: underline;
}

.content > * {
    color: var(--color-text);
    margin: 1rem auto;
    max-width: 35rem;
}
.content-block--image {
    max-width: none;
}

.img--small {
    display: block;
    width: 200px;
    margin: 0 auto;
}

.detail-list {
  display: grid;
  grid-template-columns: 1fr auto;
}

.detail-list dt {
  font-weight: normal;
  padding: 0.25rem;
  border-bottom: var(--border);
  border-left: var(--border);
  border-right: var(--border);
}

.detail-list dd {
  margin: 0;
  padding: 0.25rem;
  /* text-align: right; */
  border-bottom: var(--border);
  border-right: var(--border);
}
.detail-list dt:first-of-type,
.detail-list dd:first-of-type {
    border-top: var(--border);
}

.tx-center { text-align: center;}
.tx-smaller { font-size: 0.8em;}

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

.hidden {
    visibility: hidden;
    height: 0;
}

@media screen and (max-width: 900px) {

    html {
        font-size: 15px;
    }
    .menu-toggle {
        display: flex;
        position: absolute;
        right: 1rem;
        z-index: 99;
    } 
    .menu-toggle--open {
        position: fixed;
    }
    .menu {
        position: fixed;
        height: 0px;
        top: 0;
        left: 0;
        width: 100vw;
        background-color: white;
        padding: 0 1rem;
        overflow: hidden;
        transition: all 0.5s;
    }
    .menu--open {
        height: 100dvh;
    }
    .menu__list {
        padding-top: 5rem;
        flex-direction: column;
        row-gap: 0;
        font-size: 1.5rem;
    }

    .footer__inner {
        flex-direction: column;
    }
    .footer__privacy {
        text-align: left;
    }
}