/* ===== RESET & BASE ===== */
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--bg: #0a0a0a;
--bg-elevated: #121212;
--text: #e8e8e8;
--text-muted: #999;
--accent: #c41e3a; /* subtle red for REC indicators */
--border: #222;
--font-display: 'Cinzel', serif;
--font-body: 'Inter', system-ui, sans-serif;
}
html {
scroll-behavior: smooth;
}
body {
background: var(--bg);
color: var(--text);
font-family: var(--font-body);
font-weight: 300;
line-height: 1.6;
overflow-x: hidden;
}
img {
max-width: 100%;
display: block;
}
a {
color: inherit;
text-decoration: none;
}
/* ===== SURVEILLANCE OVERLAYS ===== */
.scanlines {
pointer-events: none;
position: fixed;
inset: 0;
z-index: 9998;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(0, 0, 0, 0.03) 2px,
rgba(0, 0, 0, 0.03) 4px
);
opacity: 0.4;
}
.noise {
pointer-events: none;
position: fixed;
inset: 0;
z-index: 9997;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
opacity: 0.5;
}
/* ===== HEADER ===== */
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.25rem 2rem;
background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
backdrop-filter: blur(8px);
}
.logo {
font-family: var(--font-display);
font-weight: 700;
font-size: 1.4rem;
letter-spacing: 0.15em;
text-transform: uppercase;
}
.nav {
display: flex;
gap: 2rem;
}
.nav a {
font-size: 0.85rem;
font-weight: 400;
letter-spacing: 0.08em;
text-transform: uppercase;
opacity: 0.75;
transition: opacity 0.2s;
}
.nav a:hover {
opacity: 1;
}
.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
}
.menu-toggle span {
width: 22px;
height: 1.5px;
background: var(--text);
transition: all 0.25s;
}
.menu-toggle.active span:nth-child(1) {
transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
transform: translateY(-6.5px) rotate(-45deg);
}
@media (max-width: 700px) {
.nav.open {
display: flex;
position: absolute;
top: 100%;
left: 0;
right: 0;
flex-direction: column;
background: rgba(10,10,10,0.97);
padding: 1.5rem 1.25rem;
gap: 1.25rem;
border-bottom: 1px solid var(--border);
}
}
/* ===== HERO ===== */
.hero {
position: relative;
height: 100vh;
min-height: 640px;
display: flex;
align-items: flex-end;
overflow: hidden;
}
.hero-bg {
position: absolute;
inset: 0;
}
.hero-img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 30%;
filter: grayscale(30%) contrast(1.1) brightness(0.7);
}
.cctv-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
to top,
rgba(10,10,10,0.95) 0%,
rgba(10,10,10,0.4) 40%,
transparent 70%
);
pointer-events: none;
}
.cctv-frame {
position: absolute;
top: 6rem;
right: 2rem;
background: rgba(0,0,0,0.65);
border: 1px solid rgba(255,255,255,0.15);
padding: 0.5rem 0.9rem;
font-family: monospace;
font-size: 0.7rem;
letter-spacing: 0.05em;
display: flex;
align-items: center;
gap: 0.6rem;
backdrop-filter: blur(4px);
}
.rec-dot {
width: 8px;
height: 8px;
background: var(--accent);
border-radius: 50%;
animation: blink 1.4s infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.2; }
}
.cctv-label {
color: #ccc;
}
.cctv-time {
color: #888;
margin-left: 0.5rem;
}
.hero-content {
position: relative;
z-index: 2;
padding: 0 2rem 5rem;
max-width: 900px;
}
.hero-title {
font-family: var(--font-display);
font-weight: 900;
font-size: clamp(3.5rem, 12vw, 7.5rem);
letter-spacing: 0.08em;
line-height: 0.9;
margin-bottom: 0.6rem;
text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
.hero-tagline {
font-size: clamp(1.1rem, 2.5vw, 1.5rem);
font-weight: 300;
letter-spacing: 0.12em;
text-transform: uppercase;
opacity: 0.85;
margin-bottom: 2rem;
}
/* ===== BUTTONS ===== */
.btn {
display: inline-block;
padding: 0.9rem 2rem;
background: var(--text);
color: var(--bg);
font-size: 0.8rem;
font-weight: 500;
letter-spacing: 0.12em;
text-transform: uppercase;
transition: all 0.25s;
}
.btn:hover {
background: #fff;
transform: translateY(-2px);
}
.btn-small {
padding: 0.45rem 1rem;
background: transparent;
border: 1px solid var(--text);
color: var(--text);
font-size: 0.7rem;
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
cursor: pointer;
transition: all 0.2s;
}
.btn-small:hover {
background: var(--text);
color: var(--bg);
}
/* ===== STATEMENT ===== */
.statement {
padding: 4rem 2rem;
text-align: center;
background: var(--bg-elevated);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.statement p {
max-width: 720px;
margin: 0 auto;
font-size: 1.15rem;
font-weight: 300;
line-height: 1.7;
color: var(--text-muted);
}
/* ===== SHOP ===== */
.shop {
padding: 6rem 2rem;
}
.section-header {
text-align: center;
margin-bottom: 3.5rem;
}
.section-header h2 {
font-family: var(--font-display);
font-weight: 700;
font-size: 2.2rem;
letter-spacing: 0.12em;
margin-bottom: 0.5rem;
}
.section-sub {
font-size: 0.9rem;
color: var(--text-muted);
letter-spacing: 0.08em;
text-transform: uppercase;
}
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.product-card {
background: var(--bg-elevated);
border: 1px solid var(--border);
transition: border-color 0.25s;
}
.product-card:hover {
border-color: #444;
}
.product-img-wrap {
position: relative;
aspect-ratio: 3/4;
overflow: hidden;
background: #111;
}
.product-img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img {
transform: scale(1.04);
}
.cam-badge {
position: absolute;
top: 0.75rem;
left: 0.75rem;
background: rgba(0,0,0,0.7);
color: var(--accent);
font-family: monospace;
font-size: 0.65rem;
font-weight: 600;
letter-spacing: 0.1em;
padding: 0.25rem 0.5rem;
border: 1px solid rgba(196,30,58,0.4);
}
.tee-placeholder {
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
}
.tee-mock {
width: 70%;
aspect-ratio: 1;
background: #111;
border: 1px solid #333;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.tee-mock::before {
content: '';
position: absolute;
top: 8%;
left: 50%;
transform: translateX(-50%);
width: 30%;
height: 8%;
background: #222;
border-radius: 0 0 40% 40%;
}
.tee-text {
font-family: var(--font-display);
font-size: 1.4rem;
letter-spacing: 0.1em;
opacity: 0.7;
}
.product-info {
padding: 1.25rem;
}
.product-info h3 {
font-family: var(--font-display);
font-weight: 600;
font-size: 1.1rem;
letter-spacing: 0.06em;
margin-bottom: 0.35rem;
}
.product-desc {
font-size: 0.85rem;
color: var(--text-muted);
margin-bottom: 1rem;
}
.product-meta {
display: flex;
align-items: center;
justify-content: space-between;
}
.price {
font-weight: 500;
font-size: 1rem;
}
/* ===== LOOKBOOK ===== */
.lookbook {
padding: 6rem 2rem;
background: var(--bg-elevated);
}
.lookbook-grid {
display: grid;
grid-template-columns: 1.4fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 1rem;
max-width: 1100px;
margin: 0 auto;
height: 70vh;
min-height: 500px;
}
.look-item {
position: relative;
overflow: hidden;
background: #111;
}
.look-item.large {
grid-row: span 2;
}
.look-item img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(20%) contrast(1.05);
transition: transform 0.6s ease;
}
.look-item:hover img {
transform: scale(1.05);
}
.look-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%);
display: flex;
align-items: flex-end;
padding: 1rem;
opacity: 0.8;
}
.cam-id {
font-family: monospace;
font-size: 0.7rem;
letter-spacing: 0.1em;
color: #aaa;
background: rgba(0,0,0,0.6);
padding: 0.3rem 0.6rem;
border: 1px solid rgba(255,255,255,0.1);
}
/* ===== STORY ===== */
.story {
padding: 7rem 2rem;
}
.story-inner {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 4rem;
align-items: center;
}
.story-text h2 {
font-family: var(--font-display);
font-weight: 700;
font-size: 2rem;
letter-spacing: 0.1em;
margin-bottom: 1.75rem;
}
.story-text p {
margin-bottom: 1.25rem;
color: var(--text-muted);
font-size: 1.05rem;
}
.story-text .highlight {
color: var(--text);
font-size: 1.35rem;
font-weight: 400;
letter-spacing: 0.04em;
margin: 1.75rem 0;
font-family: var(--font-display);
}
/* CCTV mock visual */
.cctv-mock {
position: relative;
max-width: 340px;
margin: 0 auto;
}
.cctv-screen {
position: relative;
aspect-ratio: 4/3;
background: #000;
border: 3px solid #333;
border-radius: 4px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.cctv-screen img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(40%) contrast(1.2) brightness(0.85);
}
.scan-line {
position: absolute;
left: 0;
right: 0;
height: 3px;
background: rgba(0, 255, 100, 0.15);
animation: scan 3.5s linear infinite;
box-shadow: 0 0 10px rgba(0, 255, 100, 0.3);
}
@keyframes scan {
0% { top: 0; }
100% { top: 100%; }
}
.cctv-base {
height: 18px;
background: #222;
margin: 0 auto;
width: 60%;
border-radius: 0 0 6px 6px;
}
.rec-indicator {
position: absolute;
top: -1.8rem;
left: 0;
font-family: monospace;
font-size: 0.7rem;
color: var(--accent);
display: flex;
align-items: center;
gap: 0.4rem;
}
.rec-indicator .dot {
width: 7px;
height: 7px;
background: var(--accent);
border-radius: 50%;
animation: blink 1.4s infinite;
}
/* ===== FOOTER ===== */
.footer {
background: var(--bg-elevated);
border-top: 1px solid var(--border);
padding: 4rem 2rem 2rem;
}
.footer-top {
max-width: 1100px;
margin: 0 auto 3rem;
display: flex;
justify-content: space-between;
gap: 3rem;
flex-wrap: wrap;
}
.footer-brand .logo {
margin-bottom: 0.5rem;
}
.footer-brand p {
color: var(--text-muted);
font-size: 0.9rem;
}
.footer-links {
display: flex;
gap: 4rem;
}
.footer-links h4 {
font-size: 0.75rem;
letter-spacing: 0.12em;
text-transform: uppercase;
margin-bottom: 1rem;
color: var(--text-muted);
}
.footer-links a {
display: block;
font-size: 0.9rem;
margin-bottom: 0.5rem;
opacity: 0.8;
transition: opacity 0.2s;
}
.footer-links a:hover {
opacity: 1;
}
.footer-bottom {
max-width: 1100px;
margin: 0 auto;
padding-top: 2rem;
border-top: 1px solid var(--border);
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 1rem;
font-size: 0.8rem;
color: var(--text-muted);
}
.footer-bottom .subtle {
font-style: italic;
opacity: 0.7;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
.story-inner {
grid-template-columns: 1fr;
gap: 3rem;
}
.lookbook-grid {
grid-template-columns: 1fr;
grid-template-rows: auto;
height: auto;
}
.look-item.large {
grid-row: auto;
aspect-ratio: 3/4;
}
.look-item {
aspect-ratio: 3/4;
}
}
@media (max-width: 700px) {
.header {
padding: 1rem 1.25rem;
}
.nav {
display: none;
}
.menu-toggle {
display: flex;
}
.hero-content {
padding: 0 1.25rem 3.5rem;
}
.cctv-frame {
top: 5rem;
right: 1rem;
font-size: 0.6rem;
}
.shop, .lookbook, .story {
padding: 4rem 1.25rem;
}
.statement {
padding: 3rem 1.25rem;
}
.footer-top {
flex-direction: column;
}
.footer-links {
gap: 2.5rem;
}
}
top of page
Minimalist Wireless Speaker A sleek, cylindrical Bluetooth speaker with a matte finish and premium fabric grilles that delivers deep, balanced sound. The design features a hidden touch interface on top and a powerful battery for long-lasting playback.
bottom of page