/* =========================================================
   MAILE STUDIO
   Bereinigte Haupt-Styles
   ========================================================= */

:root {
    --ink: #0a1830;
    --muted: #5b6471;
    --purple: #6546c8;
    --purple-dark: #5136aa;
    --coral: #ee6d72;
    --orange: #f4a23b;
    --soft: #fbfaf8;
    --cream: #fff8ee;
    --line: #ece8e2;
    --shadow: 0 18px 50px rgba(18, 28, 48, .08);
    --radius: 24px;
}


/* =========================================================
   BASIS
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system,
                 BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, 92vw);
    margin-inline: auto;
}

h1,
h2,
h3 {
    letter-spacing: -.03em;
}

.accent {
    color: var(--purple);
}

.eyebrow {
    color: #e1764a;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(10, 24, 48, .05);
}

.header-inner {
    position: relative;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 255px;
}

.brand-logo {
    width: 105px;
    height: auto;
    flex: 0 0 auto;
}

.brand-copy strong {
    display: block;
    font-size: 16px;
    letter-spacing: .18em;
}

.brand-copy small {
    display: block;
    margin-top: 4px;
    color: var(--purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-mini {
    display: flex;
    gap: 13px;
    font-size: 18px;
    font-weight: 900;
}

.amazon-btn,
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 999px;
    background: var(--purple);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(101, 70, 200, .18);
    transition: background-color .2s ease, transform .2s ease;
}

.amazon-btn:hover,
.btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid #d9d5cf;
    border-radius: 999px;
    background: #fff;
    font-weight: 800;
    transition: background-color .2s ease, transform .2s ease;
}

.btn-outline:hover {
    background: #f8f7f5;
    transform: translateY(-1px);
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    border: 1px solid rgba(20, 30, 45, .06);
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 8px 28px rgba(20, 30, 45, .05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -.01em;
    white-space: nowrap;
    transition:
        color .18s ease,
        background-color .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.main-nav a:hover {
    background: rgba(20, 30, 45, .055);
    transform: translateY(-1px);
}

.main-nav a.active,
.main-nav a[aria-current="page"] {
    background: #fff;
    font-weight: 700;
    box-shadow:
        0 1px 2px rgba(20, 30, 45, .05),
        0 5px 14px rgba(20, 30, 45, .08);
}

.main-nav a.active::after,
.main-nav a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translateX(-50%);
    opacity: .85;
}

.main-nav a:focus-visible,
.menu-btn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.menu-btn {
    display: none;
    border: 0;
    color: var(--purple);
}


/* =========================================================
   STARTSEITE – HERO
   ========================================================= */

.hero {
    padding: 54px 0 26px;
    background: linear-gradient(180deg, #fff 0%, #fffdfa 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 30px;
    align-items: center;
}

.hero h1 {
    margin: 18px 0 24px;
    font-size: clamp(52px, 5.8vw, 82px);
    line-height: .96;
}

.hero p {
    max-width: 555px;
    color: #2f3948;
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #4e5661;
    font-size: 13px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 31px;
    height: 31px;
    margin-left: -7px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, #f6c7ad, #8564c7);
}

.avatar:first-child {
    margin-left: 0;
}

.stars {
    color: #ffb01b;
    font-size: 18px;
    letter-spacing: 1px;
}

.hero-art {
    position: relative;
}

.hero-art img {
    width: 100%;
    border-radius: 0 0 36px 36px;
}

.hero-slogan {
    position: absolute;
    top: 18px;
    right: 12px;
    padding: 14px 16px;
    border: 1px solid #efe9e1;
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    color: var(--purple);
    font-size: 13px;
    font-weight: 850;
    box-shadow: var(--shadow);
}


/* =========================================================
   STARTSEITE – MERKMALE
   ========================================================= */

.features {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow);
}

.feature {
    padding: 8px 14px;
    border-right: 1px solid var(--line);
    text-align: center;
}

.feature:last-child {
    border-right: 0;
}

.feature-icon {
    font-size: 30px;
    line-height: 1;
}

.feature b {
    display: block;
    margin: 8px 0 6px;
    font-size: 13px;
}

.feature span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}


/* =========================================================
   ALLGEMEINE SEKTIONEN
   ========================================================= */

.section {
    padding: 62px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.section-head h2 {
    margin: 0;
    font-size: 38px;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--muted);
}

.link-arrow {
    color: var(--purple);
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   BÜCHER
   ========================================================= */

.books-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.book-card {
    padding: 12px;
    border: 1px solid #efebe6;
    border-radius: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 10px 26px rgba(18, 28, 48, .045);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background-color .22s ease;
}

.book-card:hover {
    transform: translateY(-5px);
    background: #eeeeee;
    box-shadow: 0 16px 34px rgba(18, 28, 48, .09);
}

.book-card > a {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
}

.book-card img {
    width: 100%;
    height: auto;
    max-height: 340px;
    margin: 0 auto;
    border-radius: 16px;
    object-fit: contain;
}

.book-card h2 {
    margin: 5px 0;
}

.book-card h3 {
    margin: 12px 0 6px;
    font-size: 14px;
    line-height: 1.42;
}

.book-card p {
    font-size: 13px;
    line-height: 1.5;
}

.meta {
    color: var(--purple);
    font-size: 13px;
    font-weight: 750;
}

.age,
.book-card .age {
    display: inline-block;
    margin-top: 9px;
    padding: 5px 10px;
    border: 1px solid #ddd4f2;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 600;
}


/* =========================================================
   ALLGEMEINE UNTERSEITEN
   ========================================================= */

.page-hero {
    padding: 64px 0 44px;
    background: linear-gradient(135deg, #faf7ff, #fffaf3);
}

.page-hero h1 {
    margin: 8px 0 14px;
    font-size: 56px;
}

.page-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.content-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18, 28, 48, .04);
}

.content-card h3 {
    margin-top: 0;
}


/* =========================================================
   KONTAKT
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
}

.contact-form {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
}

.field {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
}

.field label {
    font-size: 13px;
    font-weight: 800;
}

.field input,
.field textarea {
    padding: 13px 14px;
    border: 1px solid #ddd8d1;
    border-radius: 12px;
    outline: 0;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(101, 70, 200, .08);
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.note {
    color: #7a818c;
    font-size: 12px;
}


/* =========================================================
   ÜBER MAILE STUDIO
   ========================================================= */

.about-page {
    overflow: hidden;
}

.about-hero {
    padding-top: 72px;
    padding-bottom: 72px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 56px;
    align-items: center;
}

.about-hero-copy h1 {
    max-width: 800px;
    margin: 14px 0 22px;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.about-lead {
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.75;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.about-brand-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(25, 35, 50, .08);
    border-radius: 28px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, .96),
        rgba(246, 247, 249, .94)
    );
    box-shadow: 0 24px 70px rgba(20, 30, 45, .09);
}

.about-brand-card::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -35px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(20, 30, 45, .035);
}

.about-brand-mark {
    position: relative;
    z-index: 1;
    width: 350px;
    margin: 0 auto 24px;
}

.about-brand-mark img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.about-brand-label {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.about-brand-card h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.about-brand-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.about-split,
.about-local-grid {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    gap: 70px;
    align-items: start;
}

.about-text {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-text p:first-child {
    margin-top: 0;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.about-card {
    position: relative;
    min-height: 255px;
    padding: 28px;
    border: 1px solid rgba(25, 35, 50, .08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(20, 30, 45, .045);
    transition: transform .2s ease, box-shadow .2s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 46px rgba(20, 30, 45, .08);
}

.about-card-number {
    display: inline-flex;
    margin-bottom: 48px;
    color: #7a808a;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.about-card h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
}

.about-card p {
    margin: 0;
    color: #626975;
    line-height: 1.7;
}

.about-program-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 60px;
    padding: 52px;
    border-radius: 30px;
    background: #111827;
    color: #fff;
}

.about-program-copy h2 {
    margin: 10px 0 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -.045em;
}

.about-program-copy p {
    max-width: 680px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
}

.about-program-copy .section-eyebrow {
    color: rgba(255, 255, 255, .65);
}

.about-program-copy .text-link {
    display: inline-block;
    margin-top: 14px;
    color: #fff;
    font-weight: 700;
}

.about-program-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-program-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.about-program-item:first-child {
    padding-top: 0;
}

.about-program-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.about-program-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.about-program-item span {
    color: rgba(255, 255, 255, .62);
    line-height: 1.55;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 38px;
}

.about-value {
    padding-top: 24px;
    border-top: 1px solid rgba(25, 35, 50, .13);
}

.about-value h3 {
    margin: 0 0 12px;
    font-size: 1.3rem;
}

.about-value p {
    margin: 0;
    color: #626975;
    line-height: 1.75;
}

.about-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 42px 46px;
    border: 1px solid rgba(25, 35, 50, .08);
    border-radius: 28px;
    background: linear-gradient(135deg, #f4f5f7, #fff);
}

.about-cta-box h2 {
    margin: 8px 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: -.04em;
}

.about-cta-box p {
    margin: 0;
    color: #626975;
}

.about-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   STARTSEITE – STUDIO-BEREICH
   ========================================================= */

.studio-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 48px;
    align-items: center;
    padding: 48px;
    border: 1px solid rgba(20, 30, 45, .08);
    border-radius: 30px;
    background: linear-gradient(135deg, #f4f5f7, #fff);
    box-shadow: 0 18px 55px rgba(20, 30, 45, .05);
}

.studio-highlight-copy h2 {
    margin: 10px 0 18px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.studio-highlight-copy p {
    max-width: 680px;
    margin: 0 0 26px;
    color: #626975;
    line-height: 1.8;
}

.studio-highlight-cards {
    display: grid;
    gap: 12px;
}

.studio-mini-card {
    position: relative;
    padding: 22px 24px;
    border: 1px solid rgba(20, 30, 45, .07);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 26px rgba(20, 30, 45, .04);
}

.studio-mini-number {
    display: block;
    margin-bottom: 16px;
    color: #7b818b;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.studio-mini-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.studio-mini-card p {
    margin: 0;
    color: #626975;
    line-height: 1.6;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 46px 0 28px;
    border-top: 1px solid #eee;
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
}

.footer-brand {
    text-align: center;
}

.footer-brand img {
    width: 130px;
    margin: 0 auto;
}

.footer-slogan {
    margin-top: 11px;
    color: var(--purple);
    font-weight: 800;
}

.footer-col b {
    display: block;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    margin: 7px 0;
    color: #56606d;
    font-size: 13px;
}

.copyright {
    margin-top: 32px;
    color: #8a9096;
    font-size: 11px;
    text-align: center;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
    .header-actions {
        display: none;
    }
}

@media (max-width: 1100px) {
    .about-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .feature:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .header-inner {
        gap: 14px;
    }

    .brand {
        min-width: 0;
        flex: 1;
    }

    .brand-copy {
        min-width: 0;
    }

    .brand-copy strong,
    .brand-copy small {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 1px solid rgba(20, 30, 45, .08);
        border-radius: 12px;
        background: #fff;
        color: var(--purple);
        box-shadow: 0 6px 18px rgba(20, 30, 45, .07);
        cursor: pointer;
        font-size: 22px;
        line-height: 1;
        transition:
            transform .18s ease,
            box-shadow .18s ease,
            background .18s ease;
    }

    .menu-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 22px rgba(20, 30, 45, .10);
    }

    .main-nav {
        display: none;
        position: absolute;
        z-index: 1000;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 8px;
        border: 1px solid rgba(20, 30, 45, .08);
        border-radius: 16px;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 18px 50px rgba(20, 30, 45, .14);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        min-height: 46px;
        justify-content: flex-start;
        padding: 0 14px;
        border-radius: 11px;
    }

    .main-nav a:hover {
        transform: none;
    }

    .main-nav a.active::after,
    .main-nav a[aria-current="page"]::after {
        left: 14px;
        right: auto;
        bottom: 8px;
        width: 24px;
        transform: none;
    }

    .about-hero {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .about-hero-grid,
    .about-split,
    .about-local-grid,
    .about-program-box {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-program-box {
        padding: 36px;
    }

    .about-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .studio-highlight {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 36px;
    }
}

@media (max-width: 620px) {
    .about-hero-copy h1 {
        font-size: clamp(2.35rem, 12vw, 3.5rem);
    }

    .about-brand-card {
        padding: 26px;
        border-radius: 22px;
    }

    .about-brand-mark {
        width: 100px;
    }

    .about-cards,
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        min-height: auto;
    }

    .about-card-number {
        margin-bottom: 30px;
    }

    .about-program-box {
        padding: 28px 24px;
        border-radius: 24px;
    }

    .about-cta-box {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .about-hero-actions,
    .about-cta-actions {
        width: 100%;
    }

    .about-hero-actions a,
    .about-cta-actions a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .brand-logo {
        width: 88px;
    }

    .brand-copy strong {
        font-size: 14px;
    }

    .brand-copy small {
        font-size: 8px;
    }

    .hero {
        padding-top: 28px;
    }

    .hero h1 {
        font-size: 49px;
    }

    .features,
    .books-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        border-bottom: 1px solid var(--line);
    }

    .feature:last-child {
        border-bottom: 0;
    }

    .section-head {
        display: block;
    }

    .link-arrow {
        display: inline-block;
        margin-top: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .studio-highlight {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .studio-highlight-copy h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

@media (max-width: 520px) {
    .header-inner {
        gap: 10px;
    }

    .brand-copy small {
        display: none;
    }
}
