```css
/* ============================================================
   ALL-IN-ONE BRANDING SHOP
   REFUND POLICY PAGE STYLES
   ------------------------------------------------------------
   refund.css

   Premium page-specific styling for refund.html.
   Uses main.css design tokens.
   Does NOT redefine header/navigation/footer.
   Fully responsive and hamburger-navigation compatible.
============================================================ */


/* ============================================================
   REFUND HERO
============================================================ */

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 115px 0 95px;
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(245, 185, 66, 0.12),
            transparent 31%
        ),
        radial-gradient(
            circle at 12% 82%,
            rgba(245, 185, 66, 0.04),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #080a0e 0%,
            #0b0e13 52%,
            #080a0e 100%
        );
    border-bottom: 1px solid var(--border);
}

/* Decorative grid */

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
    opacity: 0.5;
    pointer-events: none;
}

/* Decorative circle */

.legal-hero::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -185px;
    top: -235px;
    border: 1px solid rgba(245, 185, 66, 0.075);
    border-radius: 50%;
    box-shadow:
        0 0 0 42px rgba(245, 185, 66, 0.018),
        0 0 0 84px rgba(245, 185, 66, 0.01);
    pointer-events: none;
}

.legal-hero .container {
    position: relative;
    z-index: 1;
}

.legal-hero-content {
    position: relative;
    max-width: 850px;
    z-index: 1;
}


/* ============================================================
   HERO LABEL
============================================================ */

.legal-hero .section-label {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 21px;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    line-height: 1;
    text-transform: uppercase;
}

.legal-hero .section-label::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow:
        0 0 14px rgba(245, 185, 66, 0.3);
}


/* ============================================================
   HERO HEADING
============================================================ */

.legal-hero h1 {
    max-width: 800px;
    margin: 0;
    color: var(--white);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(44px, 6.3vw, 76px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -3px;
}

.legal-hero h1 span {
    color: var(--gold);
}


/* ============================================================
   HERO DESCRIPTION
============================================================ */

.legal-hero p {
    max-width: 710px;
    margin: 25px 0 0;
    color: var(--soft);
    font-size: 15px;
    line-height: 1.9;
}


/* ============================================================
   UPDATED DATE
============================================================ */

.legal-updated {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 31px;
    padding: 13px 18px;
    border: 1px solid rgba(245, 185, 66, 0.13);
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            rgba(245, 185, 66, 0.065),
            rgba(255, 255, 255, 0.02)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 12px 30px rgba(0, 0, 0, 0.14);
}

.legal-updated::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow:
        0 0 12px rgba(245, 185, 66, 0.55);
}

.legal-updated span {
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.legal-updated strong {
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
}


/* ============================================================
   LEGAL SECTION
============================================================ */

.legal-section {
    position: relative;
    padding: 92px 0 108px;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(245, 185, 66, 0.035),
            transparent 36%
        ),
        var(--bg);
    border-bottom: 1px solid var(--border);
}


/* ============================================================
   LEGAL LAYOUT
============================================================ */

.legal-layout {
    display: grid;
    grid-template-columns: 255px minmax(0, 1fr);
    align-items: start;
    gap: 52px;
}


/* ============================================================
   LEGAL NAVIGATION
============================================================ */

.legal-navigation {
    position: sticky;
    top: 105px;
    min-width: 0;
}

.legal-nav-box {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 21px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.legal-nav-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            var(--gold),
            rgba(245, 185, 66, 0.18),
            transparent
        );
}


/* ============================================================
   NAVIGATION LABEL
============================================================ */

.legal-nav-label {
    display: block;
    margin-bottom: 14px;
    padding-bottom: 13px;
    color: var(--gold);
    border-bottom: 1px solid var(--border);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


/* ============================================================
   NAVIGATION LINKS
============================================================ */

.legal-nav-box a {
    position: relative;
    display: block;
    padding: 11px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.045);
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    transition:
        color var(--transition),
        padding-left var(--transition),
        background var(--transition);
}

.legal-nav-box a:last-child {
    border-bottom: none;
}

.legal-nav-box a:hover {
    padding-left: 10px;
    color: var(--gold);
    background:
        rgba(245, 185, 66, 0.025);
}


/* ============================================================
   LEGAL CONTENT
============================================================ */

.legal-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* ============================================================
   LEGAL CARD
============================================================ */

.legal-card {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 25px;
    overflow: hidden;
    padding: 37px 40px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );
    border: 1px solid var(--border);
    border-radius: 15px;
    box-shadow:
        var(--shadow-sm),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    scroll-margin-top: 30px;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

/* Gold left accent */

.legal-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background:
        linear-gradient(
            180deg,
            var(--gold),
            rgba(245, 185, 66, 0.12)
        );
    opacity: 0.85;
}

/* Subtle top highlight */

.legal-card::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    top: 0;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            rgba(245, 185, 66, 0.13),
            transparent 60%
        );
}

.legal-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
}


/* ============================================================
   CARD NUMBER
============================================================ */

.legal-card-number {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            rgba(245, 185, 66, 0.09),
            rgba(245, 185, 66, 0.025)
        );
    color: var(--gold);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 13px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 8px 20px rgba(0, 0, 0, 0.12);
}


/* ============================================================
   CARD HEADING
============================================================ */

.legal-card h2 {
    margin: 0 0 17px;
    color: var(--white);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(25px, 3vw, 33px);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.7px;
}


/* ============================================================
   CARD TEXT
============================================================ */

.legal-card p {
    max-width: 780px;
    margin: 0 0 15px;
    color: var(--soft);
    font-size: 13px;
    line-height: 1.87;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card strong {
    color: var(--white);
    font-weight: 700;
}


/* ============================================================
   LEGAL HIGHLIGHT
============================================================ */

.legal-highlight {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 23px;
    padding: 19px 20px;
    background:
        linear-gradient(
            135deg,
            rgba(245, 185, 66, 0.065),
            rgba(245, 185, 66, 0.018)
        );
    border: 1px solid rgba(245, 185, 66, 0.14);
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.legal-highlight strong {
    flex: 0 0 auto;
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.5;
    text-transform: uppercase;
}

.legal-highlight span {
    color: var(--soft);
    font-size: 12px;
    line-height: 1.75;
}


/* ============================================================
   NON-REFUNDABLE LIST
============================================================ */

.legal-card ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 7px 0 0;
    padding: 0;
    list-style: none;
}

.legal-card li {
    position: relative;
    padding-left: 24px;
    color: var(--soft);
    font-size: 13px;
    line-height: 1.72;
}

.legal-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}


/* ============================================================
   LEGAL CONTACT BOX
============================================================ */

.legal-contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.legal-contact-box a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    background:
        rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--soft);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.legal-contact-box a:hover {
    transform: translateY(-3px);
    color: var(--gold);
    background:
        rgba(245, 185, 66, 0.05);
    border-color: var(--border-gold);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.14);
}


/* ============================================================
   LEGAL CTA
============================================================ */

.legal-cta {
    position: relative;
    padding: 92px 0 110px;
    background:
        #090b0f;
}

.legal-cta-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    overflow: hidden;
    padding: 55px 58px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(245, 185, 66, 0.10),
            transparent 32%
        ),
        radial-gradient(
            circle at 5% 100%,
            rgba(255, 255, 255, 0.025),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );
    border: 1px solid var(--border-gold);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
}

/* Gold top line */

.legal-cta-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            var(--gold),
            rgba(245, 185, 66, 0.2),
            transparent
        );
}

/* Decorative circle */

.legal-cta-box::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -115px;
    bottom: -135px;
    border: 1px solid rgba(245, 185, 66, 0.075);
    border-radius: 50%;
    box-shadow:
        0 0 0 28px rgba(245, 185, 66, 0.012);
    pointer-events: none;
}


/* ============================================================
   CTA CONTENT
============================================================ */

.legal-cta-box > div:first-child {
    position: relative;
    z-index: 1;
}

.legal-cta-box .section-label {
    display: block;
    margin-bottom: 13px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.legal-cta-box h2 {
    max-width: 620px;
    margin: 0;
    color: var(--white);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(32px, 4vw, 51px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.legal-cta-box h2 span {
    color: var(--gold);
}

.legal-cta-box p {
    max-width: 570px;
    margin: 16px 0 0;
    color: var(--soft);
    font-size: 13px;
    line-height: 1.8;
}


/* ============================================================
   CTA ACTIONS
============================================================ */

.legal-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    min-width: 170px;
}

.legal-cta-actions .btn {
    width: 170px;
    min-height: 50px;
}

.legal-secondary-link {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color var(--transition);
}

.legal-secondary-link:hover {
    color: var(--gold);
}


/* ============================================================
   FOCUS STATES
============================================================ */

.legal-nav-box a:focus-visible,
.legal-contact-box a:focus-visible,
.legal-secondary-link:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}


/* ============================================================
   RESPONSIVE — 1100px
============================================================ */

@media (max-width: 1100px) {

    .legal-layout {
        grid-template-columns:
            220px minmax(0, 1fr);
        gap: 35px;
    }

    .legal-card {
        padding: 32px;
    }

    .legal-cta-box {
        padding: 46px;
    }
}


/* ============================================================
   RESPONSIVE — 900px
============================================================ */

@media (max-width: 900px) {

    .legal-hero {
        padding: 92px 0 80px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-navigation {
        position: static;
    }

    .legal-nav-box {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 0 18px;
    }

    .legal-nav-label {
        grid-column: 1 / -1;
    }

    .legal-nav-box a {
        padding: 10px 5px;
    }

    .legal-cta-box {
        align-items: flex-start;
        flex-direction: column;
        gap: 31px;
    }

    .legal-cta-actions {
        align-items: flex-start;
        flex-direction: row;
        min-width: auto;
    }
}


/* ============================================================
   RESPONSIVE — 700px
============================================================ */

@media (max-width: 700px) {

    .legal-hero {
        padding: 78px 0 66px;
    }

    .legal-hero h1 {
        font-size:
            clamp(39px, 10vw, 55px);
        letter-spacing: -1.8px;
    }

    .legal-hero p {
        font-size: 13px;
        line-height: 1.82;
    }

    .legal-updated {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .legal-section {
        padding: 67px 0 80px;
    }

    .legal-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 27px 24px;
        border-radius: 14px;
    }

    .legal-card::after {
        left: 24px;
        right: 24px;
    }

    .legal-card-number {
        width: 43px;
        height: 43px;
    }

    .legal-card h2 {
        font-size: 26px;
    }

    .legal-card p {
        font-size: 12px;
        line-height: 1.82;
    }

    .legal-card li {
        font-size: 12px;
    }

    .legal-highlight {
        flex-direction: column;
        gap: 7px;
        padding: 18px;
    }

    .legal-contact-box {
        flex-direction: column;
    }

    .legal-contact-box a {
        width: 100%;
    }

    .legal-cta {
        padding: 67px 0 80px;
    }

    .legal-cta-box {
        padding: 35px 26px;
        border-radius: 15px;
    }

    .legal-cta-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .legal-cta-actions .btn {
        width: 100%;
    }

    .legal-secondary-link {
        text-align: center;
    }
}


/* ============================================================
   RESPONSIVE — 600px
============================================================ */

@media (max-width: 600px) {

    .legal-nav-box {
        grid-template-columns: 1fr;
    }

    .legal-nav-label {
        margin-bottom: 8px;
    }

    .legal-nav-box a {
        padding: 10px 4px;
    }

    .legal-contact-box {
        gap: 9px;
    }
}


/* ============================================================
   RESPONSIVE — 480px
============================================================ */

@media (max-width: 480px) {

    .legal-hero {
        padding: 66px 0 55px;
    }

    .legal-hero .section-label {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .legal-hero h1 {
        font-size: 2.25rem;
        letter-spacing: -1.2px;
    }

    .legal-hero p {
        font-size: 12px;
    }

    .legal-section {
        padding: 53px 0 68px;
    }

    .legal-card {
        padding: 23px 19px;
    }

    .legal-card::after {
        left: 19px;
        right: 19px;
    }

    .legal-card h2 {
        font-size: 23px;
    }

    .legal-card p {
        font-size: 11.5px;
    }

    .legal-card li {
        font-size: 11.5px;
    }

    .legal-highlight {
        padding: 17px;
    }

    .legal-highlight span {
        font-size: 11px;
    }

    .legal-cta-box {
        padding: 30px 21px;
    }

    .legal-cta-box h2 {
        font-size: 2rem;
    }

    .legal-cta-box p {
        font-size: 11.5px;
    }
}


/* ============================================================
   RESPONSIVE — 380px
============================================================ */

@media (max-width: 380px) {

    .legal-hero {
        padding: 59px 0 50px;
    }

    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-updated {
        width: 100%;
    }

    .legal-card {
        padding: 21px 17px;
    }

    .legal-card h2 {
        font-size: 21px;
    }

    .legal-cta-box {
        padding: 27px 19px;
    }
}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .legal-card,
    .legal-nav-box a,
    .legal-contact-box a,
    .legal-secondary-link {
        transition: none;
    }
}
```
