/* =========================================
	 base.css - minimal reset & base style
	 ========================================= */
/* ---- Reset / Normalize ---- */
html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
	margin-top: 0 !important;
}
*, *::before, *::after {
    box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd {
    margin: 0;
    padding: 0;
}
ul, ol {
    list-style: none;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}
button, input, select, textarea {
    font: inherit;
    border: none;
    background: transparent;
}
a {
    color: inherit;
    text-decoration: none;
	transition: opacity 0.3s ease;
}
a:hover{
	opacity: 0.7;
}
/* ---- Base Typography ---- */
body {
    font-family: "Noto Sans", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
	font-weight: 300;
    line-height: 1.6;
    color: #666;
    background: #fff;
}
/* ---- Root Variables ---- */ :root {
    --main-color: #694133;
    --text-color: #666;
    --bg-gradation: radial-gradient(circle, #714B33, #411A0D);
    --bg-brown: #552E20;
    --white: #fff;
	--main-text-weight: 500;
	--container-max: 1200px;
}
/* ---- Container ---- */
.container {
    width: 100%;
    margin: 0 auto;
	position: relative;
	top: 100px;
}
/* ---- Utility ---- */
.hidden {
    display: none !important;
}
.text-center {
    text-align: center;
}
/* ---- Fonts ---- */
.playfair-display-<uniquifier > {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
.libre-bodoni-<uniquifier > {
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
.noto-sans-<uniquifier > {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
        "wdth"100;
}