:root {
    --bg: #f9f9f9;
    --surface: #ffffff;
    --surface-muted: #f3f3f4;
    --text: #1a1c1c;
    --muted: #5f5e5b;
    --accent: #775a19;
    --accent-soft: #f5f0e6;
    --border: rgba(26, 26, 26, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bodoni Moda', serif;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-size: 1.05em;
    vertical-align: middle;
}

.logo {
    letter-spacing: 0.24em;
    font-size: 1rem;
    text-transform: uppercase;
}

.main-nav .nav-link {
    color: var(--muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--accent);
}

.hero-section {
    min-height: 92vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    opacity: 0;
    transition: opacity 0.8s ease;
    height: 92vh;
    min-height: 560px;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0.72) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1,
.hero-content h2 {
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 1.02;
}

.hero-content p {
    color: rgba(255,255,255,0.85);
}

.hero-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.hero-dot {
    width: 3rem;
    height: 3px;
    background: rgba(255,255,255,0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-dot.active {
    background: #fff;
    transform: scaleX(1.4);
}

.gold-underline {
    position: relative;
    color: var(--accent);
}

.gold-underline::after {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.gold-underline:hover::after {
    transform: scaleX(1);
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-text {
    color: #5a5957;
}

.section-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.section-card:hover {
    transform: translateY(-6px);
    border-color: rgba(119,90,25,0.2);
}

.section-card h3 {
    margin-top: 1.25rem;
}

.section-card p {
    color: #64615e;
}

.cards-grid img,
.masonry-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.masonry-item {
    overflow: hidden;
}

.masonry-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-item:hover .overlay {
    opacity: 1;
}

.masonry-item-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: #fff;
}

.process-step {
    border-bottom: 1px solid rgba(26,26,26,0.08);
    padding: 2rem 0;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step h4 {
    margin-bottom: 0.75rem;
}

.testimonial-box {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(26,26,26,0.08);
    padding: 2.5rem;
    border-radius: 1rem;
}

.testimonial-box p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text);
}

.testimonial-author {
    color: var(--muted);
}

.btn-outline-dark.active,
.nav-link.active {
    color: var(--accent) !important;
    border-color: var(--accent) !important;
}

.tablesaw img,
img {
    max-width: 100%;
}

footer.site-footer {
    background: #111;
    color: rgba(255,255,255,0.87);
}

footer.site-footer a {
    color: rgba(255,255,255,0.82);
}

footer.site-footer a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .hero-controls {
        flex-direction: column;
    }
    .masonry-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-content h1,
    .hero-content h2 {
        font-size: 2.5rem;
    }
    .hero-controls {
        bottom: 1rem;
        gap: 0.75rem;
    }
} 
