/* Global Design System */
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@500;700;800;900&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap");

:root {
    --background: oklch(0.18 0.12 25);
    --foreground: oklch(0.98 0.02 60);
    --card: oklch(0.28 0.14 35 / 0.4);
    --card-foreground: oklch(0.98 0.02 60);
    --primary: oklch(0.72 0.22 45);
    --primary-foreground: oklch(0.15 0.08 25);
    --secondary: oklch(0.55 0.24 28);
    --secondary-foreground: oklch(0.98 0.02 60);
    --muted: oklch(0.32 0.08 30 / 0.5);
    --muted-foreground: oklch(0.85 0.04 50);
    --accent: oklch(0.85 0.18 75);
    --accent-foreground: oklch(0.15 0.08 25);
    --border: oklch(0.95 0.05 60 / 0.15);
    --ring: oklch(0.72 0.22 45);

    --gradient-hero: linear-gradient(135deg, oklch(0.50 0.24 25) 0%, oklch(0.62 0.24 35) 40%, oklch(0.78 0.20 55) 100%);
    --gradient-radial: radial-gradient(ellipse at 70% 30%, oklch(0.78 0.20 55) 0%, oklch(0.55 0.24 28) 50%, oklch(0.35 0.18 22) 100%);
    --gradient-card: linear-gradient(135deg, oklch(1 0 0 / 0.12), oklch(1 0 0 / 0.04));

    --shadow-glow: 0 30px 80px -20px oklch(0.55 0.24 28 / 0.55);
    --shadow-card: 0 20px 60px -25px oklch(0.20 0.10 25 / 0.6);

    --font-display: "Big Shoulders Display", sans-serif;
    --font-body: "Inter", sans-serif;
    --font-serif: "Cormorant Garamond", serif;
    --font-cinzel: "Cinzel", serif;
    --font-accent: "Playfair Display", serif;

    --radius: 0.75rem;
    --transition-speed: 400ms;
    --transition-curve: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: var(--border);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 100px;
}

body {
    background: var(--gradient-radial);
    background-attachment: fixed;
    color: var(--foreground);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    min-height: 100vh;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
}

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

/* Typography */
h1,
h2,
h3,
h4,
.font-display {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
}

.text-accent {
    color: var(--accent);
}

.text-muted {
    color: var(--muted-foreground);
}

.text-foreground {
    color: var(--foreground);
}

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
}

/* Custom UI Elements */
.glass {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid oklch(1 0 0 / 0.15);
}

.btn-primary {
    background: var(--foreground);
    color: var(--background);
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    transition: all var(--transition-speed);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary:hover {
    background: var(--accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    border: 1px solid oklch(1 0 0 / 0.4);
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    transition: all var(--transition-speed);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s;
}

header.scrolled {
    background: rgba(22, 11, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-cinzel);
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 1.5rem;
    text-shadow: 0 2px 24px rgba(245, 216, 168, 0.35);
}

.logo-subtext {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    margin-top: 0.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Header Action Group */
.nav-actions {
    gap: 1rem;
}

.btn-nav-toggle {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header:not(.scrolled) {
    padding: 1.25rem 0;
}

.nav-links {
    display: none;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    margin-left: 2rem;
}

.nav-links a:hover {
    color: var(--accent);
}

#menu-toggle {
    display: flex;
}

@media (min-width: 1024px) {
    #menu-toggle {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 8.2rem;
    padding-bottom: 3rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.3;
    pointer-events: none;
    background: radial-gradient(circle at 20% 80%, oklch(0.95 0.18 75) 0%, transparent 40%);
    mix-blend-mode: overlay;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(12, 1fr);
        text-align: left;
        gap: 2.5rem;
    }

    .hero-text {
        grid-column: span 6;
        z-index: 2;
    }

    .hero-image-container {
        grid-column: span 6;
        z-index: 1;
    }
}

.hero h1 {
    font-size: clamp(3rem, 11vw, 9rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-top: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .hero h1 {
        line-height: 0.85;
        margin-top: 1.5rem;
    }
}

.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    margin-top: 1.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    color: var(--foreground);
    opacity: 0.9;
}

@media (min-width: 1024px) {
    .hero-sub {
        margin-left: 0;
        margin-right: 0;
        margin-top: 2rem;
    }
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-actions {
        margin-top: 2.5rem;
        justify-content: flex-start;
    }
}

.hero-image {
    aspect-ratio: 4/5;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px -30px oklch(0.55 0.24 28 / 0.4);
    animation: floating-hero-perfect 6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes floating-hero-perfect {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 40px 100px -30px oklch(0.55 0.24 28 / 0.4);
    }

    50% {
        transform: translateY(-40px);
        box-shadow: 0 60px 120px -40px oklch(0.55 0.24 28 / 0.25);
    }
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: skewX(-25deg);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes float-refined {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(1deg);
    }

    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom-cinematic 12s linear infinite alternate;
}

@keyframes zoom-cinematic {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.2);
    }
}

.marquee-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    z-index: 0;
}

@media (min-width: 1024px) {
    .marquee-track {
        bottom: -2rem;
    }
}

.marquee-text {
    font-size: clamp(3rem, 12vw, 22rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    animation: marquee-scroll 60s linear infinite;
    padding-right: 2rem;
    text-transform: uppercase;
    font-weight: 900;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (min-width: 768px) {
    .marquee-text {
        -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
    }
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fade-up 0.8s var(--transition-curve) both;
}

/* Featured Event Card */
.event-card {
    border-radius: 2rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: var(--shadow-glow);
    min-height: 480px;
}

@media (min-width: 1024px) {
    .event-card {
        grid-template-columns: repeat(12, 1fr);
        min-height: 520px;
    }
}

.event-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .event-image {
        grid-column: span 7;
        aspect-ratio: auto;
    }
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-curve);
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .event-content {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .event-content {
        grid-column: span 5;
        padding: 4rem;
    }
}

.date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.75rem 1rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    z-index: 10;
}

@media (min-width: 640px) {
    .date-badge {
        top: 2rem;
        left: 2rem;
        padding: 1.25rem 1.5rem;
    }
}

.date-badge .day {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
}

@media (min-width: 640px) {
    .date-badge .day {
        font-size: 3.5rem;
    }
}

.date-badge .month {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    z-index: 10;
}

@media (min-width: 640px) {
    .featured-tag {
        top: 2rem;
        right: 2rem;
        padding: 0.6rem 1.25rem;
        font-size: 0.75rem;
    }
}

.featured-tag .pulse {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Gallery - Masonry-ish */
.gallery-grid {
    column-count: 1;
    column-gap: 1.25rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        column-count: 3;
    }
}

.gallery-item {
    margin-bottom: 1.25rem;
    break-inside: avoid;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    transition: transform 0.7s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Timeline */
.timeline-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.timeline-track::-webkit-scrollbar {
    display: none;
}

.timeline-item {
    flex: 0 0 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .timeline-item {
        flex: 0 0 25%;
    }
}

.dot {
    width: 1rem;
    height: 1rem;
    background: var(--accent);
    border-radius: 50%;
    margin: 1rem 0;
    position: relative;
}

.dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
    animation: ping 1.5s infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Sponsors Marquee */
@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.sponsor-marquee {
    display: flex;
    width: max-content;
    gap: 1rem;
    animation: marquee 40s linear infinite;
    padding: 1rem 0;
}

@media (min-width: 768px) {
    .sponsor-marquee {
        gap: 2rem;
        padding: 2rem 0;
    }
}

.sponsor-marquee:hover {
    animation-play-state: paused;
}

.sponsor-card {
    /* Professional fluid sizing with flexible height */
    width: clamp(130px, 22vw, 260px);
    min-height: clamp(75px, 12vw, 130px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 1.5vw, 1.5rem);
    border-radius: 1.25rem;
    transition: all 0.5s var(--transition-speed);
    flex-shrink: 0;
    text-decoration: none;
}

.sponsor-card-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sponsor-logo {
    max-height: clamp(2rem, 5vw, 4.5rem);
    max-width: 90%;
    width: auto;
    object-fit: contain;
    transition: all 0.5s var(--transition-curve);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.sponsor-name {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.1em;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    text-transform: uppercase;
    text-align: center;
    color: var(--foreground);
    line-height: 1.1;
}

.sponsor-role {
    font-family: var(--font-body);
    font-size: clamp(0.6rem, 1vw, 0.75rem);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    text-align: center;
}

/* Extra small tweaks */
@media (max-width: 500px) {
    .sponsor-card {
        width: clamp(120px, 40vw, 150px);
        min-height: 70px;
        border-radius: 1rem;
        padding: 0.6rem;
    }
}

.sponsor-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -10px oklch(0.85 0.18 75 / 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.sponsor-card:hover .sponsor-logo {
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.4)) brightness(1.1);
    transform: scale(1.08);
}

/* Footer */
footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--background);
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
}

.mobile-menu.open {
    transform: translateY(0);
}

.close-menu {
    align-self: flex-end;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2rem;
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only {
        display: inline-flex;
    }
}

.mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
}

/* Gallery Styles */
.gallery-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .gallery-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.gallery-desc {
    max-width: 400px;
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .gallery-desc {
        text-align: right;
        max-width: 320px;
    }
}

/* About Section Styles */
.about-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, oklch(0.85 0.18 75 / 0.1), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 5fr 7fr;
        gap: 6rem;
        align-items: center;
    }
}

.about-content-box {
    position: relative;
    padding: 2rem;
    border-radius: 2rem;
}

@media (min-width: 1024px) {
    .about-content-box {
        padding: 4rem;
    }
}

.about-heritage-badge {
    position: absolute;
    bottom: -1rem;
    right: 1.5rem;
    background: var(--accent);
    color: var(--background);
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-12deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 5;
    border: 2px solid var(--background);
}

@media (min-width: 1024px) {
    .about-heritage-badge {
        width: 7rem;
        height: 7rem;
        bottom: -2rem;
        right: -2rem;
    }
}

.about-heritage-badge .year {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
}

@media (min-width: 1024px) {
    .about-heritage-badge .year {
        font-size: 1.75rem;
    }
}

.about-heritage-badge .label {
    font-size: 0.45rem;
    letter-spacing: 0.15rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    color: var(--foreground);
    opacity: 0.85;
    font-size: 1rem;
    line-height: 1.7;
}

.lead-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--foreground);
    font-weight: 500;
    line-height: 1.6;
}

.footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem 1rem;
}

@media (min-width: 768px) {
    .footer {
        flex-direction: row;
        justify-content: space-between;
        padding: 3rem 1.5rem;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .footer-logo {
        align-items: flex-start;
    }
}

.footer-logo .logo-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.footer-logo .logo-subtext {
    font-size: 0.6rem;
    margin-top: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social a {
    display: flex;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.upcoming-header {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .upcoming-header {
        flex-direction: row;
        text-align: left;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.section-tag {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Spacer Utilities */
.py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 1024px) {
    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.mb-12 {
    margin-bottom: 4rem;
}

.mt-10 {
    margin-top: 3rem;
}

.dot-accent {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-top: 1.5rem;
}

.section-desc {
    max-width: 400px;
    font-size: 1rem;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .section-desc {
        font-size: 0.875rem;
        margin-left: 0;
        margin-right: 0;
    }
}