/* ============================================
   GOGOLD Global Stylesheet
   Extracted from index.html v1.5
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --bg-dark: #030303;
    --bg-surface: #0a0a0a;
    --gold-primary: #D4AF37;
    --gold-light: #F8E5A5;
    --gold-dark: #8B6508;
    --text-main: #FFFFFF;
    --text-muted: #999999;
    --gold-gradient: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* ---- Typography Utilities ---- */
.font-cinzel {
    font-family: 'Cinzel', serif;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

/* ---- Navigation ---- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 60px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 5px;
    text-decoration: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 45px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* ---- Hero Section ---- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1612825173281-9a193378527e?q=80&w=2560&auto=format&fit=crop') no-repeat center center/cover;
    opacity: 0.35;
    z-index: -1;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.hero-content {
    z-index: 1;
}

.hero-tagline {
    font-size: 10px;
    letter-spacing: 6px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #b3b3b3;
    margin-bottom: 50px;
    max-width: 650px;
    margin-inline: auto;
    font-weight: 300;
    letter-spacing: 1.5px;
}

/* ---- Hero Button ---- */
.btn {
    display: inline-block;
    padding: 16px 50px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--text-main);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn:hover {
    border-color: var(--gold-primary);
    color: #000;
    font-weight: 600;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.btn:hover::before {
    width: 100%;
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
}

.scroll-text {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--gold-primary);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold-primary);
    animation: scrolldown 2s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes scrolldown {
    0% {
        top: -50%;
    }

    100% {
        top: 100%;
    }
}

/* ---- Products Layout ---- */
.products-section {
    padding: 150px 5vw;
    position: relative;
}

/* Vertical Timeline Line */
.timeline-line {
    position: absolute;
    top: 200px;
    bottom: 100px;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.15) 15%, rgba(212, 175, 55, 0.15) 85%, transparent);
    transform: translateX(-50%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 140px;
    z-index: 1;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    letter-spacing: 4px;
}

.section-header p {
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 20px;
    font-size: 0.95rem;
    font-weight: 300;
}

.product-row {
    display: flex;
    align-items: center;
    margin-bottom: 200px;
    position: relative;
    z-index: 1;
}

.product-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* Background Watermark */
.watermark {
    position: absolute;
    font-family: 'Cinzel', serif;
    font-size: 24rem;
    font-weight: 700;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

/* Image Container as a Link */
.product-image-container {
    display: block;
    width: 55%;
    position: relative;
    overflow: hidden;
    border-radius: 1px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    text-decoration: none;
    cursor: pointer;
}

.product-image {
    width: 100%;
    height: 65vh;
    object-fit: cover;
    display: block;
    filter: grayscale(80%) brightness(0.7) contrast(1.1);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
}

.product-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Image Hover Effect */
.product-row:hover .product-image {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(0.95) contrast(1.05);
}

.product-row:hover .product-image-container::after {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: inset 0 0 40px rgba(212, 175, 55, 0.1);
}

/* ---- Glassmorphism Info Card ---- */
.product-info-card {
    width: 48%;
    padding: 70px 60px;
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-left: -6%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    transition: transform 0.5s ease, border-color 0.5s ease;
}

.product-row:hover .product-info-card {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.15);
}

.product-row:nth-child(even) .product-info-card {
    margin-left: 0;
    margin-right: -6%;
}

.product-badge {
    font-size: 10px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 25px;
    display: inline-block;
    font-weight: 600;
}

.product-info-card h3 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 600;
}

.product-info-card p {
    font-size: 0.95rem;
    color: #a8a8a8;
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.7;
}

/* ---- Specs / Progress Bars ---- */
.specs-container {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.spec-item {
    margin-bottom: 18px;
}

.spec-header {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #bbb;
    margin-bottom: 10px;
}

.spec-header span.val {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
}

.spec-bar {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.spec-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gold-primary);
    width: 0%;
    transition: width 1.8s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.spec-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px 2px var(--gold-primary);
}

.features-list {
    list-style: none;
    margin-bottom: 10px;
}

.features-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 15px;
    color: #999;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 300;
    transition: color 0.3s ease;
}

.product-row:hover .features-list li {
    color: #ccc;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    transform: rotate(45deg);
    opacity: 0.8;
}

/* ---- Luxury Text Link ---- */
.link-explore {
    display: inline-flex;
    align-items: center;
    margin-top: 35px;
    font-size: 10px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.link-explore .arrow {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-explore::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--gold-primary);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Arrow moves when the WHOLE card is hovered */
.product-info-card:hover .link-explore .arrow {
    transform: translateX(8px);
}

.link-explore:hover::after {
    width: 100%;
}

.link-explore:hover {
    color: #fff;
}

.link-explore:hover .arrow {
    color: var(--gold-primary);
}

/* ---- Footer ---- */
.site-footer {
    text-align: center;
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background: #000;
}

.site-footer .footer-logo {
    font-size: 24px;
    margin-bottom: 15px;
}

.site-footer .footer-tagline {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.site-footer .footer-divider {
    margin: 30px 0;
    width: 30px;
    height: 1px;
    background: rgba(212, 175, 55, 0.5);
    display: inline-block;
}

.site-footer .footer-copyright {
    color: #333;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

/* ============================================
   About Page Styles
   ============================================ */

/* Story Hero */
.story-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.story-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    z-index: -1;
    filter: grayscale(80%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.story-hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.story-hero-subtitle {
    font-size: 11px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

/* Story Editorial Timeline */
.story-section {
    padding: 100px 5vw 150px;
    position: relative;
}

.story-row {
    display: flex;
    align-items: center;
    margin-bottom: 160px;
    position: relative;
    z-index: 1;
}

.story-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* Story Image Containers */
.story-image-container {
    width: 55%;
    position: relative;
    overflow: hidden;
    border-radius: 1px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.story-image {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
    filter: grayscale(80%) brightness(0.6) contrast(1.2);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
}

.story-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
    transition: all 0.5s ease;
}

.story-row:hover .story-image {
    transform: scale(1.03);
    filter: grayscale(20%) brightness(0.8) contrast(1.1);
}

.story-row:hover .story-image-container::after {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: inset 0 0 40px rgba(212, 175, 55, 0.05);
}

/* Glassmorphism Story Cards */
.story-info-card {
    width: 48%;
    padding: 70px 60px;
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-left: -6%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    transition: transform 0.5s ease, border-color 0.5s ease;
}

.story-row:hover .story-info-card {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.15);
}

.story-row:nth-child(even) .story-info-card {
    margin-left: 0;
    margin-right: -6%;
}

.story-badge {
    font-size: 10px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}

.story-badge::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--gold-primary);
    margin-right: 15px;
}

.story-info-card h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
}

.story-info-card p {
    font-size: 1rem;
    color: #a0a0a0;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 0;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .story-image-container {
        width: 50%;
    }

    .story-info-card {
        width: 60%;
        padding: 50px 40px;
        margin-left: -10%;
    }

    .story-row:nth-child(even) .story-info-card {
        margin-right: -10%;
    }
}

@media (max-width: 768px) {
    .story-hero-title {
        font-size: 3rem;
    }

    .story-row,
    .story-row:nth-child(even) {
        flex-direction: column;
        margin-bottom: 120px;
    }

    .story-image-container {
        width: 100%;
        height: 40vh;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .story-image {
        height: 100%;
    }

    .story-info-card {
        width: 92%;
        margin: -60px auto 0 auto !important;
        padding: 40px 30px;
        text-align: left;
        backdrop-filter: blur(25px);
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 5vw 100px;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: -2;
    filter: grayscale(80%) contrast(1.2);
}

.contact-bg-mask {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(3, 3, 3, 0.9) 0%, rgba(3, 3, 3, 0.6) 50%, rgba(3, 3, 3, 0.95) 100%);
}

/* Split Container */
.contact-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    align-items: flex-start;
    position: relative;
}

.contact-info {
    flex: 0.8;
    padding-top: 40px;
    position: relative;
}

.watermark-contact {
    position: absolute;
    font-family: 'Cinzel', serif;
    font-size: 14rem;
    font-weight: 700;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    top: -60px;
    left: -5%;
    z-index: -1;
    pointer-events: none;
}

.contact-badge {
    font-size: 10px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 25px;
    display: inline-block;
    font-weight: 600;
}

.contact-info h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.05rem;
    color: #a8a8a8;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 50px;
}

.direct-contacts {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
}

.contact-method {
    margin-bottom: 25px;
}

.contact-method h4 {
    font-size: 10px;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-method p {
    font-size: 13px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 0;
}

/* Glassmorphism Form */
.contact-form-wrapper {
    flex: 1.2;
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 70px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    border-radius: 1px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    margin-bottom: 40px;
}

.full-width {
    grid-column: span 2;
}

/* Luxury Form Inputs */
.input-group {
    position: relative;
}

.input-group label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #888;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.input-group label span.req {
    color: var(--gold-primary);
    margin-left: 3px;
}

.luxury-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 10px 0;
    transition: all 0.4s ease;
}

textarea.luxury-input {
    resize: vertical;
    min-height: 80px;
}

.luxury-input:focus {
    outline: none;
    border-bottom: 1px solid var(--gold-primary);
    box-shadow: 0 10px 20px -10px rgba(212, 175, 55, 0.2);
}

input:-webkit-autofill,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #0a0a0a inset !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Submit Button */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--text-main);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.btn-submit .arrow {
    margin-left: 12px;
    font-weight: 300;
    font-size: 16px;
    transition: transform 0.4s ease;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-submit:hover {
    border-color: var(--gold-primary);
    color: #000;
    font-weight: 600;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.btn-submit:hover::before {
    width: 100%;
}

.btn-submit:hover .arrow {
    transform: translateX(10px);
    color: #000;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        gap: 60px;
    }

    .contact-info {
        padding-top: 0;
        text-align: center;
    }

    .watermark-contact {
        left: 50%;
        transform: translateX(-50%);
        font-size: 10rem;
        top: -30px;
    }

    .direct-contacts {
        display: flex;
        justify-content: center;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 120px 5vw 60px;
    }

    .contact-info h1 {
        font-size: 2.8rem;
    }

    .direct-contacts {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .full-width {
        grid-column: span 1;
    }
}

/* ============================================
   Product Detail Page (PDP) Styles
   ============================================ */

/* ---- PDP Hero Layout ---- */
.product-hero {
    padding: 160px 5vw 100px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    min-height: 100vh;
}

/* PDP Background Watermark */
.watermark-detail {
    position: absolute;
    font-family: 'Cinzel', serif;
    font-size: 28rem;
    font-weight: 700;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    top: 50px;
    left: -5%;
    z-index: -1;
    pointer-events: none;
}

/* ---- Sticky Product Gallery ---- */
.product-gallery {
    flex: 1;
    position: sticky;
    top: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image-container {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 3/4;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.1);
    transition: transform 0.8s ease;
}

.main-image-container:hover .main-image {
    transform: scale(1.03);
    filter: grayscale(0%);
}

/* ---- Cinematic Cross-Fade Gallery ---- */
.gallery-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    filter: grayscale(40%) contrast(1.1);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s ease;
    transform: scale(1.05);
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.main-image-container:hover .gallery-slide.active {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(1.1);
}

/* Hairline Indicators */
.gallery-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    padding: 10px;
}

.indicator {
    width: 35px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.indicator::after {
    content: '';
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: 0;
    right: 0;
}

.indicator.active {
    background: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* ---- PDP Product Info ---- */
.product-info {
    flex: 1;
    padding-top: 20px;
}

.breadcrumbs {
    font-size: 9px;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.breadcrumbs span {
    color: var(--gold-primary);
}

.product-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
}

.product-badge-large {
    display: inline-block;
    padding: 6px 15px;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    background: rgba(212, 175, 55, 0.05);
}

.product-desc {
    font-size: 1.05rem;
    color: #a8a8a8;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* ---- Action Area (Price & Buy) ---- */
.action-area {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
}

.size-selector {
    color: #666;
    font-size: 11px;
    letter-spacing: 1px;
}

.btn-buy {
    padding: 18px 50px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* ---- PDP Performance Specs ---- */
.pdp-specs {
    margin-bottom: 60px;
}

.pdp-specs h4 {
    font-size: 12px;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* ---- Accordion Details ---- */
.accordion-container {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--gold-primary);
}

.icon-plus {
    position: relative;
    width: 12px;
    height: 12px;
}

.icon-plus::before,
.icon-plus::after {
    content: '';
    position: absolute;
    background: var(--gold-primary);
    transition: all 0.3s ease;
}

.icon-plus::before {
    top: 5px;
    left: 0;
    width: 12px;
    height: 1px;
}

.icon-plus::after {
    top: 0;
    left: 5px;
    width: 1px;
    height: 12px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #888;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

.accordion-content p {
    padding-bottom: 25px;
}

/* Active Accordion State */
.accordion-item.active .icon-plus::after {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

/* ---- Full Width Parallax Showcase ---- */
.showcase-banner {
    width: 100%;
    height: 60vh;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.showcase-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.showcase-text h2 {
    font-size: 3rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.showcase-text p {
    color: var(--gold-primary);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ---- Reveal Animation ---- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(5px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ============================================
   Responsive Settings
   ============================================ */
@media (max-width: 1024px) {
    .product-image-container {
        width: 50%;
    }

    .product-info-card {
        width: 60%;
        padding: 50px 40px;
        margin-left: -10%;
    }

    .product-row:nth-child(even) .product-info-card {
        margin-right: -10%;
    }

    .watermark {
        font-size: 18rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 25px 30px;
    }

    .nav-links {
        display: none;
    }

    .timeline-line {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

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

    .product-row,
    .product-row:nth-child(even) {
        flex-direction: column;
        margin-bottom: 100px;
    }

    .product-image-container {
        width: 100%;
        height: 45vh;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .product-image {
        height: 100%;
    }

    .product-info-card {
        width: 92%;
        margin: -60px auto 0 auto !important;
        padding: 40px 30px;
        text-align: left;
        backdrop-filter: blur(25px);
    }

    .watermark {
        font-size: 10rem;
        top: 0%;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    }
}

/* ---- PDP Responsive ---- */
@media (max-width: 900px) {
    .product-hero {
        flex-direction: column;
        padding: 120px 5vw 60px;
        gap: 40px;
    }

    .product-gallery {
        position: relative;
        top: 0;
        width: 100%;
    }

    .product-title {
        font-size: 2.5rem;
    }

    .action-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .btn-buy {
        width: 100%;
    }

    .watermark-detail {
        font-size: 12rem;
        top: 0;
    }

    .showcase-banner {
        background-attachment: scroll;
        height: 40vh;
    }
}