:root {
    --bg: #fbf9f4;
    --surface: #f5f3ee;
    --surface-card: #f0eee9;
    --text: #1b1c19;
    --text-soft: #504442;
    --primary: #7b554e;
    --primary-soft: #e5b5ac;
    --secondary: #5f5f50;
    --border-soft: #d5c3bf;
}

html {
    overflow-x: hidden;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

::selection {
    background: rgba(229, 181, 172, 0.55);
    color: #4a2c27;
}

h1,
h2,
h3,
.brand-wordmark {
    font-family: "Playfair Display", serif;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    font-size: 22px;
    vertical-align: middle;
    line-height: 1;
}

@font-face {
    font-family: "inspiro-icons";
    src: url("../webfonts/inspiro-icons.ttf?ijzgpf") format("truetype"), url("../webfonts/inspiro-icons.woff?ijzgpf") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

i[class^="icon-"] {
    font-family: inspiro-icons !important;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
    content: "\e961";
}

.icon-instagram:before {
    content: "\e984";
}

.top-nav {
    max-width: 1280px;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(251, 249, 244, 0.68);
    border-radius: 0 0 18px 18px;
    border: 1px solid rgba(213, 195, 191, 0.25);
}

.brand-wordmark {
    color: var(--primary);
    letter-spacing: 0.01em;
    font-size: 1.95rem;
    line-height: 1;
}

.navbar .nav-link {
    color: var(--text-soft);
    font-size: 0.98rem;
    position: relative;
    transition: color 0.28s ease, letter-spacing 0.28s ease;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

    .navbar .nav-link:hover,
    .navbar .nav-link:focus {
        color: var(--primary);
        letter-spacing: 0.04em;
    }

    .navbar .nav-link:hover::after,
    .navbar .nav-link:focus::after {
        transform: scaleX(1);
    }


.social-links a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 1.18rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    transition: color 0.25s ease, transform 0.25s ease;
}

    .social-links a:hover,
    .social-links a:focus {
        color: var(--primary);
        transform: scale(1.2);
    }

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.32s ease, opacity 0.22s ease;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.hero {
    min-height: 72vh;
    max-width: 1280px;
    margin-top: 8rem;
    margin-bottom: 6rem;
}

.hero-media {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(229, 181, 172, 0.2);
    position: absolute;
    inset: 0;
}

    .hero-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 28, 25, 0.45), transparent 45%);
}

.hero-card {
    max-width: 760px;
    background: rgba(251, 249, 244, 0.6);
    border: 1px solid rgba(213, 195, 191, 0.4);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    box-shadow: 0 8px 30px rgba(123, 85, 78, 0.08);
}

.hero-title {
    color: var(--primary);
    font-size: clamp(2.2rem, 4.2vw, 3.1rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.05rem;
}

.hero-lead {
    color: var(--text-soft);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.62;
    max-width: 640px;
    margin: 0 auto .5rem;
}

.soft-section {
    max-width: 1280px;
}

.label-pill {
    display: inline-block;
    background: var(--surface);
    color: var(--primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 500;
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
}

.journal-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(229, 181, 172, 0.14);
    position: relative;
    cursor: pointer;
}

    .journal-card img,
    .journal-small-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
    }

.brand-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.7s ease;
}

.journal-card:hover img,
.journal-small-image:hover img {
    transform: scale(1.05);
}

.journal-gradient {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(240, 238, 233, 0.9), transparent 70%);
    padding: 1.3rem;
}

.journal-small {
    border-radius: 1rem;
    background: rgba(240, 238, 233, 0.6);
    transition: background-color 0.3s ease;
    box-shadow: 0 5px 15px -5px rgba(229, 181, 172, 0.12);
}

    .journal-small:hover {
        background: var(--surface-card);
    }

.journal-small-image {
    min-height: 260px;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px -5px rgba(229, 181, 172, 0.12);
    cursor: pointer;
}

.journal-small-overlay {
    position: absolute;
    inset: 0;
    background: rgba(229, 181, 172, 0.2);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transition: -webkit-backdrop-filter 0.4s ease, backdrop-filter 0.4s ease;
}

.journal-small-image:hover .journal-small-overlay {
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
}

.brand-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 15px 15px 40px -15px rgba(229, 181, 172, 0.24);
}

.brand-image-alt {
    box-shadow: -15px 15px 40px -15px rgba(229, 181, 172, 0.24);
}

.decor-orb {
    position: absolute;
    border-radius: 999px;
    z-index: -1;
    filter: blur(42px);
}

.decor-orb-primary {
    width: 8rem;
    height: 8rem;
    right: -1.5rem;
    bottom: -1.5rem;
    background: rgba(229, 181, 172, 0.4);
}

.decor-orb-secondary {
    width: 10rem;
    height: 10rem;
    left: -1.5rem;
    top: -1.5rem;
    background: rgba(228, 228, 207, 0.55);
}

.btn-soft {
    background: var(--primary-soft);
    color: #69453f;
    border-radius: 999px;
    padding: 0.85rem 1.6rem;
    font-size: 0.87rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 0;
    font-weight: 500;
}

    .btn-soft:hover {
        background: #dfada3;
        color: #5c3b35;
    }

.link-line {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary);
    border-bottom: 1px solid rgba(123, 85, 78, 0.35);
    text-decoration: none;
    padding-bottom: 0.15rem;
}

    .link-line:hover {
        border-bottom-color: var(--primary);
        color: var(--primary);
    }

.footer-wrap {
    border-top: 1px solid rgba(213, 195, 191, 0.4);
    background: var(--surface);
}

.footer-wrap a.small-muted {
    position: relative;
    transition: color 0.25s ease;
}

.footer-wrap a.small-muted::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.footer-wrap a.small-muted:hover,
.footer-wrap a.small-muted:focus {
    color: var(--primary);
    opacity: 1;
}

.footer-wrap a.small-muted:hover::after,
.footer-wrap a.small-muted:focus::after {
    transform: scaleX(1);
}

.small-muted {
    color: var(--text-soft);
    opacity: 0.78;
}

.section-space {
    margin-bottom: 8rem;
}

.brand-logo {
    max-width: 90%;
    margin-bottom: 2rem;
}

.brand-text {
}

@media (max-width: 991.98px) {
    .top-nav {
        border-radius: 0;
    }

    .hero {
        min-height: 600px;
        margin-top: 6.5rem;
    }

    .hero-card h1 {
        font-size: 2.35rem;
    }

    .section-space {
        margin-bottom: 5.5rem;
    }

    .brand-image,
    .brand-image-alt {
        min-height: 380px;
    }
}

.event-card {
    border-radius: 1rem;
    background: var(--surface-card);
    border: 1px solid rgba(213, 195, 191, 0.45);
    padding: 1.5rem 1.75rem;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

    .event-card:hover {
        box-shadow: 0 14px 34px -10px rgba(229, 181, 172, 0.32);
        transform: translateY(-3px);
    }

    .event-card h5 {
        font-family: "Playfair Display", serif;
        font-size: 1.1rem;
        color: var(--text);
    }

.event-date-badge {
    display: inline-block;
    background: rgba(229, 181, 172, 0.28);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    letter-spacing: 0.03em;
}

.event-brand-tag {
    display: inline-block;
    background: rgba(229, 181, 172, 0.18);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 500;
    border-radius: 999px;
    padding: 0.22rem 0.7rem;
}

.contact-card {
    background: var(--surface-card);
    border: 1px solid rgba(213, 195, 191, 0.45);
    border-radius: 1rem;
    padding: 2.25rem 1.75rem 2rem;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
    color: inherit;
}

    .contact-card:hover {
        box-shadow: 0 14px 34px -10px rgba(229, 181, 172, 0.32);
        transform: translateY(-3px);
    }

    .contact-card h4 {
        font-family: "Playfair Display", serif;
        font-size: 1.15rem;
        color: var(--text);
    }

.contact-icon {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: rgba(229, 181, 172, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

    .contact-icon .material-symbols-outlined {
        font-size: 26px;
        color: var(--primary);
    }

    .contact-icon svg {
        width: 23px;
        height: 23px;
        fill: var(--primary);
    }

.contact-link {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(123, 85, 78, 0.3);
    padding-bottom: 0.12rem;
    transition: border-color 0.25s ease;
}

.contact-card:hover .contact-link {
    border-color: var(--primary);
}

@media (max-width: 767.98px) {
    .brand-wordmark {
        font-size: 1.45rem;
    }

    .hero {
        min-height: 540px;
        margin-bottom: 4rem;
    }

    .hero-card h1 {
        font-size: 1.9rem;
    }

    .section-space {
        margin-bottom: 4.2rem;
    }

    .journal-small-image {
        min-height: 220px;
    }

    .brand-text {
        text-align: center;
    }

    h2 {
        font-size: 20px;
    }
}
