/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --gold-dark: #B8941F;
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-lighter: #1a1a1a;
    --white: #ffffff;
    --white-soft: #f5f5f5;
    --gray: #cccccc;
    --gray-dark: #666666;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
}

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

/* ===========================
   CUSTOM CURSOR SYSTEM
   =========================== */
.luminary-cursor {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.5) 0%, rgba(212, 175, 55, 0.25) 25%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
    opacity: 0.6;
}

/* ===========================
   NAVIGATION
   =========================== */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navigation.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
    padding: 1rem 5%;
}

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

.nav-logo {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 1.4vw, 1.5rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.3rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-logo:hover {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.nav-links {
    display: flex;
    gap: clamp(1.5rem, 2.5vw, 3rem);
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.6rem, 0.7vw, 0.8rem);
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.15rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

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

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-est {
    font-size: 0.7rem;
    letter-spacing: 0.15rem;
    color: var(--gray);
}

.inquire-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold);
    padding: 0.6rem 1.5rem;
    letter-spacing: 0.15rem;
    cursor: none;
    transition: all 0.3s ease;
}

.inquire-btn:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 5% 4rem;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.hero-decorative-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.frame-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

.frame-corner.top-left {
    top: 2rem;
    left: 2rem;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.frame-corner.top-right {
    top: 2rem;
    right: 2rem;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
}

.frame-corner.bottom-left {
    bottom: 2rem;
    left: 2rem;
    border-bottom: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.frame-corner.bottom-right {
    bottom: 2rem;
    right: 2rem;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 5rem);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

.hero-left {
    z-index: 10;
}

.hero-collection-label {
    font-size: clamp(0.6rem, 0.7vw, 0.75rem);
    letter-spacing: 0.3rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-the {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1;
}

.hero-title-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: clamp(0.85rem, 0.95vw, 1rem);
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--black);
    background: var(--gold);
    border: none;
    padding: 1rem 2.5rem;
    letter-spacing: 0.15rem;
    cursor: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.15rem;
    border-bottom: 1px solid var(--white);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.hero-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-main:hover img {
    transform: scale(1.05);
}

.hero-product-showcase {
    position: absolute;
    bottom: -20px;
    left: -40px;
    width: clamp(150px, 15vw, 250px);
    height: clamp(150px, 15vw, 250px);
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 0.4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.hero-product-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.hero-product-showcase img.hero-ring-image {
    object-fit: cover;
    object-position: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.2rem;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ===========================
   PHILOSOPHY SECTION
   =========================== */
.philosophy-section {
    padding: clamp(4rem, 7vw, 8rem) 5%;
    background: var(--black);
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 6rem);
    align-items: center;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.3rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.philosophy-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 2rem;
}

.italic-text {
    font-style: italic;
    color: var(--gray);
}

.highlight-text {
    color: var(--gold);
    font-weight: 600;
}

.philosophy-text {
    font-size: clamp(0.85rem, 0.9vw, 1rem);
    font-weight: 300;
    color: var(--gray);
    line-height: 1.9;
}

.philosophy-text p {
    margin-bottom: 1.2rem;
}

.philosophy-image-wrapper {
    position: relative;
    overflow: visible;
    border-radius: 4px;
    margin-bottom: 4rem;
}

.philosophy-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.philosophy-image-wrapper:hover img {
    transform: scale(1.05);
}

.philosophy-quote-box {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    max-width: 350px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.philosophy-quote-box.philosophy-quote-side {
    bottom: auto;
    right: auto;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    max-width: 280px;
    padding: 1.5rem 2rem;
}

.philosophy-quote-box.philosophy-quote-bottom {
    bottom: -2rem;
    right: 2rem;
    left: 2rem;
    max-width: none;
    padding: 1.5rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    font-style: italic;
    color: var(--black);
    line-height: 1.6;
}

/* ===========================
   CURATED ICONS SECTION
   =========================== */
.curated-section {
    padding: clamp(4rem, 7vw, 8rem) 5%;
    background: var(--white-soft);
    color: var(--black);
}

.curated-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.curated-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 3.5vw, 4rem);
    font-weight: 400;
    color: var(--black);
}

.italic-light {
    font-style: italic;
    color: var(--gray-dark);
}

.curated-subtitle {
    font-size: clamp(0.85rem, 0.9vw, 1rem);
    color: var(--gray-dark);
    max-width: 450px;
    line-height: 1.8;
    margin-top: 0.5rem;
}

.view-all-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 0.15rem;
    border-bottom: 1px solid var(--black);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    white-space: nowrap;
}

.view-all-link:hover {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

.curated-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 2.5vw, 3rem);
}

.curated-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.curated-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.card-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.curated-card:hover .card-image-container img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.curated-card:hover .card-overlay {
    opacity: 1;
}

.quick-view-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--black);
    background: var(--gold);
    border: none;
    padding: 0.8rem 2rem;
    letter-spacing: 0.15rem;
    cursor: none;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.card-info {
    padding: 1.5rem;
    text-align: center;
}

.card-info h3 {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
}

.card-info p {
    font-size: clamp(0.75rem, 0.8vw, 0.85rem);
    color: var(--gray-dark);
    letter-spacing: 0.05em;
}

/* ===========================
   MASTERPIECES CAROUSEL
   =========================== */
.masterpieces-section {
    padding: clamp(4rem, 7vw, 8rem) 5%;
    background: linear-gradient(180deg, #000000 0%, #0f0f0f 50%, #000000 100%);
    position: relative;
}

.section-title-center {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    margin-bottom: 4rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1;
    justify-content: flex-start;
    padding: 1.5rem 0.5rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    text-align: center;
    opacity: 0.5;
    transform: scale(0.85);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.6) grayscale(0.3);
    flex-shrink: 0;
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1.1) grayscale(0);
}

.pedestal {
    position: relative;
    width: clamp(220px, 22vw, 350px);
    height: clamp(280px, 28vw, 440px);
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 8px;
    padding: 0.4rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(212, 175, 55, 0.15);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.pedestal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.35) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.pedestal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    filter: brightness(1.1) contrast(1.05);
}

.spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 50%);
    pointer-events: none;
    animation: spotlightPulse 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes spotlightPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.carousel-label {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.7rem, 0.85vw, 0.95rem);
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-top: 1.5rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.carousel-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #d0d0d0;
    letter-spacing: 0.1rem;
    margin-top: 0.4rem;
    font-style: italic;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.dot.active {
    background: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    transform: scale(1.2);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    padding: clamp(4rem, 7vw, 8rem) 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 6rem);
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image img.jared-portrait {
    object-fit: cover;
    object-position: center 15%;
    height: 500px;
    transform: scale(1.1);
}

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

.atelier-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.6rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    border-radius: 2px;
}

.about-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.3rem;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.15rem;
    margin-bottom: 2rem;
}

.about-text {
    font-size: clamp(0.85rem, 0.9vw, 1rem);
    font-weight: 300;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.2rem;
}

.discover-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.15rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.discover-link:hover {
    color: var(--gold-light);
    transform: translateX(10px);
}

/* ===========================
   CRAFT SECTION
   =========================== */
.craft-section {
    padding: clamp(4rem, 7vw, 8rem) 5%;
    background: var(--black);
}

.craft-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 6rem);
    align-items: center;
}

.craft-image-side img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
    transition: transform 0.6s ease;
}

.craft-image-side img.crafting-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center center;
    border-radius: 8px;
}

.craft-image-side:hover img {
    transform: scale(1.02);
}

.craft-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.craft-subtitle {
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.craft-description {
    font-size: clamp(0.85rem, 0.95vw, 1.05rem);
    font-weight: 300;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.craft-description p { margin-bottom: 1.2rem; }

.craft-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 1.5vw, 2rem);
}

.stat-item {
    text-align: center;
    padding: clamp(1rem, 1.5vw, 1.5rem);
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 2.2vw, 2.5rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.stat-label {
    display: block;
    font-size: clamp(0.7rem, 0.75vw, 0.85rem);
    color: var(--gray);
    letter-spacing: 0.1rem;
}

/* ===========================
   FRIENDS OF THE BRAND
   =========================== */
.friends-section {
    padding: clamp(4rem, 7vw, 8rem) 5%;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
}

.friends-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 5rem);
    align-items: center;
}

.friends-left img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.friends-left img.friends-model-image {
    height: 600px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 8px;
}

.friends-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 3.5vw, 4rem);
    font-weight: 400;
    color: var(--black);
    line-height: 1.1;
    margin-top: 2rem;
}

.showcase-frame {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 4px;
}

.frame-border {
    position: absolute;
    top: 0.8rem; left: 0.8rem; right: 0.8rem; bottom: 0.8rem;
    border: 2px solid var(--gold);
    border-radius: 4px;
    pointer-events: none;
}

.showcase-content { position: relative; z-index: 1; }

.showcase-content img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.showcase-content img.friends-showcase-image {
    height: 350px;
    object-fit: cover;
    object-position: center center;
}

.showcase-info { text-align: center; color: var(--white); }

.showcase-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 1.2vw, 1.4rem);
    font-style: italic;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.showcase-desc {
    font-size: clamp(0.8rem, 0.85vw, 0.95rem);
    color: var(--gray);
    line-height: 1.6;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    padding: clamp(4rem, 7vw, 8rem) 5%;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
}

.contact-container { max-width: 1000px; margin: 0 auto; }

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    font-weight: 400;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    position: relative;
    max-width: 550px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-glow-effect {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form:hover .form-glow-effect { opacity: 1; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.2rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray-dark); }

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.send-btn {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--black);
    background: var(--gold);
    border: none;
    padding: 1rem;
    letter-spacing: 0.2rem;
    cursor: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.send-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stockists-column h3,
.press-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.stockists-list { list-style: none; }

.stockists-list li {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.2vw, 1.3rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.stockists-list li:hover { color: var(--gold); }

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

.press-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    font-weight: 600;
    color: var(--white);
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.press-logo:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.social-links { display: flex; justify-content: center; gap: 1.5rem; }

.social-links a { color: var(--gold); transition: all 0.3s ease; }

.social-links a:hover { color: var(--gold-light); transform: translateY(-3px); }

.social-links svg { width: 22px; height: 22px; }

/* ===========================
   FOOTER
   =========================== */
.footer {
    padding: 3rem 5%;
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.3rem;
    margin-bottom: 0.8rem;
}

.footer-tagline {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 0.15rem;
    margin-bottom: 0.8rem;
}

.footer-copyright {
    font-size: 0.7rem;
    color: var(--gray-dark);
    letter-spacing: 0.1rem;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1200px) {
    .hero-content-wrapper { gap: 2rem; }
    .philosophy-container,
    .about-container,
    .craft-content-wrapper,
    .friends-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-product-showcase { position: relative; bottom: 0; left: 0; margin-top: 1rem; width: 180px; height: 180px; }
}

@media (max-width: 992px) {
    .hero-content-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .hero-right { max-width: 400px; margin: 0 auto; }
    .curated-grid { grid-template-columns: repeat(2, 1fr); }
    .craft-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .contact-info-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .navigation { padding: 1rem 4%; }
    .nav-links, .nav-right { display: none; }
    .hero-section { padding: 5rem 4% 3rem; min-height: auto; }
    .hero-buttons { flex-direction: column; gap: 1rem; }
    .btn-primary { width: 100%; text-align: center; padding: 1rem 2rem; }
    .hero-product-showcase { display: none; }
    .curated-grid { grid-template-columns: 1fr; gap: 2rem; }
    .carousel-container { flex-direction: column; gap: 1rem; }
    .carousel-track { flex-direction: column; align-items: center; overflow-x: hidden; }
    .carousel-btn { width: 40px; height: 40px; font-size: 1.2rem; }
    .craft-stats { grid-template-columns: 1fr; gap: 1rem; }
    .press-logos { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .philosophy-quote-box { position: relative; bottom: auto; right: auto; margin-top: 1rem; max-width: 100%; }
    .luminary-cursor, .cursor-ring { display: none; }
    body { cursor: auto; }
}

@media (max-width: 480px) {
    .curated-header { flex-direction: column; }
    .press-logos { grid-template-columns: 1fr; }
    .contact-form { padding: 1.5rem; }
}

@media (hover: none) and (pointer: coarse) {
    .luminary-cursor, .cursor-ring { display: none !important; }
    body { cursor: auto !important; }
    a, button { cursor: pointer !important; }
}