```css
/* ============================================================
   ALL-IN-ONE BRANDING SHOP
   PRIVACY POLICY PAGE
   ------------------------------------------------------------
   privacy.css

   Premium page-specific styling.
   Works with privacy.html and main.css.
   Global navigation/header/footer styles remain in main.css.
============================================================ */


/* ============================================================
   PRIVACY HERO
============================================================ */

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 115px 0 95px;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(245, 185, 66, 0.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 75%,
            rgba(255, 255, 255, 0.04),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #080a0e 0%,
            #0b0e13 52%,
            #080a0e 100%
        );
}

/* 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.55;
    pointer-events: none;
}

/* Large decorative glow */

.legal-hero::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -190px;
    top: -210px;
    border: 1px solid rgba(245, 185, 66, 0.08);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(245, 185, 66, 0.025),
        0 0 0 90px rgba(245, 185, 66, 0.015);
    pointer-events: none;
}

.legal-hero .container {
    position: relative;
    z-index: 1;
}


/* ============================================================
   HERO CONTENT
============================================================ */

.legal-hero-content {
    max-width: 860px;
}

.legal-hero .section-label {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 21px;
    color: #f5b942;
    font-size: 0.7rem;
    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: #f5b942;
    box-shadow: 0 0 14px rgba(245, 185, 66, 0.28);
}

.legal-hero h1 {
    margin: 0 0 23px;
    color: #f7f8fa;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.15rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.legal-hero h1 span {
    color: #f5b942;
}

.legal-hero p {
    max-width: 710px;
    margin: 0;
    color: #aeb6c1;
    font-size: 1.05rem;
    line-height: 1.85;
}


/* ============================================================
   UPDATED DATE
============================================================ */

.legal-updated {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 32px;
    padding: 12px 18px;
    border: 1px solid rgba(245, 185, 66, 0.13);
    border-radius: 10px;
    background:
        linear-gradient(
            135deg,
            rgba(245, 185, 66, 0.06),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 10px 30px rgba(0, 0, 0, 0.14);
}

.legal-updated::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: #f5b942;
    box-shadow: 0 0 12px rgba(245, 185, 66, 0.55);
}

.legal-updated span {
    color: #747e8b;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.legal-updated strong {
    color: #f0f2f5;
    font-size: 0.78rem;
    font-weight: 700;
}


/* ============================================================
   LEGAL CONTENT SECTION
============================================================ */

.legal-section {
    position: relative;
    padding: 90px 0 110px;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(245, 185, 66, 0.035),
            transparent 35%
        ),
        #090b0f;
}


/* ============================================================
   TWO-COLUMN LAYOUT
============================================================ */

.legal-layout {
    display: grid;
    grid-template-columns: 255px minmax(0, 1fr);
    gap: 52px;
    align-items: start;
}


/* ============================================================
   SIDEBAR
============================================================ */

.legal-sidebar {
    position: sticky;
    top: 105px;
    width: 100%;
}

.legal-sidebar-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            #11151b,
            #0d1015
        );
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.legal-sidebar-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            #f5b942,
            rgba(245, 185, 66, 0.15),
            transparent
        );
}


/* ============================================================
   SIDEBAR TITLE
============================================================ */

.sidebar-label {
    display: block;
    padding: 21px 20px 14px;
    color: #f5b942;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


/* ============================================================
   SIDEBAR NAVIGATION
============================================================ */

.legal-nav {
    display: flex;
    flex-direction: column;
    padding: 6px 10px 13px;
}

.legal-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 10px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #8d97a4;
    font-size: 0.79rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    transition:
        background 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease,
        padding-left 0.22s ease;
}

.legal-nav a span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 27px;
    color: #f5b942;
    font-size: 0.64rem;
    font-weight: 800;
}

.legal-nav a:hover {
    padding-left: 14px;
    border-color: rgba(245, 185, 66, 0.10);
    color: #f5f7fa;
    background:
        rgba(245, 185, 66, 0.065);
}

.legal-nav a:focus-visible {
    outline: 2px solid #f5b942;
    outline-offset: 2px;
}


/* ============================================================
   RIGHT CONTENT
============================================================ */

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 21px;
    min-width: 0;
}


/* ============================================================
   LEGAL CARD
============================================================ */

.legal-card {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 25px;
    padding: 37px 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            #12161c 0%,
            #0f1318 100%
        );
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Gold vertical accent */

.legal-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background:
        linear-gradient(
            180deg,
            #f5b942,
            rgba(245, 185, 66, 0.15)
        );
    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.14),
            transparent 55%
        );
}

.legal-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 185, 66, 0.18);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.22),
        0 0 30px rgba(245, 185, 66, 0.025);
}


/* ============================================================
   CARD NUMBER
============================================================ */

.legal-card-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(245, 185, 66, 0.20);
    border-radius: 13px;
    background:
        linear-gradient(
            145deg,
            rgba(245, 185, 66, 0.10),
            rgba(245, 185, 66, 0.035)
        );
    color: #f5b942;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 8px 20px rgba(0, 0, 0, 0.12);
}


/* ============================================================
   CARD CONTENT
============================================================ */

.legal-card-content {
    min-width: 0;
}

.legal-card-label {
    display: block;
    margin-bottom: 8px;
    color: #f5b942;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.legal-card h2 {
    margin: 0 0 16px;
    color: #f5f7fa;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.62rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.legal-card p {
    max-width: 780px;
    margin: 0 0 15px;
    color: #aeb6c1;
    font-size: 0.94rem;
    line-height: 1.82;
}

.legal-card p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   LIST
============================================================ */

.legal-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.legal-card li {
    position: relative;
    padding-left: 23px;
    color: #aeb6c1;
    font-size: 0.91rem;
    line-height: 1.68;
}

.legal-card li::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f5b942;
    box-shadow: 0 0 8px rgba(245, 185, 66, 0.28);
}


/* ============================================================
   STRONG TEXT
============================================================ */

.legal-card strong {
    color: #f5f7fa;
    font-weight: 700;
}


/* ============================================================
   HIGHLIGHT BOX
============================================================ */

.legal-highlight {
    position: relative;
    margin-top: 23px;
    padding: 21px 23px;
    border: 1px solid rgba(245, 185, 66, 0.12);
    border-left: 3px solid #f5b942;
    border-radius: 11px;
    background:
        linear-gradient(
            135deg,
            rgba(245, 185, 66, 0.065),
            rgba(245, 185, 66, 0.018)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.legal-highlight strong {
    display: block;
    margin-bottom: 7px;
    color: #f5b942;
    font-size: 0.79rem;
    font-weight: 800;
}

.legal-highlight p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.72;
}


/* ============================================================
   CONTACT CARD
============================================================ */

.legal-contact-card {
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(245, 185, 66, 0.08),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #14181e,
            #10141a
        );
}


/* ============================================================
   CONTACT LINKS
============================================================ */

.legal-contact-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-top: 26px;
}

.legal-contact-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 11px;
    background:
        rgba(255, 255, 255, 0.022);
    color: #f0f2f5;
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.legal-contact-links a:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 185, 66, 0.25);
    background:
        rgba(245, 185, 66, 0.055);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.16);
}

.legal-contact-links a span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    border: 1px solid rgba(245, 185, 66, 0.10);
    border-radius: 9px;
    background:
        rgba(245, 185, 66, 0.075);
    color: #f5b942;
    font-size: 0.95rem;
}

.legal-contact-links a strong {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #f0f2f5;
    font-size: 0.78rem;
    line-height: 1.45;
}


/* ============================================================
   CTA SECTION
============================================================ */

.legal-cta {
    position: relative;
    padding: 0 0 110px;
    background: #090b0f;
}

.legal-cta-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    overflow: hidden;
    padding: 52px 58px;
    border: 1px solid rgba(245, 185, 66, 0.15);
    border-radius: 19px;
    background:
        radial-gradient(
            circle at 88% 25%,
            rgba(245, 185, 66, 0.11),
            transparent 32%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(255, 255, 255, 0.025),
            transparent 28%
        ),
        #11151b;
    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.legal-cta-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            #f5b942,
            rgba(245, 185, 66, 0.2),
            transparent
        );
}

.legal-cta-box::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -140px;
    bottom: -175px;
    border: 1px solid rgba(245, 185, 66, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.legal-cta-box > div:first-child {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.legal-cta-box .section-label {
    display: block;
    margin-bottom: 13px;
    color: #f5b942;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.legal-cta-box h2 {
    margin: 0 0 13px;
    color: #f5f7fa;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 4vw, 3.15rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.legal-cta-box h2 span {
    color: #f5b942;
}

.legal-cta-box p {
    margin: 0;
    color: #9fa8b4;
    font-size: 0.94rem;
    line-height: 1.75;
}


/* ============================================================
   CTA ACTIONS
============================================================ */

.legal-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.legal-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 51px;
    padding: 13px 23px;
    border-radius: 9px;
    text-decoration: none;
    white-space: nowrap;
}

.legal-cta-link {
    color: #aeb6c1;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.legal-cta-link:hover {
    color: #f5b942;
}


/* ============================================================
   LARGE TABLET
============================================================ */

@media (max-width: 1100px) {

    .legal-layout {
        grid-template-columns: 225px minmax(0, 1fr);
        gap: 32px;
    }

    .legal-card {
        padding: 33px;
    }

    .legal-cta-box {
        padding: 45px;
    }
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .legal-hero {
        padding: 95px 0 80px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-sidebar-box {
        max-width: none;
    }

    .legal-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px;
    }

    .legal-nav a {
        min-width: 0;
    }

    .legal-contact-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legal-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-cta-actions {
        width: 100%;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 700px) {

    .legal-hero {
        padding: 78px 0 65px;
    }

    .legal-hero h1 {
        font-size: clamp(
            2.45rem,
            10vw,
            3.55rem
        );
    }

    .legal-hero p {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .legal-updated {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        padding: 12px 15px;
    }

    .legal-section {
        padding: 65px 0 80px;
    }

    .legal-nav {
        display: flex;
        flex-direction: row;
        gap: 7px;
        padding: 5px 9px 12px;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .legal-nav a {
        flex: 0 0 auto;
        padding: 9px 12px;
        border-color: rgba(255, 255, 255, 0.055);
        background:
            rgba(255, 255, 255, 0.025);
        white-space: nowrap;
    }

    .legal-nav a:hover {
        padding-left: 12px;
    }

    .legal-content {
        gap: 17px;
    }

    .legal-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 27px 23px;
        border-radius: 14px;
    }

    .legal-card::after {
        left: 23px;
        right: 23px;
    }

    .legal-card-number {
        width: 45px;
        height: 45px;
        border-radius: 11px;
    }

    .legal-card h2 {
        font-size: 1.4rem;
    }

    .legal-card p {
        font-size: 0.91rem;
        line-height: 1.78;
    }

    .legal-card li {
        font-size: 0.89rem;
    }

    .legal-contact-links {
        grid-template-columns: 1fr;
    }

    .legal-cta {
        padding-bottom: 80px;
    }

    .legal-cta-box {
        gap: 29px;
        padding: 36px 26px;
        border-radius: 15px;
    }

    .legal-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .legal-cta-actions .btn {
        width: 100%;
    }

    .legal-cta-link {
        text-align: center;
    }
}


/* ============================================================
   SMALL PHONES
============================================================ */

@media (max-width: 480px) {

    .legal-hero {
        padding: 65px 0 55px;
    }

    .legal-hero .section-label {
        font-size: 0.63rem;
    }

    .legal-hero h1 {
        font-size: 2.25rem;
        letter-spacing: -0.035em;
    }

    .legal-hero p {
        font-size: 0.9rem;
    }

    .legal-section {
        padding: 52px 0 68px;
    }

    .legal-card {
        padding: 23px 19px;
    }

    .legal-card::after {
        left: 19px;
        right: 19px;
    }

    .legal-card h2 {
        font-size: 1.28rem;
    }

    .legal-card-label {
        font-size: 0.59rem;
    }

    .legal-card p {
        font-size: 0.89rem;
    }

    .legal-card li {
        padding-left: 21px;
        font-size: 0.87rem;
    }

    .legal-highlight {
        padding: 18px 18px;
    }

    .legal-highlight p {
        font-size: 0.84rem;
    }

    .legal-contact-links a {
        padding: 13px 14px;
    }

    .legal-cta-box {
        padding: 31px 21px;
    }

    .legal-cta-box h2 {
        font-size: 2rem;
    }

    .legal-cta-box p {
        font-size: 0.88rem;
    }
}


/* ============================================================
   VERY SMALL PHONES
============================================================ */

@media (max-width: 380px) {

    .legal-hero {
        padding: 58px 0 48px;
    }

    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-card {
        padding: 21px 17px;
    }

    .legal-card h2 {
        font-size: 1.2rem;
    }

    .legal-card p {
        font-size: 0.86rem;
    }

    .legal-cta-box {
        padding: 28px 18px;
    }
}


/* ============================================================
   ACCESSIBILITY
============================================================ */

.legal-nav a:focus-visible,
.legal-contact-links a:focus-visible,
.legal-cta-link:focus-visible {
    outline: 2px solid #f5b942;
    outline-offset: 3px;
}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .legal-card,
    .legal-nav a,
    .legal-contact-links a,
    .legal-cta-link {
        transition: none;
    }
}
```
