/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-warm: #0f0d09;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --accent: #C87941;
    --accent-hover: #D99563;
    --accent-dark: #A0613A;
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        );
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography - Headings */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.guitar-name,
.detail-title,
.logo {
    font-family: var(--font-sans);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fullscreen Hero */
.fullscreen-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 450px;
    margin-top: 80px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    transition: opacity 2s ease-in-out;
}

.hero-slide-media {
    position: absolute;
    inset: -4%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    will-change: transform;
}

.hero-slide picture {
    position: absolute;
    inset: -4%;
    width: calc(100% + 8%);
    height: calc(100% + 8%);
}

.hero-slide-media.hero-rotate-left {
    inset: auto;
    top: 50%;
    left: 50%;
    width: calc(100vh + 24rem);
    height: calc(100vw + 24rem);
    transform: translate(-50%, -50%) rotate(-90deg) scale(0.82);
    transform-origin: center;
}

.hero-slide-media.hero-rotate-right {
    inset: auto;
    top: 50%;
    left: 50%;
    width: calc(100vh + 10rem);
    height: calc(100vw + 10rem);
    transform: translate(-50%, -50%) rotate(90deg) scale(1.01);
    transform-origin: center;
}

.hero-slide-media.hero-wide-start {
    inset: -10%;
    transform: scale(0.92);
}

.hero-slide-media.hero-focus-inlay {
    inset: -8%;
    object-fit: contain;
    transform: scale(1);
}

.hero-slide-media.hero-focus-inlay-rotated {
    inset: auto;
    top: 50%;
    left: 50%;
    width: calc(100vh + 8rem);
    height: calc(100vw + 8rem);
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%) rotate(90deg) scale(0.94);
    transform-origin: center;
}

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

@keyframes heroPanLeft {
    from {
        transform: scale(1.14) translate3d(2%, 1%, 0);
    }
    to {
        transform: scale(1.03) translate3d(-2%, -1%, 0);
    }
}

@keyframes heroPanLeftRotate {
    from {
        transform: translate(-50%, -50%) rotate(-90deg) scale(0.82) translate3d(0, 2%, 0);
    }
    to {
        transform: translate(-50%, -50%) rotate(-90deg) scale(0.92) translate3d(0, -2%, 0);
    }
}

@keyframes heroPanFretboard {
    from {
        transform: translate(-50%, -50%) rotate(90deg) scale(1.01) translate3d(0, -2%, 0);
    }
    to {
        transform: translate(-50%, -50%) rotate(90deg) scale(1.07) translate3d(0, 2%, 0);
    }
}

@keyframes heroFocusInlay {
    from {
        transform: scale(1) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.12) translate3d(0, 2%, 0);
    }
}

@keyframes heroFocusInlayRotated {
    from {
        transform: translate(-50%, -50%) rotate(90deg) scale(0.94);
    }
    to {
        transform: translate(-50%, -50%) rotate(90deg) scale(1.08);
    }
}

@keyframes heroPanRight {
    from {
        transform: scale(1.14) translate3d(-2%, 1%, 0);
    }
    to {
        transform: scale(1.03) translate3d(2%, -1%, 0);
    }
}

@keyframes heroPanUp {
    from {
        transform: scale(1.12) translate3d(0, 2%, 0);
    }
    to {
        transform: scale(1.03) translate3d(0, -2%, 0);
    }
}

@keyframes heroPanDown {
    from {
        transform: scale(1.02) translate3d(0, -2%, 0);
    }
    to {
        transform: scale(1.08) translate3d(0, 2%, 0);
    }
}

@keyframes heroPanDownWide {
    from {
        transform: scale(0.92) translate3d(0, -2%, 0);
    }
    to {
        transform: scale(1.0) translate3d(0, 2%, 0);
    }
}

.hero-slide.active .hero-slide-media {
    animation: heroPanLeft 8.5s linear forwards;
}

.hero-slide.active .hero-slide-media.hero-pan-right {
    animation-name: heroPanRight;
}

.hero-slide.active .hero-slide-media.hero-rotate-left {
    animation-name: heroPanLeftRotate;
}

.hero-slide.active .hero-slide-media.hero-pan-fretboard {
    animation-name: heroPanFretboard;
}

.hero-slide.active .hero-slide-media.hero-focus-inlay {
    animation-name: heroFocusInlay;
}

.hero-slide.active .hero-slide-media.hero-focus-inlay-rotated {
    animation-name: heroFocusInlayRotated;
}

.hero-slide.active .hero-slide-media.hero-pan-up {
    animation-name: heroPanUp;
}

.hero-slide.active .hero-slide-media.hero-pan-down {
    animation-name: heroPanDown;
}

.hero-slide.active .hero-slide-media.hero-wide-start {
    animation-name: heroPanDownWide;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}

.hero-fullscreen-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 2rem;
    text-align: center;
}

.hero-top-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-bottom-content {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 3rem;
}

.hero-logo {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-logo-img {
    height: clamp(60px, 10vw, 90px);
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.hero-logo-subtext {
    font-family: var(--font-sans);
    font-size: clamp(0.95rem, 1.7vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    margin: 0;
}

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

.gallery-header {
    margin-top: 80px;
    padding: 4rem 0 3rem;
    text-align: center;
}

.gallery-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 820px;
    margin: 0 auto;
}

.gallery-section {
    padding: 0 0 6rem;
}

.hero-statement {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
    width: 100%;
    max-width: 1400px;
}

.statement-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent), var(--accent));
}

.statement-line:last-of-type {
    background: linear-gradient(to left, transparent, var(--accent), var(--accent));
}

.statement-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-tagline {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    color: var(--text-primary);
    max-width: 900px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    padding: 0 2rem;
    margin-bottom: 1.5rem;
}

.hero-cta {
    margin-top: 0.5rem;
    text-shadow: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    display: none;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    stroke: var(--text-primary);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-tagline {
        padding: 0 2.5rem;
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .hero-bottom-content {
        padding-bottom: 4rem;
    }

    .scroll-indicator {
        display: block;
        bottom: 1rem;
    }

    .scroll-indicator svg {
        width: 28px;
        height: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none;
    }

    .scroll-indicator {
        animation: none;
    }

    .hero-slide-media,
    .hero-slide.active .hero-slide-media,
    .hero-slide.active .hero-slide-media.hero-pan-right,
    .hero-slide.active .hero-slide-media.hero-rotate-left,
    .hero-slide.active .hero-slide-media.hero-pan-fretboard,
    .hero-slide.active .hero-slide-media.hero-focus-inlay,
    .hero-slide.active .hero-slide-media.hero-focus-inlay-rotated,
    .hero-slide.active .hero-slide-media.hero-pan-up,
    .hero-slide.active .hero-slide-media.hero-wide-start,
    .hero-slide.active .hero-slide-media.hero-pan-down {
        animation: none;
        transform: scale(1.05);
    }

    .hero-slide-media.hero-rotate-left,
    .hero-slide.active .hero-slide-media.hero-rotate-left {
        transform: translate(-50%, -50%) rotate(-90deg) scale(0.82);
    }

    .hero-slide-media.hero-rotate-right,
    .hero-slide.active .hero-slide-media.hero-pan-fretboard {
        transform: translate(-50%, -50%) rotate(90deg) scale(1.01);
    }

    .hero-slide-media.hero-wide-start,
    .hero-slide.active .hero-slide-media.hero-wide-start {
        transform: scale(0.92);
    }

    .hero-slide-media.hero-focus-inlay,
    .hero-slide.active .hero-slide-media.hero-focus-inlay {
        transform: scale(1);
    }

    .hero-slide-media.hero-focus-inlay-rotated,
    .hero-slide.active .hero-slide-media.hero-focus-inlay-rotated {
        transform: translate(-50%, -50%) rotate(90deg) scale(0.94);
    }
}

/* Features Section */
.features-section {
    background-color: #000;
    padding: 0;
}

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

.feature-block {
    position: relative;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-block:hover .feature-image:not(.no-zoom) img {
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 2rem 1rem;
    color: var(--text-primary);
}

.feature-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0 2rem 2rem;
}

.feature-link {
    display: inline-block;
    margin: 0 2rem 2rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.feature-link:hover {
    color: var(--accent-hover);
}

/* Navigation (for other pages) */
.navbar {
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(200, 121, 65, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
}

.logo-img {
    height: 36px;
    width: auto;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.navbar.hero-visible .logo-img {
    opacity: 0;
    pointer-events: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 4rem 20px;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: left;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.8;
}

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

.hero-image {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-hero {
    width: 100%;
    max-width: 800px;
    height: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card) 0%, #2a2a2a 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
}

/* Intro Section */
.intro-section {
    padding: 4rem 20px;
    background-color: var(--bg-card);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-secondary);
}

/* Featured Section */
.featured-section {
    padding: 6rem 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: -2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

/* Guitar Grid */
.guitar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.guitar-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.guitar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.guitar-image {
    width: 100%;
    overflow: hidden;
    background-color: #2a2a2a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.guitar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.guitar-info {
    padding: 2rem;
}

.guitar-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.guitar-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Portfolio Section (Full-Bleed Grid) */
.portfolio-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.portfolio-header {
    padding: 0 20px;
    margin-bottom: 3rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 320px 320px;
    gap: 3px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    display: block;
    background: #1a1a1a;
    text-decoration: none;
}

.portfolio-item--featured {
    grid-row: 1 / 3;
}

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

.portfolio-item:hover img {
    transform: scale(1.04);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.portfolio-name {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.2rem;
    letter-spacing: -0.3px;
    transform: translateY(3px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-name {
    transform: translateY(0);
}

.portfolio-link {
    color: transparent;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    display: block;
}

.portfolio-item:hover .portfolio-link {
    color: rgba(255, 255, 255, 0.72);
}

.portfolio-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.portfolio-cta {
    text-align: center;
    padding-top: 3rem;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .portfolio-item--featured {
        grid-row: auto;
        grid-column: 1 / 3;
        aspect-ratio: 16 / 9;
    }

    .portfolio-item:not(.portfolio-item--featured) {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item--featured {
        grid-column: auto;
        aspect-ratio: 4 / 3;
    }
}

/* Workshop Section */
.workshop-section {
    padding: 8rem 20px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, rgba(15, 13, 9, 0.8) 100%);
    position: relative;
}

.workshop-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent);
}

.workshop-section .section-title {
    margin-bottom: 3.5rem;
}

.workshop-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: rgba(20, 18, 15, 0.7);
    border: 1px solid rgba(200, 121, 65, 0.15);
    border-radius: 4px;
}

.workshop-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
}

.workshop-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .workshop-section {
        padding: 5rem 20px;
    }

    .workshop-content {
        padding: 2rem 1.5rem;
    }

    .workshop-text {
        font-size: 1.05rem;
    }
}

/* Social Proof Section */
.social-proof-section {
    padding: 6rem 20px;
    background-color: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(200, 121, 65, 0.2);
}

.quote-icon {
    font-size: 4rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-detail {
    font-size: 0.9rem;
    color: var(--accent);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-sans);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 6rem 20px;
    background-color: var(--bg-card);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.contact-thanks {
    text-align: center;
    font-size: 1.05rem;
    color: var(--accent);
    max-width: 700px;
    margin: 0 auto 1.25rem;
}

.contact-form-honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.contact-form label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.contact-form input,
.contact-form textarea {
    padding: 0.875rem 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, background-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(0, 0, 0, 0.5);
}

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

.contact-form button {
    grid-column: 1 / -1;
    justify-self: start;
    cursor: pointer;
    border: none;
}

.contact-info {
    background-color: rgba(15, 13, 9, 0.6);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

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

.contact-details p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.contact-details a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--accent-hover);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

a:focus-visible,
button:focus-visible,
.thumbnail:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Portfolio List Layout */
.portfolio-list {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto;
}

.portfolio-row {
    display: flex;
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    transition: background-color 0.25s;
}

.portfolio-row:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.portfolio-row:hover {
    background-color: rgba(255, 255, 255, 0.025);
}

.portfolio-thumb {
    flex-shrink: 0;
    width: 320px;
    height: 240px;
    position: relative;
    overflow: hidden;
    background-color: #111;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.portfolio-thumb img.thumb-blur {
    position: absolute;
    inset: 0;
    object-fit: cover;
    filter: blur(18px);
    transform: scale(1.12);
    opacity: 0.45;
    transition: none;
}

.portfolio-thumb img.thumb-main {
    position: absolute;
    inset: 0;
    object-fit: contain;
    object-position: center;
}

.portfolio-row:hover .portfolio-thumb img.thumb-main,
.portfolio-row:hover .portfolio-thumb img:not(.thumb-blur) {
    transform: scale(1.04);
}

.portfolio-info {
    flex: 1;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
}

.portfolio-num {
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    font-family: var(--font-sans);
}

.portfolio-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-sans);
    margin: 0;
    letter-spacing: -0.3px;
}

.portfolio-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0.25rem 0 1rem;
}

@media (max-width: 768px) {
    .portfolio-row {
        flex-direction: column;
    }

    .portfolio-thumb {
        width: 100%;
        height: 220px;
    }

    .portfolio-info {
        padding: 1.25rem 1.5rem 1.75rem;
    }

    .portfolio-name {
        font-size: 1.2rem;
    }
}

/* Footer */
.footer {
    padding: 4rem 20px 2rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(200, 121, 65, 0.1);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* Responsive - Fullscreen Hero */
@media (max-width: 768px) {
    .fullscreen-hero {
        min-height: 400px;
    }

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

    .statement-line {
        width: 100px;
    }

    .statement-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        white-space: normal;
    }

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

    .feature-image {
        height: 300px;
    }

    .feature-title {
        margin: 1.5rem 1.5rem 1rem;
    }

    .feature-text,
    .feature-link {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero {
        grid-template-columns: 1fr;
        min-height: 70vh;
        padding: 2rem 20px;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .featured-section {
        padding: 4rem 20px;
    }

    .contact-section {
        padding: 4rem 20px;
    }

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

    .contact-form {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 20px;
    }

    .guitar-info {
        padding: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}
