/*
Theme Name: OLILO
Theme URI: https://github.com/Joonvisby/olilosweet.com
GitHub Theme URI: https://github.com/Joonvisby/olilosweet.com
Primary Branch: main
Author: Fivement
Author URI:
Description: The sweetness worth sharing!
Version: 1.2.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: olilo
*/

/* Fonts */
@font-face {
    font-family: 'TAY Barro';
    src: url('fonts/TAYBarro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TAY Bread Pan';
    src: url('fonts/TAYBreadPan.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
    --white: #FFF;
    --off-white: #F7F3E3;
    --orange: #FB4408;
    --light-orange: #FFBDA5;
    --sky-blue: #BAEBF7;
    --blue: #60BCDC;
    --black: #331807;

    --announcement-height: 40px;
    --header-height: 160px;
    --bottle-base-height: 90vh;
}

@media (max-width: 768px) {
    :root {
        --announcement-height: 34px;
        --header-height: 120px;
        --bottle-base-height: 60vh;
    }
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-size: 28px;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
    body {
        font-size: 18px;
    }
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3 {
    color: var(--orange);
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 900;
    overflow-wrap: break-word;
}

h1 {
    font-size: 100px;
    line-height: 1;
    letter-spacing: -2px;
}

h2 {
    font-size: 70px;
    line-height: 1;
}

h3 {
    font-size: 48px;
    line-height: 1.1;
}
h3.barro {
    font-family: 'TAY Barro', sans-serif;
}

h4 {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    overflow-wrap: break-word;
    font-size: 40px;
    margin-top: 20px;
}
h4.bread-pan {
    font-family: 'TAY Bread Pan', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: -8px;
}
h5 {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
}
h5.barro {
    font-family: 'TAY Barro', sans-serif;
}

@media (max-width: 768px) {
    h1 {
        font-size: 52px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 30px;
    }
    h4, h4.bread-pan {
        font-size: 24px;
        gap: 0 10px;
    }
    h5 {
        font-size: 24px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* Base */

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--off-white);
    font-family: 'Barlow Condensed', sans-serif;
}

.for-mobile {
    display: none;
}

@media (max-width: 768px) {
    .for-mobile {
        display: block;
    }
    .for-desktop {
        display: none;
    }
}

.button-wrapper {
    display: flex;
    margin-top: 60px;
}
.button {
    background-color: var(--off-white);
    color: var(--orange);
    border: 2px solid var(--orange);
    cursor: pointer;
    font-family: 'Overpass Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 40px;
    position: relative;
    top: -2px;
    left: 2px;
    z-index: 2;
    box-shadow: -3px 3px 0 var(--orange);
}
.button:hover {
    transform: translate(-3px, 3px);
    box-shadow: none;
}
.button.small {
    padding: 6px 16px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .button-wrapper {
        margin-top: 30px;
        justify-content: center;
    }
    .button {
        font-size: 14px;
        padding: 6px 16px;
    }
}

.hidden {
    display: none;
}

/* Site Header */

.site-header {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding-top: var(--announcement-height);
    transition: transform 0.3s ease;
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    height: var(--header-height);
    padding: 0 40px;
}
.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header .site-logo img {
    width: 300px;
}

.header-logo {
    transform-origin: center center;
    transition: transform 0.2s ease-out;
}

.hamburger-btn {
    position: absolute;
    right: 20px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--orange);
    color: var(--off-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;

    display: none;
}

.hamburger-btn:hover {
    transform: scale(1.1);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 12px;
    height: 12px;
}

.hamburger-line {
    display: block;
    width: 12px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform 0.25s ease;
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* Full-screen nav overlay */
.site-nav {
    position: fixed;
    inset: 0;
    z-index: 8;
    background-color: var(--orange);
    color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--header-height) 40px 40px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.site-nav[hidden] {
    display: flex;
}

.site-nav.is-open {
    visibility: visible;
    opacity: 1;
}

.site-nav.is-open[hidden] {
    display: flex;
}

.site-nav-inner {
    width: 100%;
    max-width: 800px;
}

.site-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.site-menu .menu-item {
    margin: 0;
}

.site-menu a {
    display: block;
    color: var(--off-white);
    font-family: 'TAY Barro', sans-serif;
    font-size: 60px;
    text-decoration: none;
    transition: color 0.2s ease;
    opacity: 0;
    transform: translateY(16px);
}

.site-nav.is-open .site-menu a {
    animation: nav-fade-up 0.4s ease forwards;
}

.site-nav.is-open .site-menu li:first-child a {
    animation-delay: 0s;
}

.site-nav.is-open .site-menu li:nth-child(2) a {
    animation-delay: 0.05s;
}

.site-nav.is-open .site-menu li:nth-child(3) a {
    animation-delay: 0.1s;
}

.site-nav.is-open .site-menu li:nth-child(4) a {
    animation-delay: 0.15s;
}

.site-nav.is-open .site-menu li:nth-child(5) a {
    animation-delay: 0.2s;
}

.site-nav.is-open .site-menu li:nth-child(6) a {
    animation-delay: 0.25s;
}

@keyframes nav-fade-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .site-header-inner {
        justify-content: center;
    }
    .site-header .site-logo img {
        width: 200px;
    }

    .hamburger-btn {
        right: 20px;
    }

    .site-nav {
        padding: var(--header-height) 20px 20px;
    }

    .site-nav-menu a {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .site-menu a {
        font-size: 40px;
    }
}

.announcement-bar {
    background-color: var(--sky-blue);
    color: var(--orange);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--announcement-height);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.announcement-bar.header-hidden {
    transform: translateY(-100%);
}

.announcement-text {
    position: absolute;
    font-family: 'Overpass Mono', monospace;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.5px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.announcement-text.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .announcement-text {
        font-size: 12px;
        padding: 12px;
        text-align: center;
    }
}

/* Section */

section {
    background-position: top center;
}

.outer-margin {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.inner-margin {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .outer-margin {
        padding: 0 30px;
    }
    .inner-margin {
        padding: 40px 0;
    }
}

.section-title {
    text-align: center;
}

.tick-tock {
    animation: tick-tock 1s steps(1) infinite;
}

/* Home */
/* Hero */

.home .hero {
    background-image: url('images/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--off-white);
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .hero-content {
    display: flex;
    align-items: center;
    padding: var(--header-height) 40px 0;
    width: 100%;
    max-width: 1100px;
}

.home .hero-title h2 {
    color: var(--orange);
    margin-bottom: 40px;
}
.home .hero-title p {
    color: var(--black);
    font-size: 28px;
}
.home .hero-bottle {
    display: flex;
    position: relative;
}
.home .hero-bottle .atropos-inner {
    display: flex;
    overflow: visible;
}
.home .hero-bottle img {
    width: auto;
    height: calc(var(--bottle-base-height) - var(--header-height));
    transform: translateY(-8%);
}
.home .hero-bottle .usage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}
.home .hero-bottle .usage-text {
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    height: calc((var(--bottle-base-height) - var(--header-height)) / 9);
    width: calc((var(--bottle-base-height) - var(--header-height)) / 9 * 3.75);
}
.home .hero-bottle .usage-text.stir-it {
    background-image: url('images/usage-stir-it.png');
}
.home .hero-bottle .usage-text.mix-it {
    background-image: url('images/usage-mix-it.png');
}
.home .hero-bottle .usage-text.bake-it {
    background-image: url('images/usage-bake-it.png');
}
.home .hero-bottle .usage-text.top-it {
    background-image: url('images/usage-top-it.png');
}
.home .hero-bottle .usage-text.sauce-it {
    background-image: url('images/usage-sauce-it.png');
}
.home .hero-bottle .usage-text.cook-it {
    background-image: url('images/usage-cook-it.png');
}
.home .hero-bottle .flow-text {
    position: absolute;
    bottom: 80px;
    left: 0;
}
.home .hero-bottle .flow-text img {
    width: 450px;
    height: auto;
    transform: translateX(-75%);
}

.home .hero-subtitle {
    display: none;
}
.home .hero-subtitle p {
    color: var(--black);
    text-align: center;
}

.home .mobile-button {
    display: none;
}

@media (min-width: 768px) {
    .home .hero-title,
    .home .hero-bottle {
        flex-basis: 50%;
    }
}

@media (max-width: 767px) {
    .home .hero-title {
        text-align: center;
    }
    .home .hero-title .button-wrapper {
        display: none;
    }
    .home .hero-content {
        flex-direction: column;
    }
    .home .hero-bottle {
        transform: translateX(10%);
    }
    .home .hero-bottle .usage {
        padding-left: 0;
    }
    .home .hero-bottle .flow-text {
        bottom: 20px;
    }
    .home .hero-bottle .flow-text img {
        transform: translateX(0);
    }
    .home .mobile-button {
        display: block;
        transform: translateY(20px);
    }
}

.home .features-bar {
    background-color: var(--light-orange);
    background-image: none;
    color: var(--orange);
    overflow: hidden;
    white-space: nowrap;
}
.home .features-bar .features-track {
    display: inline-flex;
    align-items: center;
    animation: scroll-features 30s linear infinite;
    gap: 20px;
}

@keyframes scroll-features {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.home .features-bar .feature-text {
    display: inline-flex;
    align-items: center;
    padding: 16px;
    font-family: 'TAY Barro', sans-serif;
    font-weight: 700;
    font-size: 18px;
}
.home .features-bar .feature-text img {
    width: 34px;
    height: 34px;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .home .features-bar .feature-text {
        font-size: 16px;
        padding: 12px;
    }
}

/* Bridge */

.home .bridge .outer-margin {
    position: relative;
}
.home .bridge .inner-margin {
    z-index: 1;
}
.home .bridge img {
    position: absolute;
    left: 50%;
    z-index: 2;
}


.home .bridge .copy {
    color: var(--orange);
}

@media (max-width: 768px) {
    .home .bridge .copy {
        text-align: center;
    }
    .home .bridge .description {
        margin-top: 20px;
    }
}

.home .choosing-better {
    background-color: var(--sky-blue);
}
.home .choosing-better .outer-margin {
    padding-bottom: 240px;
}
.home .choosing-better .is-it-sugar {
    width: 640px;
    margin-left: calc(-320px - 10vw);
    bottom: 40px;
}
.home .choosing-better .is-it-fiber {
    width: 560px;
    margin-left: calc(-280px + 20vw);
    bottom: -220px;
}
.home .choosing-better .inner-margin {
    position: sticky;
    top: var(--header-height);
}
.home .kitchen-upgrade {
    background: var(--white);
    padding-bottom: 100px;
}
.home .kitchen-upgrade .korean-mom {
    width: 540px;
    margin-left: -140px;
    top: 80px;
}
.home .kitchen-upgrade .korean-heart {
    width: 180px;
    margin-left: -120px;
    top: 420px;
}

@media (max-width: 768px) {
    .home .choosing-better .is-it-sugar {
        width: 280px;
        margin-left: calc(-140px - 15vw);
        bottom: 120px;
    }
    .home .choosing-better .is-it-fiber {
        width: 260px;
        bottom: -110px;
        margin-left: calc(-130px + 20vw);
    }
    .home .kitchen-upgrade {
        padding-top: 300px;
        padding-bottom: 30px;
    }
    .home .kitchen-upgrade .korean-mom {
        width: 320px;
        top: -270px;
        margin-left: -160px;
    }
    .home .kitchen-upgrade .korean-heart {
        width: 90px;
        margin-left: -140px;
        top: -150px;
    }
}

@keyframes tick-tock {
    0%, 50% {
        transform: rotate(1deg);
    }
    50.01%, 100% {
        transform: rotate(-1deg);
    }
}

.home .usage {
    position: relative;
}

.home .usage-bar {
    background-color: var(--sky-blue);
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
    z-index: 9;
    max-width: 90%;
    border: 2px solid var(--orange);
    border-radius: 30px;
}
.home .usage-bar .usage-track {
    display: inline-flex;
    align-items: center;
    animation: scroll-features 30s linear infinite;
}
.home .usage-bar .usage-text {
    display: inline-flex;
    align-items: center;
    padding: 16px;
    font-family: 'Overpass Mono', monospace;
    font-weight: 700;
    font-size: 18px;
    color: var(--orange);
}

@media (min-width: 1024px) {
    .home .usage-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }
    .home .usage-bar .usage-track {
        animation: none;
        display: block;
        text-align: center;
    }
    .home .usage-bar .usage-text {
        display: none;
        justify-content: center;
        padding: 16px 40px;
    }
    .home .usage-bar .usage-text:first-child {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .home .usage-bar .usage-text {
        font-size: 14px;
        padding: 8px;
    }
}

/* Solution */

.home .solution {
    background-color: var(--light-orange);
    color: var(--off-white);
    height: 200vh;
    position: relative;
}
.home .solution .outer-margin {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.home .solution .headline-sticky-wrapper {
    height: 40%;
}
.home .solution .solution-headline {
    color: var(--orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 15vh;
    position: sticky;
    top: 0;
}

.solution-bottle-fixed {
    width: calc(70vh * 0.41);
    height: 70vh;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: 10%;
    z-index: 91;
    transform: translate3d(-50%, -50%, 0) rotate(-20deg);
    visibility: hidden;
    pointer-events: none;
}
.solution-bottle-fixed img {
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.solution-syrup-fixed {
    position: fixed;
    left: 50%;
    transform: translate3d(-50%,20px,0);
    width: 10px;
    background: #FFDC85;
    border-radius: 5px;
    z-index: 90;
    visibility: hidden;
    pointer-events: none;
    margin-left: 10%;
}

.home .solution .features {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 40px;
    position: relative;
    padding-bottom: 300px;
}
.home .solution .features .feature-item {
    text-align: right;
    width: 40%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.home .solution .features .feature-item.is-inview {
    opacity: 1;
    transform: translateY(0);
}
.home .solution .features .feature-item h4 {
    color: var(--orange);
    justify-content: flex-end;
}
.home .solution .features .feature-item p {
    color: var(--black);
    font-size: 18px;
}

.solution-squeeze-fixed {
    position: fixed;
    left: 50%;
    margin-left: 10%;
    transform: translate3d(-50%,0,0);
    width: 120%;
    max-width: 700px;
    z-index: 95;
    pointer-events: none;
    visibility: hidden;
    aspect-ratio: 1 / 1;
    background-size: 600% 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .home .solution .features {
        gap: 16px;
    }
    .home .solution .features .feature-item {
        width: 50%;
    }
    .solution-syrup-fixed {
        width: 8px;
    }
    .solution-squeeze-fixed {
        transform: translate3d(-50%,30px,0);
    }
}

/* Logic */

.home .logic {
    background-color: var(--blue);
    background-image: none;
}
.home .logic .inner-margin {
    position: relative;
}

.home .logic .section-title {
    margin-bottom: 40px;
}
.home .logic .section-title h2 {
    color: var(--off-white);
}
.home .logic .compare-chart {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}
.home .logic .compare-chart img {
    width: 100%;
    height: auto;
}
.home .logic .side-art {
    width: 300px;
    height: auto;
    position: absolute;
    left: -200px;
    bottom: 30px;
}
.home .logic .side-copy {
    width: 180px;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 60px;
}

@media (min-width: 769px) {
    .home .logic .outer-margin {
        display: flex;
        max-width: 100%;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home .logic .outer-margin {
        padding: 0 12px;
    }
    .home .logic .inner-margin {
        padding-bottom: 80px !important;
    }
    .home .logic .side-art {
        display: none;
    }
    .home .logic .side-copy {
        width: 140px;
        bottom: 40px;
    }
}

/* Origin */

.home .origin {
    background-color: var(--off-white);
}

.home .origin .section-title {
    color: var(--orange);
}
.home .origin .section-title h2 {
    margin: 8px 0 4px;
}
.home .origin .origin-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home .origin .origin-content .description {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}
.home .origin .origin-content .image {
    position: relative;
    max-width: 540px;
}
.home .origin .origin-content .image img {
    position: relative;
    z-index: 2;
}
.home .origin .origin-content p + p {
    margin-top: 20px;
}
.home .origin .button-wrapper {
    justify-content: center;
}

/* FAQ */

.home .divider {
    height: 70px;
    background-color: #fff;
    background-image: url('images/checker-divider.png');
    background-size: contain;
}

.home .faq {
    background-color: #fff;
    background-image: url('images/speckles-orange.png');
}
.home .faq .inner-margin {
    padding: 60px 0;
}

.home .faq .section-title {
    color: var(--orange);
}

.home .faq .faq-list {
    max-width: 720px;
    margin: 40px auto 0;
}

.home .faq .faq-accordion-item {
    border-bottom: 1px dashed var(--black);
}

.home .faq .faq-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--black);
    transition: color 0.2s ease;
}

.home .faq .faq-accordion-trigger[aria-expanded="true"] {
    color: var(--orange);
}

.home .faq .faq-accordion-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
}
.home .faq .faq-accordion-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: 16px;
    color: var(--black);
    transition: color 0.2s ease, transform 0.25s ease;
}

.home .faq .faq-accordion-icon svg {
    display: block;
}

.home .faq .faq-accordion-trigger[aria-expanded="true"] .faq-accordion-icon {
    color: var(--orange);
    transform: scaleY(-1);
}

.home .faq .faq-accordion-content {
    overflow: hidden;
}

.home .faq .faq-accordion-content[hidden] {
    display: none;
}

.home .faq .faq-accordion-inner {
    font-size: 22px;
    line-height: 1.3;
    color: var(--black);
    padding-bottom: 40px;
}

.home .faq .faq-accordion-inner p:first-child {
    margin-top: 0;
}

.home .faq .faq-accordion-inner p:last-child {
    margin-bottom: 0;
}

.home .faq .button-wrapper {
    justify-content: center;
}

@media (max-width: 768px) {
    .home .faq .faq-accordion-inner p {
        font-size: 16px;
    }
}

/* FAQ archive page (/faq/) — separate from .home .faq */


.faq-archive .inner-margin {
    padding: 280px 0 120px;
}

@media (max-width: 768px) {
    .faq-archive .inner-margin {
        padding: 200px 0 80px;
    }
}

.faq-archive .section-title {
    color: var(--orange);
    text-align: left;
}

.faq-archive .section-title h1 {
    font-size: 70px;
    line-height: 1;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .faq-archive .section-title h1 {
        font-size: 40px;
        letter-spacing: -0.5px;
    }
}

.faq-archive .faq-list {
    margin: 40px auto 0;
}

.faq-archive .faq-accordion-item {
    border-bottom: 1px dashed var(--black);
}

.faq-archive .faq-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--black);
    transition: color 0.2s ease;
}

.faq-archive .faq-accordion-trigger[aria-expanded="true"] {
    color: var(--orange);
}

.faq-archive .faq-accordion-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
}

.faq-archive .faq-accordion-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: 16px;
    color: var(--black);
    transition: color 0.2s ease, transform 0.25s ease;
}

.faq-archive .faq-accordion-icon svg {
    display: block;
}

.faq-archive .faq-accordion-trigger[aria-expanded="true"] .faq-accordion-icon {
    color: var(--orange);
    transform: scaleY(-1);
}

.faq-archive .faq-accordion-content {
    overflow: hidden;
}

.faq-archive .faq-accordion-content[hidden] {
    display: none;
}

.faq-archive .faq-accordion-inner {
    font-size: 22px;
    line-height: 1.3;
    color: var(--black);
    padding-bottom: 40px;
}

.faq-archive .faq-accordion-inner p:first-child {
    margin-top: 0;
}

.faq-archive .faq-accordion-inner p:last-child {
    margin-bottom: 0;
}

.faq-archive-empty {
    text-align: center;
    font-family: 'Barlow Semi Condensed', sans-serif;
    color: var(--black);
    margin-top: 24px;
}

@media (max-width: 768px) {
    .faq-archive .faq-accordion-inner p {
        font-size: 16px;
    }
}

/* OLILOG */

.home .olilog {
    background-color: var(--sky-blue);
}
.home .olilog .section-title {
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}
.home .olilog .section-title img {
    width: 300px;
}

.home .olilog .olilog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 80px;
}
.home .olilog .olilog-list .olilog-item {
    flex-basis: 32%;
}
.home .olilog .olilog-list .olilog-item .olilog-thumb {
    width: 100%;
    height: 0;
    padding-top: 74%;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 20px;
}
.home .olilog .olilog-list .olilog-item .olilog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}
.home .olilog .olilog-list .olilog-item .olilog-thumb:hover img {
    transform: scale(1.03);
}
.home .olilog .olilog-list .olilog-item .olilog-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
}
.home .olilog .olilog-list .olilog-item .olilog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}
.home .olilog .olilog-list .olilog-item .olilog-category {
    font-family: 'Overpass Mono', monospace;
    font-size: 14px;
    color: var(--orange);
    text-transform: uppercase;
}
.home .olilog .olilog-list .olilog-item .olilog-read {
    margin: 0;
    display: none;
}

.home .olilog .button-wrapper {
    justify-content: center;
}

@media (max-width: 768px) {
    .home .olilog .section-title {
        flex-direction: column;
        gap: 0;
    }
    .home .olilog .section-title img {
        width: 240px;
        margin-top: 20px;
    }
    .home .olilog .olilog-list {
        margin-top: 40px;
    }
    .home .olilog .olilog-list .olilog-item {
        flex-basis: 100%;
    }
    .home .olilog .olilog-list .olilog-item .olilog-meta {
        margin-top: 8px;
    }
}

.home .sign-up {
    background-color: var(--white);
    background-image: url('images/speckles-orange.png');
    text-align: center;
    padding: 80px;
}
.home .sign-up h3 {
    color: var(--orange);
}

@media (max-width: 768px) {
    .home .sign-up {
        padding: 40px;
    }
    .home .sign-up h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
}

/* Site Footer */

.site-footer {
    background-color: var(--off-white);
    background-position: top center;
    padding: 120px 0;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0;
    }
}

.site-footer .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.site-footer .footer-logo {
    flex-basis: 50%;
}
.site-footer .footer-logo img {
    width: 100%;
    height: auto;
}

.site-footer .footer-nav {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    gap: 40px;
}

.site-footer .footer-nav .social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}
.site-footer .footer-nav .social-link {
    background-size: contain;
    width: 40px;
    height: 40px;
}
.site-footer .footer-nav .social-link.instagram {
    background-image: url('images/icon-instagram.svg');
}
.site-footer .footer-nav .social-link.tiktok {
    background-image: url('images/icon-tiktok.svg');
}

@media (max-width: 768px) {
    .site-footer .footer-nav .social-links {
        margin-top: 12px;
    }
    .site-footer .footer-nav .social-link {
        width: 28px;
        height: 28px;
    }
}

.site-footer #footer-menu {
    display: flex;
    justify-content: space-between;
    color: var(--orange);
}
.site-footer #footer-menu > .menu-item > a,
.site-footer #footer-menu > .menu-item > .footer-menu-item-row > a {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
}
.site-footer #footer-menu .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 40px;
}

.site-footer #footer-menu .footer-menu-accordion-trigger {
    display: none;
}

@media (min-width: 769px) {
    .site-footer #footer-menu .menu-item-has-children > .sub-menu {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .site-footer .footer-top {
        flex-direction: column-reverse;
    }
    .site-footer .footer-logo,
    .site-footer .footer-nav {
        flex-basis: 100%;
        width: 100%;
    }
    .site-footer .footer-nav {
        flex-direction: column-reverse;
        gap: 0;
    }

    .site-footer #footer-menu {
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
    }

    .site-footer #footer-menu > .menu-item {
        width: 100%;
        border-bottom: 1px dotted var(--black);
    }

    .site-footer #footer-menu > .menu-item:last-child {
        border-bottom: none;
    }

    .site-footer #footer-menu > .menu-item:not(.menu-item-has-children) > a {
        display: block;
        padding: 16px 0;
    }

    .site-footer #footer-menu .footer-menu-item-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .site-footer #footer-menu .footer-menu-item-row > a {
        flex: 1;
        min-width: 0;
        padding: 12px 0;
    }

    .site-footer #footer-menu .footer-menu-accordion-trigger {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: none;
        cursor: pointer;
        color: var(--black);
        transition: color 0.2s ease;
    }

    .site-footer #footer-menu .footer-menu-accordion-trigger[aria-expanded="true"] {
        color: var(--orange);
    }

    .site-footer #footer-menu .footer-menu-accordion-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.25s ease;
    }

    .site-footer #footer-menu .footer-menu-accordion-trigger[aria-expanded="true"] .footer-menu-accordion-icon {
        transform: scaleY(-1);
    }

    .site-footer #footer-menu .footer-menu-accordion-icon svg {
        display: block;
    }

    .site-footer #footer-menu .menu-item-has-children > .sub-menu {
        display: none;
        margin-top: 0;
        gap: 8px;
        color: var(--black);
        padding-bottom: 20px;
    }

    .site-footer #footer-menu .menu-item-has-children.is-open > .sub-menu {
        display: flex;
    }
}

.site-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 80px;
}

.site-footer .copyright {
    font-family: 'Overpass Mono', monospace;
    font-size: 14px;
    color: var(--black);
}
.site-footer .legal-menu {
    background-position: top center;
}
.site-footer .legal-menu .menu {
    color: var(--orange);
    display: flex;
    flex-wrap: wrap;
    font-family: 'Overpass Mono', monospace;
    font-size: 14px;
    gap: 4px 40px;
}

@media (max-width: 768px) {
    .site-footer .footer-bottom {
        padding-top: 20px;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
    }
    .site-footer .copyright {
        font-size: 10px;
    }
    .site-footer .legal-menu .menu {
        font-size: 12px;
        flex-direction: column;
        gap: 4px;
    }
}

/* Singular: single posts & pages (uses .outer-margin + .inner-margin like the rest of the site) */

.entry-article .inner-margin {
    padding-top: 320px;
}

@media (max-width: 768px) {
    .entry-article .inner-margin {
        padding-top: 200px;
    }
}

.entry-article .post-thumbnail {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.entry-article .post-thumbnail img {
    width: 100%;
    height: auto;
}

.entry-article .entry-title {
    font-size: 70px;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .entry-article .entry-title {
        font-size: 40px;
        letter-spacing: -0.5px;
    }
}

.entry-article .entry-meta {
    font-family: 'Overpass Mono', monospace;
    font-size: 14px;
    color: var(--black);
    opacity: 0.85;
    margin-bottom: 48px;
}

.entry-article .entry-meta .meta-sep {
    margin: 0 0.35em;
}

.entry-article .entry-meta a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.entry-article .entry-content {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 22px;
    line-height: 1.45;
    color: var(--black);
}

@media (max-width: 768px) {
    .entry-article .entry-content {
        font-size: 18px;
    }
}

.entry-article .entry-content > * + * {
    margin-top: 1em;
}

.entry-article .entry-content h2,
.entry-article .entry-content h3,
.entry-article .entry-content h4 {
    margin-top: 1.25em;
    margin-bottom: 0.5em;
}

.entry-article .entry-content h2 {
    font-size: 48px;
}

.entry-article .entry-content h3 {
    font-size: 36px;
}

.entry-article .entry-content h4 {
    font-size: 28px;
    margin-top: 1em;
}

@media (max-width: 768px) {
    .entry-article .entry-content h2 {
        font-size: 32px;
    }
    .entry-article .entry-content h3 {
        font-size: 26px;
    }
    .entry-article .entry-content h4 {
        font-size: 22px;
    }
}

.entry-article .entry-content a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.entry-article .entry-content ul,
.entry-article .entry-content ol {
    list-style: disc;
    padding-left: 1.25em;
}

.entry-article .entry-content ol {
    list-style: decimal;
}

.entry-article .entry-content blockquote {
    border-left: 4px solid var(--light-orange);
    margin: 1.25em 0;
    padding-left: 1em;
    font-style: italic;
}

.entry-article .entry-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(51, 24, 7, 0.15);
    font-family: 'Overpass Mono', monospace;
    font-size: 14px;
}

.entry-article .tag-links a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.singular-post-nav {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .singular-post-nav {
        padding-bottom: 48px;
    }
}

.post-navigation {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
    font-family: 'Overpass Mono', monospace;
    font-size: 14px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    min-width: 0;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation a {
    display: block;
    color: var(--black);
}

.post-navigation .nav-label {
    display: block;
    color: var(--orange);
    margin-bottom: 6px;
}

.post-navigation .nav-title {
    display: block;
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .post-navigation {
        grid-template-columns: 1fr;
    }
    .post-navigation .nav-next {
        text-align: left;
    }
}

.entry-article .page-links {
    margin-top: 2em;
    font-family: 'Overpass Mono', monospace;
    font-size: 14px;
}

.entry-article .page-links-title {
    margin-right: 0.5em;
}

.entry-article .page-links a {
    margin: 0 0.25em;
}

/* OLILOG archive page (/olilog) — separate from .home .olilog */

.olilog-archive .inner-margin {
    padding-top: 280px;
}

@media (max-width: 768px) {
    .olilog-archive .inner-margin {
        padding-top: 200px;
    }
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.olilog-filter-bar {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.olilog-category-filter {
    background-color: var(--light-orange);
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Overpass Mono', monospace;
    font-size: 14px;
    text-transform: uppercase;
    padding: 14px 24px;
    flex: 1;
    border-radius: 40px;
}

.olilog-search-form {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    max-width: 240px;
    position: relative;
}

.olilog-search-input {
    flex: 1 1 auto;
    min-width: 0;
    font-family: 'Overpass Mono', monospace;
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    border: 2px solid var(--orange);
    border-radius: 40px;
    padding: 11px 20px;
    outline: none;
}

.olilog-search-input::placeholder {
    color: var(--black);
    opacity: 0.45;
}

.olilog-search-input:focus {
    box-shadow: 0 0 0 2px rgba(251, 68, 8, 0.2);
}

.olilog-search-submit {
    display: none;
}

@media (max-width: 768px) {
    .olilog-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .olilog-search-form {
        max-width: none;
        justify-content: stretch;
    }

    .olilog-search-input {
        font-size: 16px;
    }
}

.olilog-category-filter a {
    color: var(--orange);
    position: relative;
}

.olilog-category-filter a.is-active {
    padding-left: 10px;
}
.olilog-category-filter a.is-active::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--orange);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -1px;
}

.olilog-archive .olilog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}

.olilog-archive .olilog-list .olilog-item {
    flex-basis: 32%;
}

.olilog-archive .olilog-list .olilog-item .olilog-thumb {
    width: 100%;
    height: 0;
    padding-top: 74%;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 20px;
}

.olilog-archive .olilog-list .olilog-item .olilog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

.olilog-archive .olilog-list .olilog-item .olilog-thumb:hover img {
    transform: scale(1.03);
}

.olilog-archive .olilog-list .olilog-item .olilog-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
}

.olilog-archive .olilog-list .olilog-item .olilog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.olilog-archive .olilog-list .olilog-item .olilog-category {
    font-family: 'Overpass Mono', monospace;
    font-size: 14px;
    color: var(--orange);
    text-transform: uppercase;
}

.olilog-archive .olilog-list .olilog-item .olilog-read {
    margin: 0;
}

.olilog-empty {
    flex-basis: 100%;
    text-align: center;
    font-family: 'Barlow Semi Condensed', sans-serif;
    color: var(--black);
    margin-top: 40px;
}

.olilog-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.olilog-pagination .page-numbers {
    font-family: 'Overpass Mono', monospace;
    font-size: 14px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.olilog-pagination .page-numbers li {
    margin: 0;
}

.olilog-pagination .page-numbers a,
.olilog-pagination .page-numbers span {
    color: var(--black);
    opacity: 0.7;
}

.olilog-pagination .page-numbers a:hover,
.olilog-pagination .page-numbers .current {
    color: var(--orange);
    opacity: 1;
}

@media (max-width: 768px) {
    .olilog-archive .section-title {
        flex-direction: column;
        gap: 0;
    }

    .olilog-archive .section-title img {
        width: 240px;
        margin-top: 20px;
    }

    .olilog-archive .section-title h1 {
        font-size: 40px;
    }

    .olilog-archive .olilog-list {
        margin-top: 40px;
    }

    .olilog-archive .olilog-list .olilog-item {
        flex-basis: 100%;
    }

    .olilog-archive .olilog-list .olilog-item .olilog-meta {
        margin-top: 0;
    }
}