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

body {
    font-family: 'Inter', sans-serif;
    background-color: #fbfcfd;
    color: #1a2a3a;
    overflow-x: hidden;
    line-height: 1.5;
}

h1,
h2,
h3,
.display-5,
.display-6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.navbar-nav {
    background-color: #d8bf9a;
    border-radius: 12px;
    margin-top: 12px;
    padding: 1rem 0;
}

.accent-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.bg-soft-cream {
    background-color: #faf7f2;
}

.bg-deep-navy {
    background-color: #0b1c2c;
}

.text-soft-gold {
    color: #cbaa6e;
}

.border-gold {
    border-color: #e2d1b6;
}

.btn-gold {
    background: #d8bf9a;
    color: #0b1c2c;
    font-weight: 600;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    transition: all 0.25s ease;
}

.btn-gold:hover {
    background: #ccaa7a;
    color: #0b1c2c;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -8px rgba(203, 170, 110, 0.3);
}

.btn-outline-gold {
    border: 1.5px solid #d8bf9a;
    color: #1e2e3e;
    font-weight: 600;
    border-radius: 40px;
    padding: 0.6rem 1.8rem;
    background: transparent;
    transition: 0.2s;
}

.btn-outline-gold:hover {
    background: #d8bf9a;
    color: #0b1c2c;
    border-color: #d8bf9a;
}

.story-card {
    border: none;
    background: white;
    border-radius: 28px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}

.story-card:hover {
    box-shadow: 0 30px 50px -20px rgba(11, 28, 44, 0.12);
    border-color: #f0e6da;
    transform: scale(1.01) translateY(-4px);
    background: white;
}

.story-icon {
    font-size: 2.8rem;
    color: #cbaa6e;
    margin-bottom: 1.5rem;
}

.fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.appeared {
    opacity: 1;
    transform: translateY(0);
}

.scale-img {
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #0b1c2c;
}

.hero-graphic {
    background: radial-gradient(circle at 70% 30%, rgba(203, 170, 110, 0.08) 0%, transparent 70%);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: #d8bf9a;
    margin: 1.5rem 0 2rem;
    border-radius: 2px;
}

.quote-card {
    background: white;
    border-left: 6px solid #cbaa6e;
    padding: 2rem 2.2rem;
    border-radius: 16px;
    box-shadow: 0 12px 25px -10px rgba(0, 0, 0, 0.02);
}

.founder-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #efe6dc;
}

.grid-bg {
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M0 0 L40 0 L40 40 L0 40 Z" fill="none" stroke="%23e2d1b6" stroke-width="0.5" stroke-opacity="0.25"/></svg>');
}

footer a {
    text-decoration: none;
    color: #b0b8c5;
}

footer a:hover {
    color: #d8bf9a;
}

@media screen and (max-width: 430px) {
    .stat-number {
        font-size: 1.5rem;
    }
}