/* ============================================
   MoJo's Records — Editorial Vinyl Store
   Burgundy + Blush · Playfair Display + Inter
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --burgundy: #781f2d;
    --burgundy-deep: #5a1520;
    --burgundy-light: #9e2a3c;
    --blush: #f5e6d3;
    --blush-light: #faf3eb;
    --blush-dark: #e8d5c0;
    --cream: #fffbf7;
    --charcoal: #1a1a1a;
    --text: #2a2a2a;
    --text-light: #5a5a5a;
    --text-muted: #8a8a8a;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--burgundy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    font-size: 0.875rem;
    font-weight: 500;
}
.skip-link:focus {
    top: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-headline {
    font-size: clamp(2.25rem, 5vw, 4rem);
    color: var(--charcoal);
    margin-bottom: 24px;
}

.section-headline em {
    font-style: italic;
    color: var(--burgundy);
    font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(120, 31, 45, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
    background: rgba(255, 251, 247, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(120, 31, 45, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
}

.site-header.scrolled .logo {
    color: var(--charcoal);
}

.logo-icon {
    color: var(--white);
    transition: color 0.3s;
}
.site-header.scrolled .logo-icon {
    color: var(--burgundy);
}

.logo-accent {
    font-weight: 400;
    font-style: italic;
    color: var(--blush);
}
.site-header.scrolled .logo-accent {
    color: var(--burgundy);
}

.logo--light {
    color: var(--white);
}
.site-footer .logo {
    color: var(--white);
}
.site-footer .logo-icon {
    color: var(--blush);
}
.site-footer .logo-accent {
    color: var(--blush);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--blush);
    transition: width 0.3s var(--ease-out);
}
.nav-menu a:hover {
    color: var(--white);
}
.nav-menu a:hover::after {
    width: 100%;
}

.site-header.scrolled .nav-menu a {
    color: var(--text-light);
}
.site-header.scrolled .nav-menu a::after {
    background: var(--burgundy);
}
.site-header.scrolled .nav-menu a:hover {
    color: var(--charcoal);
}

.nav-cta {
    background: var(--blush) !important;
    color: var(--burgundy) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--white) !important;
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}
.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}
.site-header.scrolled .nav-toggle-bar {
    background: var(--charcoal);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--burgundy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orbFloat 8s ease-in-out infinite;
}

.gradient-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #a82035 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.gradient-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #c44d63 0%, transparent 70%);
    bottom: -5%;
    left: 10%;
    animation-delay: -3s;
}

.gradient-orb--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    opacity: 0.3;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    pointer-events: none;
}

.hero-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-content {
    color: var(--white);
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.05;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.35s forwards;
}

.hero-accent {
    font-style: italic;
    color: var(--blush);
    font-weight: 700;
}

.hero-subhead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 460px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero-image {
    position: relative;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-image-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.3);
    aspect-ratio: 500/620;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--blush);
    color: var(--burgundy);
    padding: 14px 20px;
    border-radius: 12px;
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-weight: 700;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

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

/* ---------- Marquee ---------- */
.marquee {
    background: var(--burgundy-deep);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(245, 230, 211, 0.15);
    border-bottom: 1px solid rgba(245, 230, 211, 0.15);
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--blush);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.marquee-dot {
    color: var(--burgundy-light);
    font-size: 0.5rem;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Collection ---------- */
.collection {
    padding: 120px 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.collection-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease-out);
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(120, 31, 45, 0.12);
}

.collection-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.collection-card:hover .collection-card-image img {
    transform: scale(1.06);
}

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(120, 31, 45, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.collection-card:hover .collection-card-overlay {
    opacity: 1;
}

.collection-card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 50px;
}

.collection-card-body {
    padding: 20px 24px 24px;
}

.collection-card-title {
    font-size: 1.375rem;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.collection-card-body p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---------- Sell Section ---------- */
.sell {
    padding: 120px 0;
    background: var(--blush-light);
}

.sell-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sell-content {
    max-width: 520px;
}

.sell-body {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.sell-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.sell-step-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--burgundy);
    line-height: 1;
}

.sell-step-text {
    display: block;
    font-size: 0.9375rem;
    color: var(--text);
    margin-top: 4px;
    padding-left: 4px;
}

.sell-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(120, 31, 45, 0.12);
}

.sell-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- About Section ---------- */
.about {
    padding: 120px 0;
    background: var(--cream);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: var(--burgundy);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.15;
}

.about-content {
    max-width: 520px;
}

.about-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--blush-dark);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat-number {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--burgundy);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---------- Visit Section ---------- */
.visit {
    padding: 120px 0;
    background: var(--white);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.visit-info {
    max-width: 520px;
}

.visit-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit-icon {
    flex-shrink: 0;
    color: var(--burgundy);
    margin-top: 2px;
}

.visit-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.visit-detail-value {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}

.visit-detail-link {
    color: var(--burgundy);
    font-weight: 500;
    transition: color 0.3s;
}
.visit-detail-link:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    aspect-ratio: 4/3;
}

.visit-map-placeholder {
    width: 100%;
    height: 100%;
}

.visit-map-placeholder iframe {
    width: 100%;
    height: 100%;
}

/* ---------- CTA Section ---------- */
.cta {
    padding: 120px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 230, 211, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-content {
    color: var(--white);
}

.cta-content .section-eyebrow {
    color: var(--blush);
}

.cta-content .section-headline {
    color: var(--white);
}

.cta-content .section-headline em {
    color: var(--blush);
}

.cta-body {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 420px;
}

/* Form */
.cta-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 32px 64px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--blush-dark);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--blush-light);
    transition: all 0.3s;
    outline: none;
}

.form-input:focus {
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(120, 31, 45, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8a8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.form-note a {
    color: var(--burgundy);
    font-weight: 500;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 16px;
    background: #e8f5e9;
    border-radius: 10px;
    color: #2e7d32;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    margin-top: 16px;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 32px;
    list-style: none;
}

.footer-nav a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--blush);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-content { order: 1; }
    .hero-image { order: 2; max-width: 400px; margin: 0 auto; }
    .hero-subhead { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sell-layout,
    .about-layout,
    .visit-layout,
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sell-content,
    .about-content,
    .visit-info,
    .cta-content {
        max-width: 100%;
    }

    .about-image-wrapper { order: -1; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--burgundy);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        box-shadow: -8px 0 32px rgba(0,0,0,0.2);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu a {
        color: rgba(255,255,255,0.85) !important;
        font-size: 1.125rem;
    }
    .nav-menu a::after {
        background: var(--blush) !important;
    }
    .nav-menu a:hover {
        color: var(--white) !important;
    }
    .nav-cta {
        background: var(--blush) !important;
        color: var(--burgundy) !important;
    }

    .hero-container {
        padding-top: 80px;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .collection-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-inner {
        gap: 48px;
    }

    .cta-form {
        padding: 28px;
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .collection {
        padding: 80px 0;
    }

    .sell,
    .about,
    .visit,
    .cta {
        padding: 80px 0;
    }
}
