*, 
*::before, 
*::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
html { 
    scroll-behavior: smooth; 
}
body {
    font-family: 'DM Sans', sans-serif;
    background: #0a0710;
    color: #f0e8d8;
    overflow-x: hidden;
}
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    padding: 22px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.5s, border-color 0.5s;
}
.back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    color: #b48fd4;
    text-decoration: none;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s, gap 0.3s;
}
.back-btn:hover { color: var(--gold); gap: 14px; }
.hero{
    position: relative;
    height: 100vh;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
}
.hero-bg{
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    filter: saturate(0.4) brightness(0.3);
    transform: scale(1.08);
    transition: transform 10s ease-out;
}
.hero-bg.loaded{
    transform: scale(1);
}
.hero-vignette{
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 80% at 75% 50%,rgba(74,45,122,0.5) 0%, transparent 70%),
        linear-gradient(to right, rgba(10,7,16,0.97) 0%,rgba(10,7,16,0.75) 45%, rgba(26,15,46,0.55) 100%);   
}
.retro-rings{
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    pointer-events: none;
}
.ring{
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ring-1{
    width: 180px; height: 180px;
    border-color: rgba(201,168,76,0.6);
    animation: ringPulse 4s ease-in-out infinite;
}
.ring-2{
    width: 280px; height: 280px;
    border-color: rgba(201, 168, 76, 0.304);
    animation: ringPulse 4s ease-in-out infinite 0.8s;
}
.ring-3{
    width: 380px; height: 380px;
    border-color: rgba(123, 79, 166, 0.2);
    animation: ringPulse 4s ease-in-out infinite 1.6s;
}
.ring-4{
    width: 480px; height: 480px;
    border-color: rgba(123, 79, 166, 0.113);
    animation: ringPulse 4s ease-in-out infinite 2.4s;
}
.ring-center{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.3), rgba(123,79,166,0.1));
    border: 1px solid rgba(201,168,71,0.5);
    display: flex; align-items: center;justify-content: center;
}
.ring-center i {
    font-size: 32px;
    opacity: 0.8;
    color: #c9a84c;
}
@keyframes ringPulse{
    0%, 100% {opacity: 0.6; transform: translate(-50%, -50%) scale(1);}
    50% {opacity: 1; transform: translate(-50%, -50%) scale(1.04);}
}
.hero-content{
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 640px;
}
.hero-title{
    font-size: clamp(88px,13vw,160px);
    color: #faf6f0;
    font-family: 'Bodoni Moda',serif;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.85;
    opacity: 0;
    animation: fadeSlide 0.9s ease forwards 0.6s;
    margin-bottom: 10px;
}
.hero-title em{
    color: #7b4fa6;
    font-style: italic;
    -webkit-text-stroke: 0px;
}
.hero-title .outline{
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(212,184,232,0.45);
}
.hero-sub{
    color: #b48fd4;
    font-style: italic;
    font-family: 'Libre Baskerville',serif;
    font-size: clamp(15px, 2vw, 19px);
    margin-bottom: 35px;
    opacity: 0;
    line-height: 1.6;
    animation: fadeSlide 0.9s ease forwards 0.6s;
}
.hero-chips{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    opacity: 0;
    animation: fadeSlide 0.9s ease forwards 0.6s;
}
.chip{
    padding: 7px 18px;
    border: 1px solid;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
}
.chip-gold{
    background-color: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.4);
    color: #c9a84c;
}
.chip-violet{
    background-color: rgba(123,79,166,0.15);
    border-color: rgba(123,79,166,0.4);
    color: #b48fd4;
}
.year-stamp{
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 3;
    opacity: 0;
    animation: fadeSlide 1s ease forwards 1s;
}
.year-num{
    font-family: 'Bodoni Moda',serif;
    font-size: 100px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(123,79,166,0.5);
    line-height: 1;
    user-select: none;
}
.year-label{
    margin-top: -8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(212,184,232,0.4);
}
@keyframes fadeSlide{
    from {opacity: 0; transform: translateY(22px);}
    to {opacity: 1; transform: translateY(0);}
}
.divider-band{
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    overflow: hidden;
    gap: 20px;
    justify-content: space-between;
    background-color: #2d1b4c;
    padding: 22px 60px;
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.divider-band::before{
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(201,168,76,0.06), transparent 40%, rgba(123,79,166,0.06));
}
.band-item{
    display: flex;
    flex-direction: row;
    gap: 14px;
    position: relative; z-index: 1;
}
.band-icon{
    width: 42px; height: 42px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #c9a84c;
    flex-shrink: 0;
}
.band-text strong{
    display: block;
    color: #f0e8d8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.band-text span{
    color: rgba(212,184,232,0.45);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.band-seper{
    width: 1px;
    height: 32px;
    background: rgba(212,184,232,0.12);
}
.about-section{
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
    position: relative;
    background: #1a0f2c;
}
.about-section::before{
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 220px; height: 220px;
    border-right: 1px solid rgba(201,168,76,0.3);
    border-bottom: 1px solid rgba(201,168,76,0.3);
}
.about-section::after{
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 220px; height: 220px;
    border-top: 1px solid rgba(201,168,76,0.3);
    border-left: 1px solid rgba(201,168,76,0.3);
}
.about-copy{
    position: relative;
    z-index: 1;
}
.section-title{
    font-family: 'Bodoni Moda',serif;
    font-size: clamp(36px,4.5vw,58px);
    font-weight: 700;
    line-height: 1.05;
    color: #faf6f0;
    margin-bottom: 28px;
}
.section-title em{
    color: #7b4fa6;
    font-style: italic;
}
.about-text{
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(240,232,216,0.55);
    margin-bottom: 20px;
}
.keyword-pills{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: row;
}
.pill{
    background-color: rgba(74,45,122,0.12);
    color: #b48fd4;
    padding: 8px 20px;
    letter-spacing: 0.12em;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid rgba(212,184,232,0.12);
    transition: all 0.35s;
    font-size: 11px;
    display: flex; align-items: center; justify-content: center;
}
.pill:hover{
    color: #f0e8d8;
    background-color: #7b4fa6;
    background: #4a2d7a;
}
.about-visual{
    position: relative;
}
.lens-frame{
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.lens-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(201,168,76,0.3);
    z-index: 3;
    pointer-events: none;
}
.lens-frame::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(201,168,76,0.12);
    z-index: 3;
    pointer-events: none;
}
.lens-frame img{
    width: 100%; height: 100%;
    object-fit: cover;
    border: 1px solid rgba(201,168,76,0.12);
    filter: saturate(0.7) contrast(1.1);
    transition: transform 0.9s ease, filter 0.9s ease;
}
.lens-frame:hover img{
    filter: saturate(0.9) contrast(1.05);
    transform: scale(1.06);
}
.lens-frame-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,15,46,0.3) 0%, transparent 50%, rgba(74,45,122,0.2) 100%);
    z-index: 2;
}
.vintage-tag{
    position: absolute;
    top: -8px;
    right: 30px;
    z-index: 10;
    color: #0a0710;
    background-color: #c9a84c;
    padding: 8px 20px 8px 16px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Bodoni Moda',serif;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}
.craft-section{
    position: relative;
    background-color: #0a0710;
    padding: 120px 60px;
    overflow: hidden;
}
.craft-section::before{
    content: 'DEBS';
    position: absolute;
    bottom: -20px;
    right: -20px;
    color: transparent;
    -webkit-text-stroke: 1.5px rgb(74,45,122);
    font-size: clamp(160px,22vw,320px);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    font-family: 'Bodoni Moda',serif;
    font-weight: 900;
}
.craft-header{
    text-align: center;
    max-width: 560px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}
.craft-header h2{
    font-size: clamp(36px,4vw,56px);
}
.craft-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:2px;
    position: relative; z-index: 1;
}
.craft-card{
    background-color: #1a0f2c;
    padding: 40px 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(74,45,122,0.15);
    transition: background 0.4s, border-color 0.4s;
}
.craft-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.craft-card:hover { background: #2d1b4c; border-color: rgba(123,79,166,0.5); }
.craft-card:hover::before { transform: scaleX(1); }
.craft-num{
    font-family: 'Bodoni Moda',serif;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(201, 168, 76, 0.7);
    font-weight: 900;
    font-size: clamp(26px,3.5vw,56px);
    font-style: italic;
    margin-bottom: 20px;
    transition: -webkit-text-stroke-color 0.4s;
}
.craft-card:hover .craft-num { -webkit-text-stroke-color: rgba(201,168,76,0.7); }
.craft-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.3;
}
.craft-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}
.gallery-section{
    padding: 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 400px 400px;
    gap: 3px;
    background: #0a0710;
    overflow: hidden;
}
.g-tile{
    position: relative;
    overflow: hidden;
}
.g-tile.span-row{
    grid-row: span 2;
}
.g-tile img{
    width: 100%;height: 100%;
    object-fit: cover;
    filter: saturate(0.5) brightness(0.7);
    transition: transform 0.6s ease, filter 0.6s ease;
}
.g-tile:hover img{
    transform: scale(1.06);
    filter: saturate(0.8) brightness(0.85);
}
.g-tile-info{
    position: absolute;
    bottom: 0; left: 0;right: 0;
    padding: 30px 28px;
    background: linear-gradient(to top, rgba(10,7,16,0.9) 0%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}
.g-tile:hover .g-tile-info{
    transform: translateY(0);
    opacity: 1;
}
.g-tile-label{
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a84c;
}
.marquee-section{
    overflow-x: hidden;
    padding: 22px 0;
    background-color: #c9a84c;
    border-top: 1px solid rgba(201,168,76,0.5);
    width: 100;

}
.marquee-track{
    display: flex;
    gap: 0;
    width: max-content;
    animation: marqueeRoll 18s linear infinite;
}
.marquee-item{
    padding: 0 40px;
    font-family: 'Bodoni Moda',serif;
    font-size: 14px;
    white-space: nowrap;
    color: #0a0710;
    font-style: italic;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.marquee-dot{
    height: 5px; width: 5px;
    border-radius: 50%;
    background-color: #0a0710;
    opacity: 0.4;
}
@keyframes marqueeRoll { 
    from { 
        transform: translateX(0); 
    }
    to { 
        transform: translateX(-50%); 
    } 
}
.specs-section{
    background-color: #1a0f2c;
    padding: 120px 60px;
    position: relative;
}
.specs-inner{
    max-width: 960px;
    margin: 0 auto;
}
.specs-table{
    margin-top: 60px;
    border: 1px solid rgba(74,45,122,0.6);
}
.spec-row{
    display: grid;
    border-bottom: 1px solid rgba(74,45,122,0.6);
    grid-template-columns: 1fr 1.6fr;
    transition: background 0.4s;
}
.spec-row:last-child{
    border-bottom: none;
}
.spec-row:hover{
    background: rgba(74,45,122,0.2);
}
.spec-label{
    padding: 22px 32px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    color: #c9a84c;
    border-right: 1px solid rgba(74,45,122,0.6);
    display: flex;
    align-items: center;
}
.spec-value {
    padding: 22px 32px;
    font-size: 14px;
    color: var(--cream);
    display: flex;
    align-items: center;
    font-weight: 400;
    font-family: 'Libre Baskerville', serif;
}
.cta-section{
    padding: 140px 60px;
    background: #0a0710;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before{
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(74,45,122,0.35) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    pointer-events: none;
}
.cta-inner{
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto;
}
.cta-title{
    font-family: 'Bodoni Moda',serif;
    font-size: clamp(46px,4.5vw,72px);
    color: #faf6f0;
    font-weight: 900;
    line-height: 1.01;
    margin-bottom: 22px;
}
.cta-title em{
    color: #7b4fa6;
    font-style: italic;
}
.cta-sub{
    font-size: 15px;
    line-height: 1.8;
    color: rgba(240,232,216,0.55);
    margin-bottom: 50px;
}
.cta-buttons{
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-gold{
    background-color: #c9a84c;
    color: #0a0710;
    padding: 16px 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    outline: none;
    transition: background 0.3s, trasform 0.2s;
    font-family: 'DM Sans',sans-serif;
    text-decoration: none;
    cursor: none;
    transition: 0.3s;
}
.btn-gold:hover { 
    background: #8c6e2c; 
    transform: translateY(-3px); 
}
.btn-border {
    background: transparent;
    color: #b48fd4;
    padding: 16px 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid rgba(212,184,232,0.25);
    cursor: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-border:hover {
    border-color: #b48fd4;
    color: #f0e8d8;
    background: rgba(74,45,122,0.2);
}
footer{
    padding: 40px 50px;
    background-color: #1a0f2c;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #0a0710;
}

footer::after{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(0, 98, 255, 0.25);
    filter: blur(120px);
    top: -80px;
    right: -80px;
}
.links{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 15px;
}
.company{
    display: flex;
    flex-direction: column;
    width: 280px;
    gap: 15px;
    font-size: 14px;
    color: #fff;
}
.company img{
    width: 80px;
    border-radius: 20px;
}
.company p{
    font-size: 16px;
    font-weight: 400;
}
.company button{
    background-color: rgb(0, 98, 255);
    border-radius: 20px;
    border: none;
    outline: none;
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    width: max-content;
    transition: 0.3s;
}
.company button:hover{
    transform: scale(1.12);
}
.products-foot{
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.products-foot h2{
    color: #fff;
    font-size: 16px;
}
.product-list{
    color: #fff;
    font-size: 15px;
    list-style: none;
    text-decoration: none;
}
.product-list li{
    margin-bottom: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.product-list li:hover{
    color: #8c8c8c;
}
.navigation{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.navigation h2{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.nav-list{
    color: #fff;
    font-size: 15px;
    list-style: none;
    text-decoration: none;
}
.nav-list li{
    margin-bottom: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.nav-list li:hover{
    color: #8c8c8c;
}
.contact{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.details h2{
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}
.details p{
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
}
.social-head{
    font-size: 16px;
    color: #fff;
}
.icons{
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.icon-link{
    text-decoration: none;
    color: #fff;
}
.icon-link i{
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.34);
    cursor: pointer;
    transition: 0.3s;
}
.fa-instagram:hover{
    color: #E1306C;
    background: rgba(255,255,255);
}

.fa-facebook:hover{
    color: #0000ff;
    background: rgba(255,255,255);
}
.copyright{
    margin-top: 30px;
}
.copyright h5{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
}
hr{
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 20px 0;
}
/*===responsive===*/
@media (max-width: 1200px) {
  .topbar { padding: 20px 40px; }
 
  .hero-content { padding: 0 40px; max-width: 560px; }
 
  .retro-rings { width: 420px; height: 420px; right: 4%; }
  .ring-1 { width: 150px; height: 150px; }
  .ring-2 { width: 230px; height: 230px; }
  .ring-3 { width: 310px; height: 310px; }
  .ring-4 { width: 390px; height: 390px; }
 
  .year-stamp { left: 40px; }
  .year-num { font-size: 80px; }
 
  .divider-band { padding: 20px 40px; gap: 16px; }
 
  .about-section { padding: 100px 40px; gap: 60px; }
 
  .craft-section { padding: 100px 40px; }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
 
  .specs-section { padding: 100px 40px; }
 
  .cta-section { padding: 120px 40px; }
}
 
/* ── TABLET LANDSCAPE (≤1024px) ── */
@media (max-width: 1024px) {
  /* Topbar */
  .topbar { padding: 18px 32px; }
 
  /* Hero */
  .hero { min-height: 640px; }
  .hero-content { padding: 0 32px; max-width: 500px; }
  .hero-title { letter-spacing: -1px; }
 
  .retro-rings {
    width: 340px; height: 340px;
    right: 2%;
    opacity: 0.6;
  }
  .ring-1 { width: 120px; height: 120px; }
  .ring-2 { width: 190px; height: 190px; }
  .ring-3 { width: 260px; height: 260px; }
  .ring-4 { width: 320px; height: 320px; }
  .ring-center { width: 80px; height: 80px; }
  .ring-center i { font-size: 26px; }
 
  .year-stamp { left: 32px; bottom: 30px; }
  .year-num { font-size: 70px; }
 
  /* Divider band */
  .divider-band { padding: 18px 32px; gap: 12px; }
  .band-seper { display: none; }
 
  /* About */
  .about-section {
    grid-template-columns: 1fr;
    padding: 80px 32px;
    gap: 50px;
  }
  .about-section::before,
  .about-section::after { display: none; }
  .about-visual { max-width: 480px; margin: 0 auto; }
 
  /* Craft */
  .craft-section { padding: 80px 32px; }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
 
  /* Gallery */
  .gallery-section {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
  }
  .g-tile.span-row { grid-row: span 1; }
 
  /* Specs */
  .specs-section { padding: 80px 32px; }
 
  /* CTA */
  .cta-section { padding: 100px 32px; }
}
 
/* ── TABLET PORTRAIT (≤768px) ── */
@media (max-width: 768px) {
  /* Topbar */
  .topbar { padding: 16px 24px; }
  .back-btn span:not(:first-child) { display: none; }
 
  /* Hero */
  .hero-content { padding: 0 24px; max-width: 100%; }
  .hero-sub { font-size: 15px; }
 
  .retro-rings { display: none; }
 
  .year-stamp { display: none; }
 
  /* Divider band */
  .divider-band {
    padding: 20px 24px;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
 
  /* About */
  .about-section {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }
  .about-visual { max-width: 100%; }
  .lens-frame { aspect-ratio: 4/3; }
  .vintage-tag { top: -6px; right: 16px; }
 
  /* Craft */
  .craft-section { padding: 60px 24px; }
  .craft-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .craft-card { padding: 28px 20px; }
  .craft-section::before { font-size: 120px; }
 
  /* Gallery */
  .gallery-section {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 240px);
  }
  .g-tile.span-row { grid-row: span 1; }
 
  /* Marquee */
  .marquee-item { padding: 0 24px; font-size: 13px; }
 
  /* Specs */
  .specs-section { padding: 60px 24px; }
  .spec-row { grid-template-columns: 1fr; }
  .spec-label { border-right: none; border-bottom: 1px solid rgba(74,45,122,0.6); }
 
  /* CTA */
  .cta-section { padding: 80px 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-gold, .btn-border { width: 100%; max-width: 320px; text-align: center; }
 
  /* Footer */
  .links { flex-direction: column; align-items: flex-start; gap: 40px; }
  .company { width: 100%; }
}
 
/* ── MOBILE (≤480px) ── */
@media (max-width: 480px) {
  /* Topbar */
  .topbar { padding: 14px 18px; }
 
  /* Hero */
  .hero-content { padding: 0 18px; }
  .hero-chips { gap: 8px; }
  .chip { padding: 6px 14px; font-size: 10px; }
 
  /* Divider band */
  .divider-band { padding: 16px 18px; }
  .band-icon { width: 36px; height: 36px; font-size: 14px; }
 
  /* About */
  .about-section { padding: 50px 18px; }
  .keyword-pills { gap: 8px; }
  .pill { padding: 6px 14px; font-size: 10px; }
 
  /* Craft */
  .craft-section { padding: 50px 18px; }
  .craft-grid { grid-template-columns: 1fr; }
  .craft-card { padding: 28px 20px; }
 
  /* Gallery */
  .gallery-section { grid-template-rows: repeat(5, 200px); }
 
  /* Specs */
  .specs-section { padding: 50px 18px; }
 
  /* CTA */
  .cta-section { padding: 60px 18px; }
 
  /* Footer */
  footer { padding: 32px 18px; }
  .links { flex-direction: column; gap: 32px; }
}
 
/* ── SMALL MOBILE (≤360px) ── */
@media (max-width: 360px) {
  .hero-content { padding: 0 14px; }
  .about-section { padding: 40px 14px; }
  .craft-section { padding: 40px 14px; }
  .specs-section { padding: 40px 14px; }
  .cta-section { padding: 50px 14px; }
  footer { padding: 28px 14px; }
}
 
