/* ─── HOME PAGE ─────────────────────────────── */

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 40%, rgba(212,175,55,0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(212,175,55,0.10) 0%, transparent 40%);
    animation: rotate 30s linear infinite;
}

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

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1100px;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-logo img {
    max-width: min(800px, 90vw);
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 6.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    animation: fadeInUp 1.2s ease-out 0.2s backwards;
    text-shadow: 0 0 40px rgba(212,175,55,0.3);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero .tagline {
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out 0.4s backwards;
}

.hero .divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2.5rem auto;
    animation: expandWidth 1.5s ease-out 0.6s backwards;
}

@keyframes expandWidth {
    from { width: 0; opacity: 0; }
    to { width: 150px; opacity: 1; }
}

.hero .subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 750px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    animation: fadeInUp 1.2s ease-out 0.8s backwards;
}

.hero-cta {
    display: inline-flex;
    gap: 2rem;
    animation: fadeInUp 1.2s ease-out 1s backwards;
}

/* ─── Collections ────────────────────────────── */
#collections {
    background: var(--cream);
}

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

.collection-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    transition: all 0.5s ease;
    overflow: hidden;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.collection-image {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background: #111;
}

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

.collection-card:hover .collection-image img {
    transform: scale(1.08);
    opacity: 1;
}

/* Placeholder for cards without images */
.collection-image.placeholder {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-image.placeholder svg {
    width: 80px;
    height: 80px;
    fill: none;
    stroke: rgba(212,175,55,0.25);
    stroke-width: 1;
}

.collection-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 6px;
    pointer-events: none;
}

.collection-content {
    padding: 2.5rem;
}

.collection-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.collection-content p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.collection-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--charcoal);
    font-weight: 500;
}

.feature-item::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.collection-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s;
}

.collection-link:hover {
    gap: 1.2rem;
}

.collection-link:hover svg {
    transform: translateX(4px);
}

/* ─── Philosophy ─────────────────────────────── */
#philosophy {
    background: var(--black);
    color: var(--white);
}

#philosophy .section-header h2 {
    color: var(--white);
}

#philosophy .section-header p {
    color: rgba(255,255,255,0.7);
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.philosophy-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.04);
    transition: all 0.4s ease;
}

.philosophy-card:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.philosophy-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 2rem;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.philosophy-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: var(--black);
    stroke-width: 2;
}

.philosophy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold);
}

.philosophy-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

/* ─── Craftsmanship ──────────────────────────── */
#craftsmanship {
    background: var(--white);
    overflow: hidden;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.craftsmanship-image {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.craftsmanship-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craftsmanship-image.placeholder {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.craftsmanship-image.placeholder::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

.craftsmanship-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--black);
}

.craftsmanship-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.8rem;
    background: var(--cream);
    border-left: 3px solid var(--gold);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

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

/* ─── Gallery Strip ──────────────────────────── */
#gallery-strip {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.gallery-strip-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

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

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

.gallery-strip-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-strip-item:hover .overlay {
    opacity: 1;
}

.overlay-text {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ─── CTA ────────────────────────────────────── */
#cta {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
    text-align: center;
    padding: 9rem 3rem;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.1) 0%, transparent 70%);
}

#cta .container {
    position: relative;
    z-index: 1;
}

#cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

#cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ─── Responsive HOME ────────────────────────── */
@media (max-width: 1200px) {
    .hero h1 { font-size: 4.5rem; }
    .collections-grid { gap: 2.5rem; }
}

@media (max-width: 900px) {
    .hero h1 { font-size: 3rem; }
    .hero .tagline { font-size: 1.1rem; }
    .collections-grid,
    .philosophy-content,
    .craftsmanship-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-cta { flex-direction: column; gap: 1rem; align-items: center; }
    #gallery-strip { grid-template-columns: 1fr; }
    #cta h2 { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .hero { min-height: 100svh; padding: 80px 1rem 2rem; }
    .hero-content { padding: 0 1rem; }
    .hero h1 { font-size: 2.2rem; letter-spacing: 3px; }
    .hero .tagline { font-size: 0.95rem; letter-spacing: 3px; }
    .hero .subtitle { font-size: 1rem; }
    .hero-logo img { max-width: 85vw; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .collection-content { padding: 1.5rem; }
    .collection-content h3 { font-size: 1.5rem; }
}
