/* WOEF! global foundation */

@font-face {
    font-family: "Marvin";
    src: url("../fonts/marvin.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --woef-color-primary: #f1c6c9;
    --woef-color-text: #5e4f4f;
    --woef-color-accent: #ae656f;
    --woef-color-soft: #fff3f1;

    --woef-font-heading: "Marvin", "Cooper Black", "Arial Black", fantasy;
    --woef-font-body: "Montserrat", Arial, sans-serif;

    --woef-container-width: 1180px;
    --woef-container-narrow: 860px;
    --woef-gutter: clamp(20px, 5vw, 48px);

    --woef-space-xs: 8px;
    --woef-space-sm: 12px;
    --woef-space-md: 20px;
    --woef-space-lg: 32px;
    --woef-space-xl: 48px;
    --woef-space-2xl: 72px;

    --woef-radius-sm: 6px;
    --woef-radius-md: 8px;
    --woef-shadow-soft: 0 14px 36px rgba(94, 79, 79, 0.1);
    --woef-transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--woef-color-soft);
    color: var(--woef-color-text);
    font-family: var(--woef-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
}

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

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

a {
    color: var(--woef-color-accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
    transition: color var(--woef-transition), opacity var(--woef-transition);
}

a:hover,
a:focus {
    color: var(--woef-color-text);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--woef-color-text);
    font-family: var(--woef-font-heading);
    font-weight: 400;
    line-height: 1.08;
}

h1 {
    margin-bottom: var(--woef-space-md);
    font-size: 2.5rem;
}

h2 {
    margin-bottom: var(--woef-space-md);
    font-size: 2rem;
}

h3 {
    margin-bottom: var(--woef-space-sm);
    font-size: 1.6rem;
}

h4,
h5,
h6 {
    color: var(--woef-color-text);
    font-family: var(--woef-font-body);
    font-weight: 700;
    line-height: 1.3;
}

h4 {
    margin-bottom: var(--woef-space-sm);
    font-size: 1.25rem;
}

h5,
h6 {
    margin-bottom: var(--woef-space-xs);
    font-size: 1rem;
}

p,
ul,
ol {
    margin-bottom: var(--woef-space-md);
}

ul,
ol {
    padding-left: 1.25rem;
}

li + li {
    margin-top: 0.35em;
}

strong,
b {
    font-weight: 700;
}

small {
    font-size: 0.875rem;
}

.woef-container,
.woef-container-narrow {
    width: min(100% - (var(--woef-gutter) * 2), var(--woef-container-width));
    margin-right: auto;
    margin-left: auto;
}

.woef-container-narrow {
    max-width: var(--woef-container-narrow);
}

.woef-section {
    padding-top: var(--woef-space-xl);
    padding-bottom: var(--woef-space-xl);
}

.woef-section-soft {
    background: var(--woef-color-soft);
}

.woef-stack-xs > * + * {
    margin-top: var(--woef-space-xs);
}

.woef-stack-sm > * + * {
    margin-top: var(--woef-space-sm);
}

.woef-stack-md > * + * {
    margin-top: var(--woef-space-md);
}

.woef-stack-lg > * + * {
    margin-top: var(--woef-space-lg);
}

.woef-grid {
    display: grid;
    gap: var(--woef-space-md);
}

.woef-grid-2,
.woef-grid-3 {
    grid-template-columns: 1fr;
}

.woef-text-center {
    text-align: center;
}

.woef-text-accent {
    color: var(--woef-color-accent);
}

.woef-lead {
    color: var(--woef-color-text);
    font-size: 1.08rem;
    line-height: 1.75;
}

.woef-button,
.et_pb_button.woef-button,
body #page-container .et_pb_button.woef-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border: 1px solid var(--woef-color-accent);
    border-radius: var(--woef-radius-sm);
    background: var(--woef-color-accent);
    color: var(--woef-color-soft);
    font-family: var(--woef-font-body);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color var(--woef-transition), border-color var(--woef-transition), color var(--woef-transition), transform var(--woef-transition), box-shadow var(--woef-transition);
}

.woef-button:hover,
.woef-button:focus,
.et_pb_button.woef-button:hover,
.et_pb_button.woef-button:focus,
body #page-container .et_pb_button.woef-button:hover,
body #page-container .et_pb_button.woef-button:focus {
    border-color: var(--woef-color-text);
    background: var(--woef-color-text);
    color: var(--woef-color-soft);
    transform: translateY(-1px);
    box-shadow: var(--woef-shadow-soft);
}

.woef-button-secondary,
.et_pb_button.woef-button-secondary,
body #page-container .et_pb_button.woef-button-secondary {
    border-color: var(--woef-color-primary);
    background: var(--woef-color-primary);
    color: var(--woef-color-text);
}

.woef-button-secondary:hover,
.woef-button-secondary:focus,
.et_pb_button.woef-button-secondary:hover,
.et_pb_button.woef-button-secondary:focus,
body #page-container .et_pb_button.woef-button-secondary:hover,
body #page-container .et_pb_button.woef-button-secondary:focus {
    border-color: var(--woef-color-accent);
    background: var(--woef-color-accent);
    color: var(--woef-color-soft);
}

.woef-button-outline,
.et_pb_button.woef-button-outline,
body #page-container .et_pb_button.woef-button-outline {
    background: transparent;
    color: var(--woef-color-accent);
}

.woef-button-outline:hover,
.woef-button-outline:focus,
.et_pb_button.woef-button-outline:hover,
.et_pb_button.woef-button-outline:focus,
body #page-container .et_pb_button.woef-button-outline:hover,
body #page-container .et_pb_button.woef-button-outline:focus {
    background: var(--woef-color-accent);
    color: var(--woef-color-soft);
}

.woef-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--woef-space-sm);
    align-items: center;
}

@media (min-width: 700px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 4.25rem;
    }

    h2 {
        font-size: 3.1rem;
    }

    h3 {
        font-size: 2.25rem;
    }

    .woef-section {
        padding-top: var(--woef-space-2xl);
        padding-bottom: var(--woef-space-2xl);
    }

    .woef-grid {
        gap: var(--woef-space-lg);
    }

    .woef-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .woef-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .woef-lead {
        font-size: 1.18rem;
    }
}

@media (min-width: 1100px) {
    h1 {
        font-size: 4.75rem;
    }

    h2 {
        font-size: 3.6rem;
    }

    h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --woef-gutter: 18px;
    }

    .woef-button,
    .et_pb_button.woef-button,
    body #page-container .et_pb_button.woef-button {
        width: 100%;
        min-height: 46px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .woef-button-group {
        align-items: stretch;
    }
}
