* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html {
    background-color: #1A1A1D;
}

body {
    background-color: #1A1A1D;
    color: #BFBFBF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 40px 0;
    border-bottom: 1px solid #2D2D34;
    display: flex;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #BFBFBF;
    display: flex;
    align-items: center;
}

.logo span {
    color: #7D1A1A;
}

.logo-image {
    height: 40px;
    margin-right: 15px;
}

.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(125, 26, 26, 0.05), transparent);
    transform: skewX(-15deg);
    top: 0;
    right: -200px;
    animation: shadow-move 8s infinite linear;
    z-index: 1;
}

@keyframes shadow-move {
    0% { right: -200px; opacity: 0; }
    20% { opacity: 0.5; }
    80% { opacity: 0.5; }
    100% { right: 120%; opacity: 0; }
}

.slogan {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.slogan span {
    color: #7D1A1A;
}

.subtext {
    font-size: 20px;
    max-width: 600px;
    font-weight: 300;
    opacity: 0.7;
}

.cta-text {
    margin-top: 40px;
    font-size: 16px;
    font-style: italic;
    opacity: 0.6;
    letter-spacing: 1px;
}

.values {
    padding: 80px 0;
    border-top: 1px solid #2D2D34;
}

.value-item {
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.value-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 1px;
    background-color: #7D1A1A;
}

.value-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

footer {
    padding: 40px 0;
    border-top: 1px solid #2D2D34;
    text-align: center;
    font-size: 14px;
    opacity: 0.5;
}