*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-gold: #c5a059;
    --color-white: #ffffff;
    --gradient-gold: linear-gradient(to right, #ffd066 0%, #d48928 50%, #5e3205 100%);
    --font-serif: "Roboto Serif", Georgia, serif;
    --font-sans: "Roboto", Arial, sans-serif;
    --section-padding-x: 5.5rem;
    --hover-ease: 0.3s ease;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-white);
    background-color: #050b10;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: url("../img/hero-bg.png") no-repeat center / cover;
    display: flex;
    flex-direction: column;
    padding: 2.25rem var(--section-padding-x) 3rem;
}

.hero-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    padding: 1rem var(--section-padding-x) 1rem;
    position: sticky;
    z-index: 9999;
    top: 0;
    backdrop-filter: blur(20px);
}

.hero-logo img {
    width: 5.625rem;
    height: 5.625rem;
}

.hero-header-socials {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
}

.hero-social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-social svg {
    width: 2.25rem;
    height: 2.25rem;
}

.hero-social svg path {
    fill: var(--color-white);
    transition: fill var(--hover-ease);
}

.hero-social:hover svg path {
    fill: url(#socialGoldGradient);
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    white-space: nowrap;
    padding: 0.65rem 1.75rem;
    border-radius: 12px;
    border: none;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    isolation: isolate;
    transition: color var(--hover-ease), -webkit-text-fill-color var(--hover-ease), background var(--hover-ease);
    max-width: 400px;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 12px;
    padding: 1px;
    background: var(--gradient-gold);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 1;
    transition: opacity var(--hover-ease);
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    border-radius: 12px;
    background: var(--gradient-gold);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--hover-ease);
}

.btn:hover {
    background: none;
    -webkit-text-fill-color: var(--color-white);
    color: var(--color-white);
}

.btn:hover::before {
    opacity: 0;
}

.btn:hover::after {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50rem;
    padding: 2rem 0 3rem;
}

.hero-badge {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 20rem;
    height: 7.25rem;
    padding: 0.75rem 2rem;
    margin-bottom: 2.25rem;
}

.hero-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 1px;
    background: var(--gradient-gold);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.hero-badge-name {
    position: relative;
    z-index: 1;
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-badge-tagline {
    position: relative;
    z-index: 1;
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.35rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.375rem, 4.2vw, 3.5rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 1.75rem;
}

.hero-text {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
    max-width: 32rem;
    margin-bottom: 2.25rem;
}

.hero-content .btn {
    font-size: 1.375rem;
    padding: 1rem 2rem;
    text-transform: none;
}

.hero-header .btn-header {
    text-transform: uppercase;
    font-size: 0.9375rem;
    letter-spacing: 0.08em;
    padding: 1rem 2rem;
}

.about {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 36rem;
    padding: 5rem 5.5rem;
    background: url("../img/bg-2.png") no-repeat center / cover;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 38rem;
}

.about-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.about-title-line {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.about-title-divider {
    display: block;
    width: 4.5rem;
    height: 2px;
    background: var(--gradient-gold);
}

.about-text {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
    max-width: 32rem;
    margin-bottom: 2.5rem;
}

.about-btn {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 0.85rem 2rem;
}

.events {
    padding: 5rem 5.5rem 6rem;
    background-color: #050b10;
}

.events-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 3.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 75rem;
    margin: 0 auto;
}

.events-image {
    overflow: hidden;
    border-radius: 12px;
    line-height: 0;
}

.events-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center center;
    transition: transform var(--hover-ease);
}

.events-image:hover img {
    transform: scale(1.2);
}

.events-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    padding: 2.5rem 2.75rem;
}

.events-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: var(--gradient-gold);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.events-details {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.events-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: default;
}

.events-detail-icon {
    display: flex;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
}

.events-detail-icon svg {
    width: 100%;
    height: 100%;
}

.events-detail-text {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: var(--color-white);
    color: var(--color-white);
    transition: color var(--hover-ease), -webkit-text-fill-color var(--hover-ease);
}

.events-detail:hover .events-detail-text {
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.events-description {
    position: relative;
    z-index: 1;
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.events-btn {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 0.85rem 2rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.register {
    padding: 5rem 5.5rem 6rem;
    background-color: #050b10;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 75rem;
    margin: 0 auto;
}

.register-card {
    position: relative;
    background: transparent;
    border-radius: 12px;
    padding: 2.5rem 2.25rem;
}

.register-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: var(--gradient-gold);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.register-heading {
    position: relative;
    z-index: 1;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-divider {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.25rem 0 1.75rem;
}

.section-divider-line {
    flex: 1;
    max-width: 5.5rem;
    height: 1px;
    background: var(--gradient-gold);
}

.section-divider-diamond {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--gradient-gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.register-intro {
    position: relative;
    z-index: 1;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.75rem;
}

.register-form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row-2 .form-field {
    flex: 1;
    min-width: 0;
}

.form-field {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color var(--hover-ease);
}

.form-field::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.form-field:focus {
    border-color: rgba(212, 137, 40, 0.65);
}

.form-field-textarea {
    min-height: 6.5rem;
    resize: vertical;
}

.form-field-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23D48928' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-field-select option {
    color: #050b10;
    background: #fff;
}

.register-btn {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9375rem;
    letter-spacing: 0.08em;
    padding: 0.9rem 2rem;
}

.event-preview {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.event-preview-media {
    position: relative;
    flex-shrink: 0;
    width: 7.5rem;
    height: 7.5rem;
}

.event-preview-media img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.event-preview-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3.75rem;
    height: 3.75rem;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    transition: transform var(--hover-ease);
}

.event-preview-media:hover .event-preview-logo {
    transform: translate(-50%, -50%) scale(1.2);
}

.event-preview-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-preview-title {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.65rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.event-preview-meta {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.event-tickets-label {
    position: relative;
    z-index: 1;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.85rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ticket-options {
    position: relative;
    z-index: 1;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    padding: 0;
}

.ticket-option {
    cursor: pointer;
}

.ticket-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ticket-option-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color var(--hover-ease), background-color var(--hover-ease);
}

.ticket-option input:checked + .ticket-option-box {
    border-color: rgba(212, 137, 40, 0.55);
    background: rgba(212, 137, 40, 0.06);
}

.ticket-option-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ticket-option-title {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ticket-option-price {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ticket-option-desc {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.65);
}

.ticket-option-radio {
    flex-shrink: 0;
    width: 1.375rem;
    height: 1.375rem;
    border: 1px solid rgba(212, 137, 40, 0.75);
    border-radius: 50%;
    position: relative;
}

.ticket-option input:checked + .ticket-option-box .ticket-option-radio::after {
    content: "";
    position: absolute;
    inset: 0.25rem;
    border-radius: 50%;
    background: var(--gradient-gold);
}

.payment-note {
    position: relative;
    z-index: 1;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 1.25rem;
}

.payment-note-brand {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 500;
}

.payment-logos {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 18rem;
    margin: 0.85rem auto 0;
    opacity: 0.85;
}

.qr-section {
    padding: 0 5.5rem 6rem;
    background-color: #050b10;
}

.qr-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 75rem;
    margin: 0 auto;
    padding: 2.75rem 3rem;
    border-radius: 12px;
    background:
        radial-gradient(circle at 85% 50%, rgba(212, 137, 40, 0.08) 0%, transparent 45%),
        rgba(255, 255, 255, 0.02);
}

.qr-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: var(--gradient-gold);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.qr-content {
    position: relative;
    z-index: 1;
    max-width: 36rem;
}

.qr-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.qr-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 34rem;
}

.qr-code-wrap {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin-left: auto;
    padding: 1.25rem;
}

.qr-image {
    display: block;
    width: 11rem;
    height: 11rem;
    border-radius: 8px;
    background: #fff;
}

.qr-corner {
    position: absolute;
    display: flex;
    pointer-events: none;
}

.qr-corner svg {
    width: 3.2rem;
    height: auto;
}

.qr-corner-tl {
    top: 0;
    left: 0;
}

.qr-corner-br {
    right: 0;
    bottom: 0;
}

.highlights {
    padding: 5rem 5.5rem 6rem;
    background-color: #050b10;
}

.highlights-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 3.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

.highlights-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.highlights-item img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transform-origin: center center;
    transition: transform var(--hover-ease);
}

.highlights-item:hover img {
    transform: scale(1.2);
}

.highlights-item-video {
    padding: 1px;
    background: var(--gradient-gold);
}

.highlights-item-video img {
    border-radius: 15px;
}

.highlights-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: opacity var(--hover-ease), transform var(--hover-ease);
}

.highlights-play svg {
    width: 5rem;
    height: 5rem;
}

.highlights-play:hover {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.05);
}

.site-footer {
    width: 100%;
    background-color: #050b10;
    background-image: url("../img/footer-bg.png");
    background-repeat: repeat;
    background-position: center;
    padding: 4rem var(--section-padding-x) 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-brand img {
    width: 100%;
    max-width: 22rem;
    height: auto;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 1.25rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer-col {
    padding-left: 2.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-nav a {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.4;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: var(--color-white);
    color: var(--color-white);
    transition: color var(--hover-ease), -webkit-text-fill-color var(--hover-ease);
}

.footer-nav a:hover {
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copy,
.footer-legal {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--hover-ease);
}

.footer-legal a:hover {
    color: var(--color-white);
}

.footer-legal-divider {
    color: rgba(255, 255, 255, 0.35);
}
