/* Mr Durden — Apple-quality custom site */
/* Colors: Black #0d0d0d, Red #c41e3a, Off-white #f5f0e8 */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black: #0d0d0d;
    --red: #c41e3a;
    --red-hover: #e63950;
    --red-dark: #a01830;
    --white: #f5f0e8;
    --gray: #8a8a8a;
    --gray-dark: #1a1a1a;
    --gray-border: #2a2a2a;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}
.btn--primary {
    background: var(--red);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--red-hover);
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(196, 30, 58, 0.3);
}
.btn--secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-border);
}
.btn--secondary:hover {
    border-color: var(--white);
    background: rgba(245, 240, 232, 0.05);
}
.btn--full { width: 100%; }

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(24px, 4vw, 80px);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(13, 13, 13, 0.8);
}
.nav--scrolled {
    background: rgba(13, 13, 13, 0.95);
    border-bottom: 1px solid var(--gray-border);
}
.nav__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav__logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.nav__links { display: flex; gap: 32px; }
.nav__links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}
.nav__links a:hover { color: var(--white); }
.nav__cart {
    color: var(--red) !important;
    font-weight: 500 !important;
}
.nav__menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav__menu span {
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px clamp(24px, 4vw, 80px);
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(196, 30, 58, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 30% 70%, rgba(196, 30, 58, 0.04) 0%, transparent 50%);
}
.hero__content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.hero__eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 24px;
    font-weight: 500;
}
.hero__title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(180deg, var(--white) 0%, rgba(245, 240, 232, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray);
    margin-bottom: 48px;
    line-height: 1.8;
}
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.hero__scroll span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray);
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Hero Image */
.hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.2;
    filter: grayscale(40%) contrast(1.1);
    transform: scale(1.05);
}
.hero__content { z-index: 2; position: relative; }

/* Lifestyle Banner */
.lifestyle {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lifestyle__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(196, 30, 58, 0.06) 0%, transparent 60%);
}
.lifestyle__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}
.lifestyle__content h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

/* Featured Product */
.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
}
.featured__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    position: relative;
}
.featured__image-wrapper {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3 / 4;
    position: relative;
}
.featured__image {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-dark);
}
.featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.featured:hover .featured__image img {
    transform: scale(1.03);
}
.featured__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--red);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    border-radius: 100px;
}
.featured__info {
    padding: 80px;
    max-width: 560px;
}
.featured__eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 16px;
    font-weight: 500;
}
.featured__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
}
.featured__desc {
    color: var(--gray);
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.8;
}
.featured__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 32px;
}
.featured__amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
}
.featured__currency {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Collection Grid */
.collection {
    padding: 120px clamp(24px, 4vw, 80px);
    max-width: 1400px;
    margin: 0 auto;
}
.collection__header {
    text-align: center;
    margin-bottom: 80px;
}
.collection__eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 16px;
    font-weight: 500;
}
.collection__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}
.collection__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Product Cards */
.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gray-dark);
    border: 1px solid var(--gray-border);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 30, 58, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}
.product-card__image {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-dark);
}
.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.9) contrast(1.05);
}
.product-card:hover .product-card__image img {
    transform: scale(1.06);
    filter: brightness(1) contrast(1.1);
}
.product-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--red);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 5px 12px;
    border-radius: 100px;
}
.product-card__info {
    padding: 24px;
}
.product-card__info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.product-card__desc {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 12px;
}
.product-card__price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--red);
}

/* Placeholder product images (until real supplier photos added) */
.product-card__image--placeholder {
    background: linear-gradient(135deg, #1a0a0a 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card__image--placeholder::after {
    content: attr(data-icon);
    font-size: 4rem;
    opacity: 0.3;
    filter: grayscale(100%);
}
.product-card:hover .product-card__image--placeholder::after {
    opacity: 0.5;
    filter: grayscale(0%);
    transition: all 0.4s ease;
}
.featured__image--placeholder {
    background: linear-gradient(135deg, #1a0808 0%, #2a0a0a 30%, #0d0d0d 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.featured__icon {
    font-size: 6rem;
    opacity: 0.2;
    filter: grayscale(100%);
}
.lifestyle__sub {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 16px;
    font-weight: 300;
}

/* Bundles */
.bundles {
    padding: 120px clamp(24px, 4vw, 80px);
    max-width: 1000px;
    margin: 0 auto;
}
.bundles__header {
    text-align: center;
    margin-bottom: 60px;
}
.bundles__eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 16px;
    font-weight: 500;
}
.bundles__title {
    font-size: clamp(2rem, 4vw, 3rem);
}
.bundles__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.bundle-card {
    background: var(--gray-dark);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: border-color 0.3s;
}
.bundle-card:hover { border-color: var(--red); }
.bundle-card__label {
    display: inline-block;
    background: rgba(196, 30, 58, 0.15);
    color: var(--red);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.bundle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.bundle-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.bundle-card__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}
.bundle-card__was {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 0.9rem;
}
.bundle-card__now {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
}

/* Manifesto */
.manifesto {
    padding: 160px clamp(24px, 4vw, 80px);
    text-align: center;
    position: relative;
}
.manifesto__inner {
    max-width: 700px;
    margin: 0 auto;
}
.manifesto__eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 40px;
    font-weight: 500;
}
.manifesto__quote {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 32px;
    font-style: normal;
    border: none;
    padding: 0;
}
.manifesto__text {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.9;
}

/* Trust Bar */
.trust {
    padding: 80px clamp(24px, 4vw, 80px);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
}
.trust__grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.trust__icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.trust__item p {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.5;
}
.trust__item span {
    font-weight: 300;
    color: var(--gray);
    font-size: 0.75rem;
}

/* Newsletter */
.newsletter {
    padding: 120px clamp(24px, 4vw, 80px);
    text-align: center;
}
.newsletter__inner {
    max-width: 500px;
    margin: 0 auto;
}
.newsletter h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}
.newsletter p {
    color: var(--gray);
    margin-bottom: 32px;
    font-size: 0.95rem;
}
.newsletter__form {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.newsletter__form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 100px;
    border: 1px solid var(--gray-border);
    background: var(--gray-dark);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}
.newsletter__form input:focus { border-color: var(--red); }
.newsletter__form input::placeholder { color: var(--gray); }
.newsletter__code {
    font-size: 0.8rem;
    color: var(--gray);
}
.newsletter__code strong {
    color: var(--red);
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 60px clamp(24px, 4vw, 80px);
    border-top: 1px solid var(--gray-border);
}
.footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.footer__logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}
.footer__brand p {
    color: var(--gray);
    font-size: 0.75rem;
    margin-top: 4px;
    font-style: italic;
}
.footer__links { display: flex; gap: 24px; }
.footer__links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}
.footer__links a:hover { color: var(--white); }
.footer__copy p {
    color: var(--gray);
    font-size: 0.7rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__menu { display: flex; }
    .featured { grid-template-columns: 1fr; }
    .featured__visual { padding: 40px 24px; }
    .featured__info { padding: 40px 24px; }
    .bundles__grid { grid-template-columns: 1fr; }
    .trust__grid { grid-template-columns: 1fr 1fr; }
    .newsletter__form { flex-direction: column; }
    .footer__inner { flex-direction: column; text-align: center; }
    .collection__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 480px) {
    .collection__grid { grid-template-columns: 1fr; }
    .trust__grid { grid-template-columns: 1fr; }
}
