/* ============================================
   AURA VAULT - Immersive Experience Prototype
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark: #0a0a0f;
    --color-darker: #050508;
    --color-surface: #12121a;
    --color-white: #ffffff;
    --color-gray: #8a8a95;
    --color-gold: #d4a853;
    --color-gold-light: #f0d48a;
    --gradient-gold: linear-gradient(135deg, #d4a853 0%, #f0d48a 50%, #d4a853 100%);

    --font-main: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--color-dark);
    color: var(--color-white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-gold);
    width: 0%;
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: transparent;
    transition: background 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
}

.logo {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-gray);
    transition: color 0.3s;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--color-white);
    font-weight: 400;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Section Number */
.section-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
}

.bg-circles {
    position: absolute;
    inset: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 83, 0.1);
    animation: pulse 4s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-2 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.5s;
}

.circle-3 {
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero h1 .line {
    display: block;
}

.hero h1 .highlight {
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.btn-explore {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--color-white);
    transition: color 0.3s;
}

.btn-explore:hover {
    color: var(--color-gold);
}

.btn-explore svg {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gray);
}

/* Discover Section */
.discover-section {
    padding: 10rem 4rem;
}

.discover-intro {
    max-width: 600px;
    margin-bottom: 6rem;
}

.discover-intro h2 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.discover-intro p {
    color: var(--color-gray);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--color-surface);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 168, 83, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--color-gold-light);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Collection Section */
.collection-section {
    padding: 8rem 4rem;
    background: var(--color-darker);
}

.collection-header {
    margin-bottom: 4rem;
}

.collection-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
}

.collection-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.ring-showcase {
    background: var(--color-surface);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.ring-visual {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.ring-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.ring-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-gray);
    position: relative;
    z-index: 1;
}

.ring-info {
    text-align: center;
}

.ring-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.ring-info h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.ring-info p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.ring-price {
    display: block;
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.btn-view-ring {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-view-ring:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.rings-carousel {
    overflow: hidden;
}

.carousel-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.ring-card {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.ring-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 168, 83, 0.1);
}

.card-image {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-gray);
}

.ring-card h4 {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.card-price {
    font-size: 0.85rem;
    color: var(--color-gold);
}

.collection-cta {
    text-align: center;
}

/* Stories Section */
.stories-section {
    padding: 10rem 4rem;
    text-align: center;
}

.stories-header {
    margin-bottom: 4rem;
}

.stories-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.stories-header p {
    color: var(--color-gray);
}

.stories-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
}

.story-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.story-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.story-quote {
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.story-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--color-gold);
}

.author-details {
    text-align: left;
}

.author-details strong {
    display: block;
    font-weight: 500;
}

.author-details span {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.stories-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.story-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.story-dot.active,
.story-dot:hover {
    background: var(--color-gold);
}

/* Contact Section */
.contact-section {
    padding: 10rem 4rem;
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-content > p {
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.contact-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    min-width: 200px;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 168, 83, 0.1);
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.card-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 1rem;
    color: var(--color-gold);
}

.contact-hours {
    margin-bottom: 2rem;
}

.contact-hours span {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* Footer */
.footer {
    padding: 4rem;
    background: var(--color-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-gray);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h5 {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray);
    padding: 0.3rem 0;
    transition: color 0.3s;
}

.link-group a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="scale-in"] {
    transform: scale(0.95);
}

[data-animate="fade-in"] {
    transform: none;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .circle,
    .wheel,
    .btn-explore svg {
        animation: none;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

/* ============================================
   MOBILE MENU TOGGLE (Hamburger)
   ============================================ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger-line + .hamburger-line {
    margin-top: 6px;
}

/* Hamburger to X animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Large screens (1200px and below) */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-showcase {
        grid-template-columns: 1fr;
    }

    .carousel-track {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden;
    }

    /* Navigation - Mobile Menu */
    .nav {
        padding: 1rem 1.25rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1001;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        color: var(--color-white);
        transition: color 0.3s, background 0.3s;
    }

    .nav-links a:hover,
    .nav-links a:active {
        color: var(--color-gold);
        background: rgba(212, 168, 83, 0.1);
    }

    /* Hero Section */
    .hero {
        padding: 1.5rem;
        min-height: 100svh; /* Use small viewport height for better mobile support */
    }

    .hero-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .btn-explore {
        min-height: 48px;
        padding: 0.75rem;
    }

    .scroll-indicator {
        bottom: 2rem;
    }

    /* Background circles - scale down for mobile */
    .circle-1 {
        width: 200px;
        height: 200px;
    }

    .circle-2 {
        width: 320px;
        height: 320px;
    }

    .circle-3 {
        width: 440px;
        height: 440px;
    }

    /* Discover Section */
    .discover-section,
    .collection-section,
    .stories-section,
    .contact-section {
        padding: 5rem 1.25rem;
    }

    .discover-intro {
        margin-bottom: 3rem;
    }

    .discover-intro h2 {
        font-size: 2rem;
    }

    .discover-intro p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    /* Collection Section */
    .collection-header h2 {
        font-size: 2rem;
    }

    .ring-showcase {
        padding: 2rem 1.5rem;
    }

    .ring-placeholder {
        width: 160px;
        height: 160px;
        font-size: 1.25rem;
    }

    .ring-glow {
        width: 160px;
        height: 160px;
    }

    .carousel-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .ring-card {
        padding: 1rem;
    }

    .ring-card h4 {
        font-size: 0.9rem;
    }

    .card-price {
        font-size: 0.8rem;
    }

    /* Stories Section */
    .stories-slider {
        min-height: 280px;
    }

    .stories-header h2 {
        font-size: 2rem;
    }

    .story-quote {
        font-size: 1.15rem;
        padding: 0 0.5rem;
    }

    .story-author {
        flex-direction: column;
        gap: 0.75rem;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
    }

    .author-details {
        text-align: center;
    }

    /* Improved touch targets for story dots */
    .story-dot {
        width: 14px;
        height: 14px;
        padding: 0;
        /* Invisible touch area expansion */
        position: relative;
    }

    .story-dot::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 44px;
        height: 44px;
    }

    /* Contact Section */
    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-cards {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .contact-card {
        min-width: auto;
        padding: 1.5rem;
        min-height: 48px;
    }

    .card-value {
        font-size: 1.1rem;
    }

    /* Buttons - ensure touch target size */
    .btn-primary,
    .btn-secondary,
    .btn-view-ring {
        min-height: 48px;
        padding: 0.875rem 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Footer */
    .footer {
        padding: 3rem 1.25rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
    }

    .link-group {
        text-align: center;
    }

    .link-group a {
        padding: 0.5rem 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {
    /* Even tighter mobile styles */
    .nav {
        padding: 0.875rem 1rem;
    }

    .logo {
        font-size: 0.875rem;
        letter-spacing: 2px;
    }

    /* Hero - smaller text for small screens */
    .hero {
        padding: 1rem;
    }

    .hero-label {
        font-size: 0.65rem;
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    /* Background circles - even smaller */
    .circle-1 {
        width: 150px;
        height: 150px;
    }

    .circle-2 {
        width: 240px;
        height: 240px;
    }

    .circle-3 {
        width: 330px;
        height: 330px;
    }

    /* Sections */
    .discover-section,
    .collection-section,
    .stories-section,
    .contact-section {
        padding: 4rem 1rem;
    }

    .section-number {
        font-size: 0.7rem;
    }

    .discover-intro h2,
    .collection-header h2,
    .stories-header h2,
    .contact-content h2 {
        font-size: 1.75rem;
    }

    .discover-intro p,
    .feature-card p {
        font-size: 0.9rem;
    }

    /* Features */
    .feature-card {
        padding: 1.5rem 1.25rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    /* Collection */
    .collection-showcase {
        gap: 2rem;
    }

    .ring-showcase {
        padding: 1.5rem 1rem;
    }

    .ring-placeholder {
        width: 140px;
        height: 140px;
        font-size: 1.1rem;
    }

    .ring-glow {
        width: 140px;
        height: 140px;
    }

    .ring-info h3 {
        font-size: 1.25rem;
    }

    .ring-price {
        font-size: 1.25rem;
    }

    .carousel-track {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .ring-card {
        padding: 0.875rem;
    }

    .ring-card h4 {
        font-size: 0.85rem;
    }

    .card-price {
        font-size: 0.75rem;
    }

    /* Stories */
    .stories-slider {
        min-height: 320px;
    }

    .story-quote {
        font-size: 1rem;
        line-height: 1.7;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
        font-size: 0.75rem;
    }

    .author-details strong {
        font-size: 0.95rem;
    }

    .author-details span {
        font-size: 0.8rem;
    }

    /* Contact */
    .contact-card {
        padding: 1.25rem;
    }

    .card-icon {
        font-size: 1.25rem;
    }

    .card-label {
        font-size: 0.7rem;
    }

    .card-value {
        font-size: 1rem;
    }

    .contact-hours span {
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }

    .btn-view-ring {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 1rem;
    }

    .footer-brand .logo {
        font-size: 0.9rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .link-group h5 {
        font-size: 0.75rem;
    }

    .link-group a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects that don't work well on touch */
    .feature-card:hover,
    .ring-card:hover,
    .contact-card:hover {
        transform: none;
    }

    /* Add active states instead */
    .feature-card:active,
    .ring-card:active,
    .contact-card:active {
        transform: scale(0.98);
        background: rgba(212, 168, 83, 0.1);
    }

    .btn-primary:active {
        transform: scale(0.98);
    }

    .btn-secondary:active,
    .btn-view-ring:active {
        transform: scale(0.98);
        border-color: var(--color-gold);
        color: var(--color-gold);
    }

    /* Ensure all interactive elements have visible tap feedback */
    .nav-links a:active {
        background: rgba(212, 168, 83, 0.15);
    }
}
