:root {
    --bg: #fff8f1;
    --bg-2: #f6ede4;
    --surface: rgba(255, 253, 251, .88);
    --surface-solid: #fffdfb;
    --surface-soft: #f9f0e7;
    --text: #2c2320;
    --muted: #6f6158;
    --line: #ead9cd;
    --accent: #c86b3c;
    --accent-2: #9a5332;
    --accent-3: #e08c58;
    --shadow: 0 18px 40px rgba(84, 50, 35, .10);
    --radius: 26px;
    --max: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top, rgba(255, 245, 236, .95), transparent 42%), linear-gradient(180deg, var(--bg), #fffdfb 72%);
    line-height: 1.65;
    overflow-x: hidden
}

header,
main,
footer,
section {
    max-width: 100%
}

img {
    max-width: 100%;
    display: block
}

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

p {
    margin: 0 0 1rem
}

h1, h2, h3, h4 {
    margin: 0 0 .75rem;
    line-height: 1.08;
    letter-spacing: -.03em
}

p,
h1,
h2,
h3,
h4,
li,
td,
th {
    overflow-wrap: break-word
}

ul {
    margin: 0 0 1rem;
    padding-left: 1.1rem
}

.wrap {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 248, 241, .84);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(234, 217, 205, .8)
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.banner {
    min-width: 0
}

.banner p {
    margin-bottom: 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: .01em
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #f0a36f);
    box-shadow: var(--shadow);
    position: relative
}

.brand-mark:after {
    content: "♪";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900
}

.brand small {
    display: block;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0
}

.menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface-solid);
    color: var(--text);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0;
    cursor: pointer
}

.menu-toggle span,
.menu-toggle:before,
.menu-toggle:after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .15s ease, opacity .15s ease
}

.menu-toggle span {
    margin: 5px 0
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    background: var(--surface-soft);
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(200, 107, 60, .10)
}

.menu a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted)
}

.menu a:hover, .menu a:focus, .menu a.active {
    background: var(--surface-soft);
    color: var(--text);
    box-shadow: inset 0 0 0 1px rgba(200, 107, 60, .10)
}

.hero {
    padding: 68px 0 30px
}

.hero-grid {
    display: grid;
    grid-template-columns:1.25fr .85fr;
    gap: 26px;
    align-items: stretch
}

.hero-grid > *,
.grid > *,
.footer-grid > *,
.social-grid > * {
    min-width: 0
}

.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.hero-main {
    padding: 34px
}

.eyebrow, .kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(246, 229, 215, .9);
    color: var(--accent-2);
    font-weight: 700;
    font-size: .92rem;
	margin: 0 0 16px 0;
}

.hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
    margin-top: 18px
}

.lead {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 60ch
}

.cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform .15s ease, box-shadow .15s ease
}

.btn:hover {
    transform: translateY(-1px)
}

.btn.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    color: #fff;
    box-shadow: 0 12px 28px rgba(200, 107, 60, .25)
}

.btn.secondary {
    background: transparent;
    border-color: var(--line);
    color: var(--text)
}

.side {
    padding: 24px;
    background: linear-gradient(180deg, #fffaf6, #f7ede3)
}

.card {
    background: rgba(255, 255, 255, .65);
    border: 1px solid rgba(234, 217, 205, .9);
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 14px
}

.card:last-child {
    margin-bottom: 0
}

.meta {
    color: var(--muted)
}

.section {
    padding: 26px 0
}

.section h2 {
    font-size: clamp(1.7rem, 3vw, 2.45rem)
}

.section-intro {
    color: var(--muted);
    max-width: 70ch;
    margin-bottom: 18px
}

.grid {
    display: grid;
    gap: 18px
}

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

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

.tile {
    background: var(--surface-solid);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow)
}

.tile p, .tile li {
    color: var(--muted)
}

.badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f6e5d7;
    color: var(--accent-2);
    font-size: .88rem;
    font-weight: 700
}

.table-wrap {
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: var(--surface-solid);
    box-shadow: var(--shadow)
}

table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse
}

th, td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line)
}

th {
    background: #fbf4ee
}

.footer {
    margin-top: 36px;
    padding: 28px 0 42px;
    border-top: 1px solid var(--line);
    color: var(--muted)
}

.footer-grid {
    display: grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap: 18px
}

.footer a {
    color: var(--muted)
}

.footer a:hover {
    color: var(--text)
}

.small {
    font-size: .95rem;
    color: var(--muted)
}

.page-head {
    padding: 40px 0 18px
}

.page-hero .hero-grid {
    grid-template-columns:1.25fr .85fr
}

.page-head .panel {
    padding: 28px
}

.page-hero .hero-main {
    padding: 28px
}

.page-hero .side {
    padding: 22px
}

.content {
    padding: 18px 0 10px
}

.article {
    padding: 28px
}

.article h2 {
    margin-top: 0
}

.article h3 {
    margin-top: 1.3rem
}

.contact-box {
    display: grid;
    gap: 10px
}

.list-clean {
    list-style: none;
    padding: 0;
    margin: 0
}

.list-clean li + li {
    margin-top: 10px
}

.whatsapp-fab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(37, 211, 102, .22);
    overflow-wrap: anywhere;
    white-space: normal
}

.embed {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
    min-height: 350px
}

.embed iframe {
    width: 100%;
    max-width: 100%;
    height: 460px;
    border: 0;
    display: block
}

.fb-page,
.fb-page span,
.fb-page iframe {
    max-width: 100% !important
}

.social-grid {
    #display: grid;
    #grid-template-columns: 1.05fr .95fr;
    #gap: 18px
}

.social-box {
    padding: 28px
}

@media (max-width: 920px) {
    .wrap {
        width: min(var(--max), calc(100% - 24px))
    }

    .hero-grid,
    .page-hero .hero-grid,
    .grid.cols-3,
    .grid.cols-2,
    .footer-grid,
    .social-grid {
        grid-template-columns: 1fr
    }

    .nav {
        position: relative;
        gap: 10px;
        min-height: 72px
    }

    .banner {
        flex: 1 1 auto;
        max-width: calc(100% - 54px)
    }

    .banner p {
        font-size: .88rem;
        line-height: 1.25
    }

    .menu-toggle {
        display: inline-flex;
        flex: 0 0 auto
    }

    .nav-open .menu-toggle:before {
        transform: translateY(7px) rotate(45deg)
    }

    .nav-open .menu-toggle span {
        opacity: 0
    }

    .nav-open .menu-toggle:after {
        transform: translateY(-7px) rotate(-45deg)
    }

    .menu {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 4px;
        padding: 12px;
        background: rgba(255, 253, 251, .96);
        border: 1px solid var(--line);
        border-radius: 0 0 18px 18px;
        box-shadow: var(--shadow)
    }

    .nav-open .menu {
        display: flex
    }

    .menu a {
        width: 100%;
        border-radius: 12px
    }

    .hero {
        padding-top: 30px
    }

    .page-head {
        padding: 22px 0 12px
    }

    .hero-main, .side, .article, .page-head .panel, .social-box {
        padding: 22px
    }

    .panel,
    .tile,
    .card,
    .table-wrap,
    .embed {
        border-radius: 16px
    }

    table {
        min-width: 374px
    }

    th, td {
        padding: 12px 8px
    }

    .embed iframe {
        height: 350px
    }

    #banner {
        font-family: "Zahrah Medium Italic", Zahrah, serif;
        display: block;
        max-width: 100%;
        font-size: clamp(22px, 7vw, 30px);
        line-height: 1.05;
        color: DeepPink;
        text-decoration: none;
        font-style: italic;
        overflow-wrap: anywhere;
        word-break: normal
    }

    #banner span {
        display: block
    }
}

@media (max-width: 380px) {
    .wrap {
        width: min(var(--max), calc(100% - 18px))
    }

    .hero-main, .side, .article, .page-head .panel, .social-box, .tile {
        padding: 16px
    }

    .menu-toggle {
        width: 40px;
        height: 40px
    }

    .banner {
        max-width: calc(100% - 48px)
    }

    #banner {
        font-size: clamp(19px, 6.7vw, 24px)
    }
}

.tile, .card, .panel {
    transition: transform .15s ease, box-shadow .15s ease
}

.tile:hover, .card:hover, .panel:hover {
    transform: translateY(-2px)
}

@media (min-width: 920px){
    #banner {
        font-family: "Zahrah Medium Italic", Zahrah, serif;
        font-size: 45px;
        color: DeepPink;
        text-decoration: none;
        font-style: italic;
    }
}
