/* ========================================
   Grandparty - Global Styles
   Main stylesheet for event agency site
   Last updated: 2026-04-14
   Author: frontend team
   ======================================== */

/* --- Reset and base typography --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* we use Inter from google fonts but fallback to system */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&amp;family=Playfair+Display:wght@400;500;600;700;800&amp;display=swap');

:root {
    --clr-midnight: #0b0e13;
    --clr-charcoal: #1a1e27;
    --clr-slate: #2c3242;
    --clr-pewter: #4a5568;
    --clr-ash: #8896a7;
    --clr-cloud: #c9d1db;
    --clr-ivory: #f0f2f5;
    --clr-snow: #fafbfc;
    --clr-gold: #c8a44e;
    --clr-gold-muted: #a88a3d;
    --clr-gold-light: #e8d5a0;
    --clr-crimson: #8b2f3a;
    --clr-emerald: #2d6a4f;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-subtle: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-heavy: 0 8px 40px rgba(0,0,0,0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--clr-snow);
    color: var(--clr-charcoal);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* links base */
a {
    color: var(--clr-gold-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}
a:hover {
    color: var(--clr-gold);
}

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

/* ========================================
   HEADER / NAVIGATION - .rvk3-topbar
   Main site navigation component
   ======================================== */

.rvk3-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(11, 14, 19, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 164, 78, 0.15);
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* logo area */
.qt8-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.qt8-brand .jw2-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}
.qt8-brand .nx5-brand-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-gold);
    letter-spacing: 0.5px;
}

/* desktop nav links */
.pg4-nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
}
.pg4-nav-list .uf7-nav-item {
    position: relative;
}
.pg4-nav-list .uf7-nav-item .kd9-link {
    display: block;
    padding: 8px 16px;
    color: var(--clr-cloud);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}
.pg4-nav-list .uf7-nav-item .kd9-link:hover {
    color: var(--clr-gold);
    background-color: rgba(200, 164, 78, 0.08);
}

/* burger menu toggle - mobile only */
.bz6-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1100;
}
.bz6-burger .xr3-line {
    width: 26px;
    height: 2px;
    background-color: var(--clr-gold);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* burger animation when open */
.bz6-burger.m7q-active .xr3-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.bz6-burger.m7q-active .xr3-line:nth-child(2) {
    opacity: 0;
}
.bz6-burger.m7q-active .xr3-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* mobile menu overlay */
.hy4-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(11, 14, 19, 0.98);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.hy4-mobile-menu.vn2-visible {
    display: flex;
}
.hy4-mobile-menu .tw8-mob-link {
    font-size: 1.2rem;
    color: var(--clr-cloud);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}
.hy4-mobile-menu .tw8-mob-link:hover {
    color: var(--clr-gold);
    background-color: rgba(200, 164, 78, 0.1);
}

/* ========================================
   HERO SECTION - .wk5-hero
   Main landing section with fullscreen bg
   ======================================== */

.wk5-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--clr-midnight);
    padding: 120px 2rem 80px;
}

/* background image overlay technique */
.wk5-hero .tp2-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
    filter: brightness(0.5);
}

/* decorative corner lines */
.wk5-hero::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 120px;
    height: 120px;
    border-top: 2px solid var(--clr-gold);
    border-left: 2px solid var(--clr-gold);
    z-index: 3;
    opacity: 0.4;
}
.wk5-hero::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    border-bottom: 2px solid var(--clr-gold);
    border-right: 2px solid var(--clr-gold);
    z-index: 3;
    opacity: 0.4;
}

.wk5-hero .gf3-hero-inner {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 820px;
}

.wk5-hero .aw6-pretitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 20px;
    padding: 6px 20px;
    border: 1px solid rgba(200, 164, 78, 0.3);
    border-radius: 2px;
}

.wk5-hero .lr8-main-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    color: var(--clr-snow);
    line-height: 1.15;
    margin-bottom: 24px;
}

.wk5-hero .lr8-main-title .dz4-accent {
    color: var(--clr-gold);
}

.wk5-hero .qp7-subtitle {
    font-size: 1.1rem;
    color: var(--clr-ash);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.wk5-hero .fm1-cta-wrap {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* primary CTA link styled as button */
.yb3-cta-primary {
    display: inline-block;
    padding: 14px 36px;
    background-color: var(--clr-gold);
    color: var(--clr-midnight);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    text-transform: uppercase;
}
.yb3-cta-primary:hover {
    background-color: var(--clr-gold-muted);
    color: var(--clr-midnight);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200, 164, 78, 0.3);
}

/* secondary CTA */
.ej5-cta-secondary {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    text-transform: uppercase;
}
.ej5-cta-secondary:hover {
    background-color: rgba(200, 164, 78, 0.1);
    transform: translateY(-2px);
}

/* ========================================
   SECTION WRAPPER - common section styles
   Used across all page sections
   ======================================== */

.rv9-section {
    padding: 100px 2rem;
    position: relative;
    overflow: hidden;
}

/* dark variant bg */
.rv9-section.bn3-dark {
    background-color: var(--clr-midnight);
    color: var(--clr-cloud);
}

/* charcoal variant */
.rv9-section.jt6-charcoal {
    background-color: var(--clr-charcoal);
    color: var(--clr-cloud);
}

/* light variant */
.rv9-section.pk2-light {
    background-color: var(--clr-ivory);
}

.rv9-section .uw4-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* section heading block */
.hx8-section-head {
    margin-bottom: 60px;
}
.hx8-section-head .ob3-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 14px;
}
.hx8-section-head .vf6-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hx8-section-head .cb1-desc {
    font-size: 1rem;
    color: var(--clr-pewter);
    max-width: 640px;
    line-height: 1.8;
}
.bn3-dark .hx8-section-head .cb1-desc,
.jt6-charcoal .hx8-section-head .cb1-desc {
    color: var(--clr-ash);
}

/* ========================================
   SECTION 1 - .mp4-intro (homepage)
   Staggered two-column intro layout
   ======================================== */

.mp4-intro .zq9-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mp4-intro .ae2-text-col {
    padding-right: 20px;
}

.mp4-intro .ae2-text-col .nk7-paragraph {
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.85;
    color: var(--clr-pewter);
}

.mp4-intro .ae2-text-col .tx3-highlight-box {
    padding: 24px;
    border-left: 3px solid var(--clr-gold);
    background-color: rgba(200, 164, 78, 0.04);
    margin: 28px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.mp4-intro .ae2-text-col .tx3-highlight-box .wj8-quote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--clr-slate);
    line-height: 1.7;
}

.mp4-intro .dp5-visual-col {
    position: relative;
}
.mp4-intro .dp5-visual-col .gy1-main-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-heavy);
}
/* decorative floating element behind photo */
.mp4-intro .dp5-visual-col::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--clr-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.25;
}

/* ========================================
   SECTION 2 - .fh7-services (homepage)
   asymmetric grid with featured service
   ======================================== */

.fh7-services .kr2-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.fh7-services .ev8-featured {
    grid-row: 1 / 3;
    position: relative;
    background-color: var(--clr-charcoal);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}
.fh7-services .ev8-featured .rp6-bg-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 1;
}
.fh7-services .ev8-featured .nm3-content {
    position: relative;
    z-index: 5;
}
.fh7-services .ev8-featured .nm3-content .sq4-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-snow);
    margin-bottom: 12px;
}
.fh7-services .ev8-featured .nm3-content .bl5-detail {
    font-size: 0.92rem;
    color: var(--clr-ash);
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 460px;
}
.fh7-services .ev8-featured .nm3-content .yb3-cta-primary {
    align-self: flex-start;
}

/* smaller service panels */
.fh7-services .wt4-panel {
    background-color: var(--clr-charcoal);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.fh7-services .wt4-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(200, 164, 78, 0.12);
}
.fh7-services .wt4-panel .gk1-panel-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-snow);
    margin-bottom: 10px;
}
.fh7-services .wt4-panel .rx6-panel-text {
    font-size: 0.88rem;
    color: var(--clr-ash);
    line-height: 1.7;
    margin-bottom: 16px;
}
.fh7-services .wt4-panel .hz9-panel-link {
    color: var(--clr-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.fh7-services .wt4-panel .hz9-panel-link:hover {
    letter-spacing: 1.5px;
}

/* decorative gold dot */
.fh7-services .wt4-panel::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 8px;
    height: 8px;
    background-color: var(--clr-gold);
    border-radius: 50%;
    opacity: 0.5;
}

/* ========================================
   SECTION 3 - .qm6-about-strip
   Horizontal strip with offset image
   ======================================== */

.qm6-about-strip .j3w-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.qm6-about-strip .ux1-info-block {
    padding-top: 20px;
}
.qm6-about-strip .ux1-info-block .eg4-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--clr-charcoal);
    margin-bottom: 20px;
    line-height: 1.7;
}
.qm6-about-strip .ux1-info-block .nk7-paragraph {
    font-size: 0.92rem;
    color: var(--clr-pewter);
    margin-bottom: 16px;
    line-height: 1.85;
}

/* stat items inline */
.qm6-about-strip .bh5-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--clr-cloud);
}
.qm6-about-strip .bh5-stats-row .yl3-stat {
    text-align: center;
}
.qm6-about-strip .bh5-stats-row .yl3-stat .cd8-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-gold);
    display: block;
}
.qm6-about-strip .bh5-stats-row .yl3-stat .qf2-label {
    font-size: 0.78rem;
    color: var(--clr-pewter);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* offset photo column */
.qm6-about-strip .mw8-photo-stack {
    position: relative;
}
.qm6-about-strip .mw8-photo-stack .kp4-photo-main {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}
.qm6-about-strip .mw8-photo-stack .vr2-photo-small {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 4px solid var(--clr-snow);
    box-shadow: var(--shadow-heavy);
}

/* ========================================
   SECTION 4 - .nc3-experience
   Timeline-style vertical layout
   ======================================== */

.nc3-experience .fx7-timeline {
    position: relative;
    padding-left: 60px;
}
/* vertical line */
.nc3-experience .fx7-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--clr-gold);
    opacity: 0.3;
}

.nc3-experience .fx7-timeline .dy9-step {
    position: relative;
    margin-bottom: 50px;
    padding: 28px 32px;
    background-color: rgba(200, 164, 78, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(200, 164, 78, 0.1);
}
/* timeline dot */
.nc3-experience .fx7-timeline .dy9-step::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 32px;
    width: 14px;
    height: 14px;
    background-color: var(--clr-gold);
    border-radius: 50%;
    border: 3px solid var(--clr-snow);
    box-shadow: 0 0 0 3px rgba(200, 164, 78, 0.2);
}

.nc3-experience .fx7-timeline .dy9-step .ka5-step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--clr-charcoal);
}
.nc3-experience .fx7-timeline .dy9-step .rf4-step-text {
    font-size: 0.9rem;
    color: var(--clr-pewter);
    line-height: 1.8;
}
.bn3-dark .nc3-experience .fx7-timeline .dy9-step .ka5-step-title {
    color: var(--clr-snow);
}
.bn3-dark .nc3-experience .fx7-timeline .dy9-step .rf4-step-text {
    color: var(--clr-ash);
}
.bn3-dark .nc3-experience .fx7-timeline .dy9-step {
    background-color: rgba(200, 164, 78, 0.06);
    border-color: rgba(200, 164, 78, 0.12);
}
.bn3-dark .nc3-experience .fx7-timeline .dy9-step::before {
    border-color: var(--clr-midnight);
}

/* ========================================
   SECTION 5 - .pw2-packages
   Stacked horizontal cards
   ======================================== */

.pw2-packages .zt1-package {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
    padding: 28px;
    background-color: var(--clr-snow);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    align-items: center;
}
.pw2-packages .zt1-package:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(200, 164, 78, 0.2);
}

.pw2-packages .zt1-package .oh6-pkg-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.pw2-packages .zt1-package .sf8-pkg-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pw2-packages .zt1-package .sf8-pkg-body .bp4-pkg-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-charcoal);
}
.pw2-packages .zt1-package .sf8-pkg-body .xc7-pkg-desc {
    font-size: 0.9rem;
    color: var(--clr-pewter);
    line-height: 1.75;
}
.pw2-packages .zt1-package .sf8-pkg-body .jn2-pkg-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0;
}
.pw2-packages .zt1-package .sf8-pkg-body .jn2-pkg-features .ge5-feat {
    padding: 4px 14px;
    background-color: rgba(200, 164, 78, 0.08);
    border: 1px solid rgba(200, 164, 78, 0.15);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--clr-gold-muted);
    font-weight: 500;
}

/* ========================================
   SECTION 6 - .tb8-blog
   Masonry-like blog layout
   ======================================== */

.tb8-blog .cu2-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tb8-blog .cu2-blog-grid .ax9-post {
    background-color: var(--clr-snow);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}
.tb8-blog .cu2-blog-grid .ax9-post:first-child {
    grid-column: 1 / 3;
}
.tb8-blog .cu2-blog-grid .ax9-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.tb8-blog .cu2-blog-grid .ax9-post .dn7-post-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.tb8-blog .cu2-blog-grid .ax9-post:first-child .dn7-post-img {
    height: 300px;
}

.tb8-blog .cu2-blog-grid .ax9-post .jf3-post-body {
    padding: 24px;
}
.tb8-blog .cu2-blog-grid .ax9-post .jf3-post-body .ew2-post-date {
    display: block;
    font-size: 0.75rem;
    color: var(--clr-ash);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.tb8-blog .cu2-blog-grid .ax9-post .jf3-post-body .pq5-post-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-charcoal);
    margin-bottom: 10px;
    line-height: 1.4;
}
.tb8-blog .cu2-blog-grid .ax9-post .jf3-post-body .vc8-post-excerpt {
    font-size: 0.88rem;
    color: var(--clr-pewter);
    line-height: 1.7;
    margin-bottom: 14px;
}
.tb8-blog .cu2-blog-grid .ax9-post .jf3-post-body .hz9-panel-link {
    color: var(--clr-gold);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   SECTION 7 - .ye3-faq
   Accordion-style FAQ
   ======================================== */

.ye3-faq .mr5-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.ye3-faq .mr5-faq-list .gs4-faq-item {
    border-bottom: 1px solid rgba(200, 164, 78, 0.15);
    margin-bottom: 4px;
}
.ye3-faq .mr5-faq-list .gs4-faq-item .bw7-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
}
.ye3-faq .mr5-faq-list .gs4-faq-item .bw7-question .ht4-q-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-charcoal);
}
.bn3-dark .ye3-faq .mr5-faq-list .gs4-faq-item .bw7-question .ht4-q-text {
    color: var(--clr-cloud);
}
.ye3-faq .mr5-faq-list .gs4-faq-item .bw7-question .zx1-toggle {
    width: 28px;
    height: 28px;
    border: 2px solid var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 16px;
    position: relative;
}
/* plus/minus using pseudo */
.ye3-faq .mr5-faq-list .gs4-faq-item .bw7-question .zx1-toggle::before {
    content: '';
    width: 12px;
    height: 2px;
    background-color: var(--clr-gold);
    position: absolute;
}
.ye3-faq .mr5-faq-list .gs4-faq-item .bw7-question .zx1-toggle::after {
    content: '';
    width: 2px;
    height: 12px;
    background-color: var(--clr-gold);
    position: absolute;
    transition: var(--transition-smooth);
}
.ye3-faq .mr5-faq-list .gs4-faq-item.ub6-open .bw7-question .zx1-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}
.ye3-faq .mr5-faq-list .gs4-faq-item.ub6-open .bw7-question .zx1-toggle {
    background-color: var(--clr-gold);
}
.ye3-faq .mr5-faq-list .gs4-faq-item.ub6-open .bw7-question .zx1-toggle::before {
    background-color: var(--clr-midnight);
}

.ye3-faq .mr5-faq-list .gs4-faq-item .wp3-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.ye3-faq .mr5-faq-list .gs4-faq-item.ub6-open .wp3-answer {
    max-height: 400px;
    padding-bottom: 20px;
}
.ye3-faq .mr5-faq-list .gs4-faq-item .wp3-answer .lc6-a-text {
    font-size: 0.9rem;
    color: var(--clr-pewter);
    line-height: 1.8;
}
.bn3-dark .ye3-faq .mr5-faq-list .gs4-faq-item .wp3-answer .lc6-a-text {
    color: var(--clr-ash);
}

/* ========================================
   SECTION 8 - .xj4-pricing
   Horizontal pricing table
   ======================================== */

.xj4-pricing .nd8-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}
.xj4-pricing .nd8-table-wrap .aq2-price-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--clr-snow);
    min-width: 700px;
}
.xj4-pricing .nd8-table-wrap .aq2-price-table .fy1-thead {
    background-color: var(--clr-charcoal);
}
.xj4-pricing .nd8-table-wrap .aq2-price-table .fy1-thead .rl3-th {
    padding: 18px 24px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-gold);
    border-bottom: 2px solid var(--clr-gold);
}
.xj4-pricing .nd8-table-wrap .aq2-price-table .wv5-tbody .km8-tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}
.xj4-pricing .nd8-table-wrap .aq2-price-table .wv5-tbody .km8-tr:hover {
    background-color: rgba(200, 164, 78, 0.04);
}
.xj4-pricing .nd8-table-wrap .aq2-price-table .wv5-tbody .km8-tr .jx6-td {
    padding: 16px 24px;
    font-size: 0.9rem;
    color: var(--clr-slate);
}
.xj4-pricing .nd8-table-wrap .aq2-price-table .wv5-tbody .km8-tr .jx6-td.po3-name {
    font-weight: 600;
    color: var(--clr-charcoal);
}

/* ========================================
   SECTION 9 - .rg5-contact
   Split contact with form
   ======================================== */

.rg5-contact .dw3-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.rg5-contact .dw3-contact-grid .pt6-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.rg5-contact .dw3-contact-grid .pt6-info-side .vn4-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.rg5-contact .dw3-contact-grid .pt6-info-side .vn4-contact-item .hb2-contact-marker {
    width: 44px;
    height: 44px;
    background-color: var(--clr-gold);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-midnight);
    font-weight: 800;
    font-size: 0.85rem;
}
.rg5-contact .dw3-contact-grid .pt6-info-side .vn4-contact-item .yw3-contact-data {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.rg5-contact .dw3-contact-grid .pt6-info-side .vn4-contact-item .yw3-contact-data .me7-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-ash);
    font-weight: 600;
}
.rg5-contact .dw3-contact-grid .pt6-info-side .vn4-contact-item .yw3-contact-data .fa9-value {
    font-size: 0.95rem;
    color: var(--clr-charcoal);
    font-weight: 500;
}
.rg5-contact .dw3-contact-grid .pt6-info-side .vn4-contact-item .yw3-contact-data .fa9-value a {
    color: var(--clr-charcoal);
}
.rg5-contact .dw3-contact-grid .pt6-info-side .vn4-contact-item .yw3-contact-data .fa9-value a:hover {
    color: var(--clr-gold);
}

/* contact form */
.rg5-contact .dw3-contact-grid .oc5-form-side {
    background-color: var(--clr-ivory);
    padding: 40px;
    border-radius: var(--radius-lg);
}
.rg5-contact .dw3-contact-grid .oc5-form-side .lw4-form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--clr-charcoal);
}
.rg5-contact .dw3-contact-grid .oc5-form-side .qx2-field {
    margin-bottom: 18px;
}
.rg5-contact .dw3-contact-grid .oc5-form-side .qx2-field .hs7-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    color: var(--clr-slate);
}
.rg5-contact .dw3-contact-grid .oc5-form-side .qx2-field .wn8-input,
.rg5-contact .dw3-contact-grid .oc5-form-side .qx2-field .jv3-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--clr-cloud);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--clr-charcoal);
    background-color: var(--clr-snow);
    transition: var(--transition-smooth);
}
.rg5-contact .dw3-contact-grid .oc5-form-side .qx2-field .wn8-input:focus,
.rg5-contact .dw3-contact-grid .oc5-form-side .qx2-field .jv3-textarea:focus {
    outline: none;
    border-color: var(--clr-gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 78, 0.1);
}
.rg5-contact .dw3-contact-grid .oc5-form-side .qx2-field .jv3-textarea {
    min-height: 120px;
    resize: vertical;
}

.rg5-contact .dw3-contact-grid .oc5-form-side .yb3-cta-primary {
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

/* ========================================
   SECTION 10 - .bk1-cta-band
   Full-width call to action strip
   ======================================== */

.bk1-cta-band {
    position: relative;
    padding: 80px 2rem;
    background-color: var(--clr-charcoal);
    overflow: hidden;
    text-align: center;
}
.bk1-cta-band .tp2-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}
/* decorative horizontal line */
.bk1-cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--clr-gold);
    z-index: 3;
}
.bk1-cta-band .uw4-container {
    position: relative;
    z-index: 5;
    max-width: 700px;
    margin: 0 auto;
}
.bk1-cta-band .gt7-band-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--clr-snow);
    margin-bottom: 16px;
    line-height: 1.3;
}
.bk1-cta-band .rc5-band-text {
    font-size: 0.95rem;
    color: var(--clr-ash);
    margin-bottom: 32px;
    line-height: 1.8;
}

/* ========================================
   FOOTER - .gx4-footer
   Multi-column site footer
   ======================================== */

.gx4-footer {
    background-color: var(--clr-midnight);
    color: var(--clr-ash);
    padding: 80px 2rem 32px;
}

.gx4-footer .uw4-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gx4-footer .nj7-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.gx4-footer .nj7-footer-grid .ks2-footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* footer brand block */
.gx4-footer .nj7-footer-grid .ks2-footer-col .qt8-brand {
    margin-bottom: 8px;
}
.gx4-footer .nj7-footer-grid .ks2-footer-col .rd9-footer-desc {
    font-size: 0.85rem;
    color: var(--clr-ash);
    line-height: 1.7;
    max-width: 300px;
}

/* footer column title */
.gx4-footer .nj7-footer-grid .ks2-footer-col .wf5-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-gold);
    margin-bottom: 4px;
}

/* footer links */
.gx4-footer .nj7-footer-grid .ks2-footer-col .uk3-f-link {
    font-size: 0.85rem;
    color: var(--clr-ash);
    transition: var(--transition-smooth);
}
.gx4-footer .nj7-footer-grid .ks2-footer-col .uk3-f-link:hover {
    color: var(--clr-gold);
    padding-left: 4px;
}

/* footer contact items */
.gx4-footer .nj7-footer-grid .ks2-footer-col .pv8-f-contact {
    font-size: 0.85rem;
    color: var(--clr-ash);
    line-height: 1.6;
}
.gx4-footer .nj7-footer-grid .ks2-footer-col .pv8-f-contact a {
    color: var(--clr-ash);
}
.gx4-footer .nj7-footer-grid .ks2-footer-col .pv8-f-contact a:hover {
    color: var(--clr-gold);
}

/* footer bottom bar */
.gx4-footer .ep2-footer-bottom {
    border-top: 1px solid rgba(200, 164, 78, 0.15);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.gx4-footer .ep2-footer-bottom .tm6-copy {
    font-size: 0.78rem;
    color: var(--clr-pewter);
}
.gx4-footer .ep2-footer-bottom .ib4-legal-links {
    display: flex;
    gap: 20px;
}
.gx4-footer .ep2-footer-bottom .ib4-legal-links .uk3-f-link {
    font-size: 0.78rem;
    color: var(--clr-pewter);
}
.gx4-footer .ep2-footer-bottom .ib4-legal-links .uk3-f-link:hover {
    color: var(--clr-gold);
}

/* ========================================
   UTILITY & DECORATION
   Reusable decorative + layout helpers
   ======================================== */

/* decorative section divider */
.dn4-divider {
    width: 60px;
    height: 3px;
    background-color: var(--clr-gold);
    margin: 20px 0;
    border-radius: 2px;
}

/* gold accent thin line */
.ah7-gold-line {
    width: 40px;
    height: 2px;
    background-color: var(--clr-gold);
    display: inline-block;
    margin-bottom: 12px;
}

/* decorative dots pattern */
.jk8-dots-pattern {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--clr-gold) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.12;
    z-index: 2;
    pointer-events: none;
}

/* decorative corner bracket */
.pn3-corner-decor {
    position: absolute;
    width: 60px;
    height: 60px;
    border-color: var(--clr-gold);
    opacity: 0.2;
    pointer-events: none;
    z-index: 2;
}
.pn3-corner-decor.dl8-top-left {
    top: 20px;
    left: 20px;
    border-top: 2px solid;
    border-left: 2px solid;
}
.pn3-corner-decor.wr9-bottom-right {
    bottom: 20px;
    right: 20px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

/* simple inline link style for body text */
.nh6-inline-link {
    color: var(--clr-gold-muted);
    font-weight: 500;
    border-bottom: 1px solid rgba(200, 164, 78, 0.3);
    transition: var(--transition-smooth);
}
.nh6-inline-link:hover {
    color: var(--clr-gold);
    border-bottom-color: var(--clr-gold);
}

/* tag/label small */
.wy5-tag {
    display: inline-block;
    padding: 3px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
    border-radius: 2px;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   Mobile-first adjustments
   ======================================== */

@media (max-width: 1024px) {
    /* medium screens */
    .mp4-intro .zq9-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .fh7-services .kr2-grid {
        grid-template-columns: 1fr;
    }
    .fh7-services .ev8-featured {
        min-height: 360px;
    }
    .qm6-about-strip .j3w-split {
        grid-template-columns: 1fr;
    }
    .tb8-blog .cu2-blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tb8-blog .cu2-blog-grid .ax9-post:first-child {
        grid-column: auto;
    }
    .rg5-contact .dw3-contact-grid {
        grid-template-columns: 1fr;
    }
    .gx4-footer .nj7-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pw2-packages .zt1-package {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* show burger, hide desktop nav */
    .bz6-burger {
        display: flex;
    }
    .pg4-nav-list {
        display: none;
    }

    .rvk3-topbar {
        padding: 0 1rem;
    }

    .rv9-section {
        padding: 60px 1rem;
    }

    .wk5-hero {
        padding: 100px 1rem 60px;
        min-height: 80vh;
    }
    .wk5-hero .lr8-main-title {
        font-size: 2rem;
    }
    .wk5-hero::before,
    .wk5-hero::after {
        width: 60px;
        height: 60px;
        top: 20px;
        left: 20px;
    }
    .wk5-hero::after {
        bottom: 20px;
        right: 20px;
        top: auto;
        left: auto;
    }

    .hx8-section-head {
        margin-bottom: 36px;
    }
    .hx8-section-head .vf6-heading {
        font-size: 1.6rem;
    }

    .tb8-blog .cu2-blog-grid {
        grid-template-columns: 1fr;
    }

    .gx4-footer .nj7-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gx4-footer .ep2-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .qm6-about-strip .bh5-stats-row {
        flex-wrap: wrap;
        gap: 24px;
    }

    .nc3-experience .fx7-timeline {
        padding-left: 40px;
    }
    .nc3-experience .fx7-timeline::before {
        left: 12px;
    }
    .nc3-experience .fx7-timeline .dy9-step::before {
        left: -34px;
    }

    .xj4-pricing .nd8-table-wrap {
        border-radius: var(--radius-md);
    }

    .qm6-about-strip .mw8-photo-stack .vr2-photo-small {
        display: none;
    }
}

@media (max-width: 480px) {
    .wk5-hero .fm1-cta-wrap {
        flex-direction: column;
        align-items: center;
    }
    .yb3-cta-primary,
    .ej5-cta-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   PAGE-SPECIFIC OVERRIDES
   Styles for subpages with unique layouts
   ======================================== */

/* about page - wide photo band */
.ks9-photo-band {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.ks9-photo-band .tp2-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.ks9-photo-band .gz2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 14, 19, 0.6);
    z-index: 2;
}
.ks9-photo-band .gf3-hero-inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 2rem;
}
.ks9-photo-band .gf3-hero-inner .lr8-main-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--clr-snow);
    font-weight: 800;
}

/* mosaic grid for experience page */
.np7-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px;
    gap: 16px;
}
.np7-mosaic .vq2-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}
.np7-mosaic .vq2-tile .tp2-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}
.np7-mosaic .vq2-tile:hover .tp2-bg-layer {
    transform: scale(1.05);
}
.np7-mosaic .vq2-tile .gz2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 14, 19, 0.5);
    z-index: 2;
}
.np7-mosaic .vq2-tile .nr8-tile-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 5;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-snow);
}
/* first tile spans 2 cols */
.np7-mosaic .vq2-tile:first-child {
    grid-column: 1 / 3;
}
/* last tile spans 2 cols */
.np7-mosaic .vq2-tile:last-child {
    grid-column: 3 / 5;
}

@media (max-width: 768px) {
    .np7-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .np7-mosaic .vq2-tile {
        min-height: 180px;
    }
    .np7-mosaic .vq2-tile:first-child,
    .np7-mosaic .vq2-tile:last-child {
        grid-column: auto;
    }
    .ks9-photo-band {
        height: 280px;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   Fade-in on scroll observer
   ======================================== */
.zf9-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.zf9-animate.ey2-visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger delays for children */
.zf9-animate[data-delay="100"] { transition-delay: 100ms; }
.zf9-animate[data-delay="200"] { transition-delay: 200ms; }
.zf9-animate[data-delay="300"] { transition-delay: 300ms; }
.zf9-animate[data-delay="400"] { transition-delay: 400ms; }

/* ========================================
   CONTENT-SPECIFIC: lists in body text
   Styled bullet lists for article content
   ======================================== */

.gm4-content-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}
.gm4-content-list .fu7-list-item {
    padding: 10px 0 10px 24px;
    position: relative;
    font-size: 0.92rem;
    color: var(--clr-pewter);
    line-height: 1.7;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.gm4-content-list .fu7-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background-color: var(--clr-gold);
    border-radius: 2px;
    transform: rotate(45deg);
}

.bn3-dark .gm4-content-list .fu7-list-item {
    color: var(--clr-ash);
    border-bottom-color: rgba(255,255,255,0.05);
}

/* wide text section for legal/policy pages */
.ht2-text-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 2rem 80px;
}
.ht2-text-page .vf6-heading {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--clr-charcoal);
}
.ht2-text-page .nk7-paragraph {
    font-size: 0.92rem;
    color: var(--clr-pewter);
    line-height: 1.85;
    margin-bottom: 18px;
}
.ht2-text-page .ka5-step-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--clr-charcoal);
}

/* ========================================
   NEW INTERACTIVE STYLES
   Added for Game Selection & Header Scroll
   ======================================== */

.rvk3-topbar.kw2-scrolled {
    background-color: rgba(11, 14, 19, 0.95);
    border-bottom-color: rgba(200, 164, 78, 0.3);
    padding: 10px 2rem;
}

/* game selector styles */
.jx9-games-nav {
    display: grid;
    gap: 12px;
}

.jx9-game-btn {
    text-align: left;
    padding: 20px;
    border: 1px solid rgba(200, 164, 78, 0.2);
    border-radius: 4px;
    color: var(--clr-ash);
    background: transparent;
    font-family: var(--font-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.jx9-game-btn .jx10-symbol {
    font-size: 1.2rem;
    margin-right: 15px;
    color: var(--clr-gold);
}

.jx9-game-btn:hover {
    border-color: rgba(200, 164, 78, 0.5);
    background-color: rgba(200, 164, 78, 0.05);
}

.jx9-game-btn.jx9-active {
    background-color: rgba(200, 164, 78, 0.1);
    border-color: var(--clr-gold) !important;
    color: var(--clr-gold) !important;
}

.rt1-info-display {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 164, 78, 0.1);
    padding: 50px;
    border-radius: 8px;
    position: relative;
    min-height: 480px;
}

.rt2-game-info {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.rt2-game-info.rt2-active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* responsive refinements for selector */
@media (max-width: 900px) {
    .jx8-selector-layout {
        grid-template-columns: 1fr !important;
    }
    .rt1-info-display {
        padding: 30px !important;
        min-height: auto !important;
    }
}

/* cookie popup styles */
.ck2-cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 500px;
    background: rgba(18, 22, 29, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 164, 78, 0.2);
    border-radius: 12px;
    z-index: 9999;
    padding: 25px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.ck2-cookie-banner.ck2-show {
    transform: translateX(-50%) translateY(0);
}

.ck2-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ck2-content p {
    font-size: 0.88rem;
    color: var(--clr-ash);
    line-height: 1.6;
}

.ck2-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.ck2-link {
    font-size: 0.8rem;
    color: var(--clr-gold);
    text-decoration: underline;
    opacity: 0.8;
}

.ck2-link:hover {
    opacity: 1;
}

.ck2-btn {
    padding: 8px 24px !important;
    font-size: 0.85rem !important;
}

@media (max-width: 600px) {
    .ck2-cookie-banner {
        bottom: 15px;
        padding: 20px;
    }
}
