/* ============================================
   AURA VAULT - Bold & Dark Prototype
   ============================================ */

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

:root {
    --color-bg: #0a0a0a;
    --color-surface: #141414;
    --color-surface-2: #1a1a1a;
    --color-gold: #d4a853;
    --color-gold-light: #e8c778;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-border: #2a2a2a;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 15px;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    gap: 0.5rem;
    font-size: 1.3rem;
    letter-spacing: 3px;
}

.logo-text {
    font-weight: 600;
}

.logo-accent {
    color: var(--color-gold);
    font-weight: 400;
}

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

.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

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

.nav-cta {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

/* Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
}

.btn-gold:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 1rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

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

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

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-surface) 0%, transparent 100%);
    opacity: 0.5;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 5.5rem;
    max-width: 700px;
    margin-bottom: 2rem;
}

.hero h1 span {
    color: var(--color-gold);
    font-style: italic;
}

.hero p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 6rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
    max-width: 600px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

/* Marquee */
.marquee {
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-content span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
}

.marquee .dot {
    opacity: 0.5;
}

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

/* Section Styles */
.section-intro {
    max-width: 600px;
    margin-bottom: 4rem;
}

.section-intro.light {
    color: var(--color-text);
}

.overline {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.section-intro h2 {
    font-size: 3.5rem;
}

.section-intro h2 span {
    color: var(--color-gold);
    font-style: italic;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Products Section */
.products {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.product-large {
    display: flex;
    flex-direction: column;
}

.product-image-wrap {
    position: relative;
    flex: 1;
}

.product-large .product-image {
    height: 100%;
    min-height: 500px;
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-text-muted);
}

.product-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-details {
    padding: 2rem 0;
}

.product-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-details p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    color: var(--color-gold);
    font-size: 1.25rem;
    display: block;
    margin-bottom: 1rem;
}

.product-link {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.product-link:hover {
    color: var(--color-gold);
}

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

.product-card {
    background: var(--color-surface);
    padding: 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    background: var(--color-surface-2);
    transform: translateY(-5px);
}

.product-card .product-image {
    aspect-ratio: 1;
    background: var(--color-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

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

.product-card .product-price {
    font-size: 0.9rem;
}

/* Craftsmanship Section */
.craftsmanship {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.craft-content {
    background: var(--color-surface);
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.craft-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.craft-content h2 span {
    color: var(--color-gold);
    font-style: italic;
}

.craft-content > p {
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.craft-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.craft-step {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.step-number {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.craft-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.craft-step p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.craft-visual {
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-box {
    width: 80%;
    aspect-ratio: 1;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Stories Section */
.stories {
    padding: 8rem 3rem;
    background: var(--color-surface);
    max-width: 100%;
}

.stories .section-intro {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.story-card {
    background: var(--color-bg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.story-card.featured {
    border: 1px solid var(--color-gold);
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 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.75rem;
    letter-spacing: 1px;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.story-stars {
    color: var(--color-gold);
    letter-spacing: 2px;
}

/* CTA Section */
.cta-section {
    padding: 8rem 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-content h2 span {
    color: var(--color-gold);
    font-style: italic;
}

.cta-content > p {
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-hours {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Footer */
.footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: flex;
    justify-content: flex-end;
    gap: 5rem;
}

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

.footer-col a {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--color-text);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 2rem 3rem;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

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

    .marquee-content {
        animation: 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: 1px solid var(--color-border);
    cursor: pointer;
    padding: 12px;
    gap: 5px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    border-color: var(--color-gold);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

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

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

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

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

/* Large tablets and small laptops */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }

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

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

    .nav-container {
        padding: 0 2rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .craftsmanship {
        grid-template-columns: 1fr;
    }

    .craft-visual {
        min-height: 400px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .nav-links {
        gap: 2rem;
    }
}

/* Tablet breakpoint - 768px */
@media (max-width: 768px) {
    /* Base typography for tablets */
    body {
        font-size: 16px;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

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

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

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1.25rem 2rem;
        font-size: 1.25rem;
        letter-spacing: 2px;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-container {
        padding: 0 1.25rem;
    }

    /* Hero Section */
    .hero {
        padding: 6rem 1.25rem 3rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
        max-width: 100%;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.5rem 0.75rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta .btn-gold,
    .hero-cta .btn-outline {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        padding: 1rem 1.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-top: 4rem;
        padding-top: 2rem;
    }

    .stat-item {
        flex: 1 1 calc(33.333% - 1rem);
        min-width: 80px;
        text-align: center;
    }

    .stat-value {
        font-size: 2rem;
    }

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

    /* Marquee */
    .marquee {
        padding: 0.75rem 0;
    }

    .marquee-content span {
        font-size: 0.75rem;
    }

    /* Products Section */
    .products {
        padding: 4rem 1.25rem;
    }

    .section-intro {
        margin-bottom: 2.5rem;
    }

    .section-intro h2 {
        font-size: 2.25rem;
    }

    .products-showcase {
        gap: 2rem;
    }

    .product-large .product-image {
        min-height: 350px;
    }

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

    .product-card {
        padding: 1rem;
    }

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

    .product-card .product-price {
        font-size: 0.85rem;
    }

    /* Ensure product cards are tappable */
    .product-card .product-image {
        min-height: 120px;
    }

    /* Craftsmanship Section */
    .craft-content {
        padding: 3rem 1.25rem;
    }

    .craft-content h2 {
        font-size: 2.25rem;
    }

    .craft-content > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .craft-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .craft-step {
        padding: 1.25rem;
        padding-bottom: 1.25rem;
        background: var(--color-surface-2);
        border-bottom: none;
        border-left: 3px solid var(--color-gold);
    }

    .craft-step h4 {
        font-size: 1rem;
    }

    .craft-step p {
        font-size: 0.9rem;
    }

    .craft-visual {
        min-height: 300px;
        padding: 2rem 1.25rem;
    }

    .visual-box {
        width: 100%;
        max-width: 300px;
    }

    /* Stories Section */
    .stories {
        padding: 4rem 1.25rem;
    }

    .stories .section-intro h2 {
        font-size: 2.25rem;
    }

    .stories-grid {
        gap: 1.5rem;
    }

    .story-card {
        padding: 2rem 1.5rem;
    }

    .story-quote {
        font-size: 1.1rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 4rem 1.25rem;
    }

    .cta-content h2 {
        font-size: 2.25rem;
    }

    .cta-content > p {
        font-size: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cta-actions .btn-gold,
    .cta-actions .btn-outline {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        padding: 3rem 1.25rem;
        text-align: center;
        gap: 3rem;
    }

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

    .footer-grid {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-col {
        flex: 1 1 140px;
        min-width: 140px;
    }

    .footer-col h5 {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .footer-col a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    /* Button touch targets */
    .btn-gold,
    .btn-outline {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }
}

/* Mobile phones - 480px */
@media (max-width: 480px) {
    /* Typography adjustments for small phones */
    body {
        font-size: 15px;
    }

    /* Navigation */
    .nav {
        padding: 1rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

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

    .nav-links a {
        font-size: 1.5rem;
        padding: 1.5rem 1rem;
    }

    /* Hero */
    .hero {
        padding: 5rem 1rem 2.5rem;
    }

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

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

    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .hero-stats {
        gap: 1rem;
        margin-top: 3rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    /* Products */
    .products {
        padding: 3rem 1rem;
    }

    .section-intro h2 {
        font-size: 1.875rem;
    }

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

    .products-showcase {
        gap: 1.5rem;
    }

    .product-large .product-image {
        min-height: 280px;
        font-size: 1.5rem;
    }

    .product-details {
        padding: 1.5rem 0;
    }

    .product-details h3 {
        font-size: 1.25rem;
    }

    .product-details p {
        font-size: 0.85rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .product-link {
        font-size: 0.85rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

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

    .product-card {
        padding: 0.75rem;
    }

    .product-card .product-image {
        font-size: 1rem;
        min-height: 100px;
    }

    .product-card h4 {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

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

    .section-cta {
        margin-top: 2.5rem;
    }

    .section-cta .btn-gold {
        width: 100%;
    }

    /* Craftsmanship */
    .craft-content {
        padding: 2.5rem 1rem;
    }

    .craft-content h2 {
        font-size: 1.875rem;
    }

    .craft-content > p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .craft-steps {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .craft-step {
        padding: 1rem;
    }

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

    .craft-step h4 {
        font-size: 0.95rem;
    }

    .craft-step p {
        font-size: 0.85rem;
    }

    .craft-visual {
        min-height: 250px;
        padding: 1.5rem 1rem;
    }

    /* Stories */
    .stories {
        padding: 3rem 1rem;
    }

    .stories .section-intro h2 {
        font-size: 1.875rem;
    }

    .stories-grid {
        gap: 1rem;
    }

    .story-card {
        padding: 1.5rem 1.25rem;
    }

    .story-quote {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

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

    .author-info strong {
        font-size: 0.9rem;
    }

    .author-info span {
        font-size: 0.75rem;
    }

    .story-stars {
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.875rem;
    }

    .cta-content > p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .cta-hours {
        font-size: 0.8rem;
    }

    /* Footer */
    .footer-main {
        padding: 2.5rem 1rem;
        gap: 2rem;
    }

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

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

    .footer-grid {
        gap: 1.5rem;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .footer-col h5 {
        margin-bottom: 0.75rem;
    }

    .footer-col a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 1.25rem 1rem;
        font-size: 0.75rem;
    }

    /* Global touch target improvements */
    a, button {
        -webkit-tap-highlight-color: transparent;
    }

    /* Prevent horizontal overflow */
    .hero-content,
    .section-intro,
    .cta-content {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}

/* Very small phones - 360px */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .section-intro h2,
    .craft-content h2,
    .cta-content h2,
    .stories .section-intro h2 {
        font-size: 1.625rem;
    }

    .stat-item {
        flex: 1 1 100%;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-item {
        text-align: left;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
    }
}

/* Prevent horizontal scroll globally */
html, body {
    overflow-x: hidden;
}

.nav,
.hero,
.marquee,
.products,
.craftsmanship,
.stories,
.cta-section,
.footer {
    max-width: 100vw;
    overflow-x: hidden;
}
