/* Public Site — Layout: Header, Navbar, Footer */

/* ── Header ── */
.site-top {
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header {
    background: var(--bg);
}
.site-header__inner {
    display: grid;
    grid-template-columns: 2.5rem 1fr 2.5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
}
.site-header__brand {
    grid-column: 2;
    justify-self: center;
    text-decoration: none;
    color: inherit;
}
.site-header__menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
}
.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}
.hamburger-icon {
    position: relative;
}
.hamburger-icon::before,
.hamburger-icon::after {
    content: "";
    position: absolute;
    left: 0;
}
.hamburger-icon::before {
    top: -7px;
}
.hamburger-icon::after {
    top: 7px;
}
.site-header__menu-toggle[aria-expanded="true"] .hamburger-icon {
    background: transparent;
}
.site-header__menu-toggle[aria-expanded="true"] .hamburger-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.site-header__menu-toggle[aria-expanded="true"] .hamburger-icon::after {
    top: 0;
    transform: rotate(-45deg);
}
@media (min-width: 768px) {
    .site-header__menu-toggle {
        display: none;
    }
}

/* ── Navbar ── */
.navbar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}
.navbar.is-open {
    max-height: 500px;
}
.navbar__list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.navbar__item {
    margin: 0;
}
.navbar__link {
    display: block;
    padding: 0.75rem 0;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: sofia-pro, sans-serif;
    letter-spacing: 0.03em;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.15s ease;
}
.navbar__item:last-child .navbar__link {
    border-bottom: none;
}
.navbar__link:hover,
.navbar__link:focus {
    color: var(--text-tertiary);
}
@media (min-width: 768px) {
    .navbar {
        max-height: none;
        overflow: visible;
        border-bottom: 1px solid var(--border);
    }
    .navbar__list {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
    .navbar__link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        border-bottom: 2px solid transparent;
    }
    .navbar__item:last-child .navbar__link {
        border-bottom: 2px solid transparent;
    }
    .navbar__link:hover,
    .navbar__link:focus {
        border-bottom-color: var(--text);
        color: var(--text);
    }
}

/* ── Footer ── */
.site-footer {
    margin-top: 4rem;
    background: var(--bg-subtle);
    color: var(--text);
    border-top: 1px solid var(--border-light);
    font-family: sofia-pro, sans-serif;
}
.site-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem 3rem;
}
.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.site-footer__logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: sofia-pro, sans-serif;
}
.site-footer__logo-label {
    font-size: 0.6rem;
    font-weight: 400;
    opacity: 0.5;
}
.site-footer__logo-title {
    font-size: 1rem;
    font-weight: 700;
}
.site-footer__tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 260px;
}
.site-footer__buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}
.site-footer__btn {
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.15s;
}
.site-footer__btn:hover {
    opacity: 0.85;
}
.site-footer__btn--primary {
    background: #c8a44e;
    color: #111;
    border: none;
}
.site-footer__btn--outline {
    background: none;
    color: var(--text);
    border: 1px solid var(--border-subtle);
}
.site-footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.site-footer__col-heading {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 0.25rem;
}
.site-footer__link {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.15s;
}
.site-footer__link:hover {
    color: var(--text);
}
.site-footer__founder-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.site-footer__bar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
}
.site-footer__copy {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .site-footer__inner {
        grid-template-columns: 1.4fr repeat(4, 1fr);
        gap: 0 3rem;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
    }
    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

/* ── Wishlist / Influencer / Flist Badge ── */
.wishlist-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: sofia-pro, sans-serif;
}
.wishlist-badge__label {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.7;
}
.wishlist-badge__title {
    font-size: 0.85rem;
    font-weight: 700;
}

/* ── Hero Editor Note ── */
.editor-note {
    width: 100%;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 1.25rem;
    text-align: center;
}
.editor-note__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
    font-family: sofia-pro, sans-serif;
}
.editor-note__body {
    max-width: 620px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-family: sofia-pro, sans-serif;
}
.editor-note__body em {
    font-style: italic;
}
@media (min-width: 768px) {
    .editor-note {
        padding: 2rem 2rem;
    }
    .editor-note__body {
        font-size: 1.05rem;
    }
}
