/* ========================================
   Sapphiro — Main Styles
   Luxury Art Deco Jewellery & Watches
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--shop-body-font);
    color: var(--shop-text);
    background: var(--shop-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav, .mobile-sidebar, .sidebar-backdrop, .hero, .page-header {
    flex-shrink: 0;
}

.footer {
    flex-shrink: 0;
    margin-top: auto;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--shop-heading-font);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: var(--shop-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background var(--shop-transition), box-shadow var(--shop-transition), padding var(--shop-transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--sp-brown-dark);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--shop-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.nav-logo img {
    height: 48px;
    width: auto;
    border-radius: 4px;
}

.nav-logo span {
    font-family: var(--shop-heading-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sp-gold);
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color var(--shop-transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sp-gold);
    transition: width var(--shop-transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--sp-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 10;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--sp-gold);
    transition: all 0.3s ease;
    display: block;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Sidebar ── */
.sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.sidebar-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--sp-brown-dark);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-sidebar.open {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(197, 165, 90, 0.15);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-logo img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.sidebar-logo span {
    font-family: var(--shop-heading-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sp-gold);
    letter-spacing: 1px;
}

.sidebar-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(197, 165, 90, 0.1);
    transition: background 0.3s ease;
}

.sidebar-close:hover {
    background: rgba(197, 165, 90, 0.2);
}

.sidebar-close svg {
    width: 18px;
    height: 18px;
    color: var(--sp-gold);
}

.sidebar-nav {
    padding: 16px 0;
    flex: 1;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--sp-gold);
    background: rgba(197, 165, 90, 0.08);
    border-left-color: var(--sp-gold);
}

.sidebar-link:hover svg,
.sidebar-link.active svg {
    opacity: 1;
    color: var(--sp-gold);
}

.sidebar-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(197, 165, 90, 0.15);
}

.sidebar-contact-info {
    margin-bottom: 16px;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.sidebar-contact-item svg {
    width: 14px;
    height: 14px;
    color: var(--sp-gold);
    flex-shrink: 0;
}

.sidebar-tagline {
    font-family: var(--shop-heading-font);
    font-style: italic;
    color: rgba(197, 165, 90, 0.5);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 8px;
}

/* ── Hero Section ── */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--sp-brown-dark);
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(42, 31, 20, 0.7) 0%,
        rgba(42, 31, 20, 0.5) 50%,
        rgba(42, 31, 20, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin: 0 auto 24px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-block;
    font-family: var(--shop-heading-font);
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sp-gold);
    margin-bottom: 16px;
    opacity: 0.85;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: var(--sp-gold);
    margin: 0 auto 20px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--shop-body-font);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--shop-radius);
    transition: all var(--shop-transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--sp-gold);
    color: var(--sp-brown-dark);
    border: 2px solid var(--sp-gold);
}

.btn-primary:hover {
    background: var(--sp-gold-light);
    border-color: var(--sp-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 165, 90, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--sp-gold);
    color: var(--sp-gold);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: bounceDown 2s infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: var(--sp-gold);
    opacity: 0.7;
}

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

/* ── Section Styles ── */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--sp-brown-dark);
    color: #fff;
}

.section-cream {
    background: var(--sp-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    font-family: var(--shop-body-font);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sp-gold);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-dark .section-title {
    color: #fff;
}

.section-divider {
    display: none;
}

.section-description {
    font-size: 1rem;
    color: var(--shop-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.7);
}

/* ── About Section ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow-lg);
}

.about-image-accent {
    display: none;
}

.about-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sp-gold);
    margin-bottom: 12px;
}

.about-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-text {
    color: var(--shop-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--shop-border);
}

.about-stat-number {
    font-family: var(--shop-heading-font);
    font-size: 2rem;
    color: var(--sp-gold);
    display: block;
    margin-bottom: 4px;
}

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

/* ── Categories / Services ── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    text-align: center;
    padding: 48px 24px;
    background: rgba(197, 165, 90, 0.05);
    border: 1px solid rgba(197, 165, 90, 0.15);
    border-radius: var(--shop-radius);
    transition: all var(--shop-transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--sp-gold);
    box-shadow: 0 12px 32px rgba(197, 165, 90, 0.1);
}

.section-dark .category-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(197, 165, 90, 0.2);
}

.section-dark .category-card:hover {
    background: rgba(197, 165, 90, 0.08);
    border-color: var(--sp-gold);
}

.category-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--sp-gold);
}

.category-icon svg {
    width: 100%;
    height: 100%;
}

.category-name {
    font-family: var(--shop-heading-font);
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.section-dark .category-name {
    color: #fff;
}

.category-desc {
    font-size: 0.85rem;
    color: var(--shop-muted);
    line-height: 1.6;
}

.section-dark .category-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* ── Featured Products ── */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.featured-cta {
    text-align: center;
    margin-top: 48px;
}

/* ── Team Section ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* ── Image Gallery / Slideshow section ── */
.gallery-section {
    position: relative;
    overflow: hidden;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* ── Visit Section (Hours + Map) ── */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.visit-info {
    padding: 0;
}

.visit-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--shop-border);
}

.visit-address svg {
    width: 20px;
    height: 20px;
    color: var(--sp-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.visit-address-text h3 {
    font-family: var(--shop-heading-font);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.visit-address-text p {
    color: var(--shop-muted);
    font-size: 0.95rem;
}

.visit-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--shop-border);
}

.visit-phone svg {
    width: 20px;
    height: 20px;
    color: var(--sp-gold);
    flex-shrink: 0;
}

.visit-phone a {
    color: var(--shop-text);
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.visit-phone a:hover {
    color: var(--sp-gold);
}

.hours-title {
    font-family: var(--shop-heading-font);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-title svg {
    width: 20px;
    height: 20px;
    color: var(--sp-gold);
}

.hours-table {
    width: 100%;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--shop-border);
    font-size: 0.95rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
}

.hours-time {
    color: var(--shop-muted);
}

.hours-row.today {
    color: var(--sp-gold);
    font-weight: 600;
}

.hours-row.today .hours-time {
    color: var(--sp-gold);
}

.hours-row.closed .hours-time {
    color: var(--shop-promo);
}

.visit-map-wrapper {
    border-radius: var(--shop-radius);
    overflow: hidden;
    box-shadow: var(--shop-shadow-lg);
    border: 1px solid var(--shop-border);
}

.visit-map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* ── Footer ── */
.footer {
    background: var(--sp-brown-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(197, 165, 90, 0.15);
}

.footer-brand-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--shop-heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sp-gold);
    margin-bottom: 16px;
}

.footer-brand-name img {
    height: 36px;
    width: auto;
    border-radius: 4px;
}

.footer-brand-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.footer-column h4 {
    font-family: var(--shop-heading-font);
    font-size: 1rem;
    color: var(--sp-gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-credit a {
    color: var(--sp-gold);
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-credit a:hover {
    opacity: 0.8;
}

/* ── Page Header (Products / Detail pages) ── */
.page-header {
    padding: 140px 0 60px;
    background: var(--sp-brown-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--shop-bg), transparent);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: var(--sp-gold);
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

/* ── Loading Spinner ── */
.loading-spinner {
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.loading-spinner::after {
    content: '';
    width: 32px;
    height: 32px;
    border: 2px solid var(--shop-border);
    border-top-color: var(--sp-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* ── Shared Element Container ── */
.shared-element-container {
    min-height: 300px;
}

/* ── Responsive Design ── */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-accent {
        display: none;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .about-stat-number {
        font-size: 1.6rem;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .visit-map-wrapper iframe {
        height: 300px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-logo {
        width: 90px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .category-card {
        padding: 32px 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

    .featured-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .page-header {
        padding: 120px 0 48px;
    }
}

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

    .section {
        padding: 48px 0;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

/* ── Focus Styles ── */
:focus-visible {
    outline: 2px solid var(--sp-gold);
    outline-offset: 2px;
}

.nav-link:focus-visible,
.sidebar-link:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--sp-gold);
    outline-offset: 4px;
    border-radius: 2px;
}
