/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --crtcl-bg-dark: #0a0a0a;
    --crtcl-bg-panel: #141414;
    --crtcl-text-main: #f0f0f0;
    --crtcl-text-muted: #a0a0a0;
    --crtcl-accent: #d4af37; /* Gold */
    --crtcl-accent-dim: rgba(212, 175, 55, 0.2);
    --crtcl-primary: #3a0812; /* Deep Burgundy */
    --crtcl-primary-light: #5a0c1c;
    
    --crtcl-font-head: 'Playfair Display', serif;
    --crtcl-font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--crtcl-font-body);
    background-color: var(--crtcl-bg-dark);
    color: var(--crtcl-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--crtcl-font-head);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--crtcl-accent);
}

a {
    color: var(--crtcl-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

.crtcl-layout-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.crtcl-top-bar {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--crtcl-primary-light);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

.crtcl-top-bar .crtcl-layout-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crtcl-brand-zone {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.crtcl-logo-mark {
    font-family: var(--crtcl-font-head);
    font-size: 2.5rem;
    color: var(--crtcl-accent);
    border: 2px solid var(--crtcl-accent);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.crtcl-brand-info {
    display: flex;
    flex-direction: column;
}

.crtcl-brand-name {
    font-family: var(--crtcl-font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.crtcl-brand-sub {
    font-size: 0.85rem;
    color: var(--crtcl-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.crtcl-age-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--crtcl-accent);
    color: var(--crtcl-accent);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.crtcl-main-showcase {
    background: linear-gradient(135deg, var(--crtcl-primary) 0%, var(--crtcl-bg-dark) 100%);
    padding: 8rem 0;
    text-align: center;
    border-bottom: 1px solid #222;
}

.crtcl-showcase-box {
    max-width: 800px;
    margin: 0 auto;
}

.crtcl-overtitle {
    display: block;
    color: var(--crtcl-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.crtcl-hero-heading {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.crtcl-hero-desc {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.crtcl-hero-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.crtcl-metric-item {
    background-color: var(--crtcl-bg-panel);
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--crtcl-accent);
    min-width: 200px;
    text-align: left;
}

.crtcl-metric-val {
    display: block;
    font-family: var(--crtcl-font-head);
    font-size: 1.5rem;
    color: var(--crtcl-accent);
    margin-bottom: 0.3rem;
}

.crtcl-metric-lbl {
    display: block;
    font-size: 0.85rem;
    color: var(--crtcl-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.crtcl-info-segment {
    padding: 6rem 0;
}

.crtcl-segment-alt {
    background-color: var(--crtcl-bg-panel);
}

.crtcl-segment-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.crtcl-segment-title {
    font-size: 2.8rem;
}

.crtcl-segment-intro {
    font-size: 1.1rem;
    color: var(--crtcl-text-muted);
}

.crtcl-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.crtcl-feature-box {
    background-color: var(--crtcl-bg-dark);
    border: 1px solid #222;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-top: 3px solid var(--crtcl-primary-light);
}

.crtcl-segment-alt .crtcl-feature-box {
    background-color: #111;
}

.crtcl-feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--crtcl-accent);
}

.crtcl-feat-kicker {
    display: inline-block;
    color: var(--crtcl-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--crtcl-accent-dim);
    padding-bottom: 0.3rem;
}

.crtcl-feat-title {
    font-size: 1.8rem;
    color: #fff;
}

.crtcl-feat-text {
    color: #aaa;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.crtcl-feat-list {
    list-style: none;
}

.crtcl-feat-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 0.95rem;
}

.crtcl-feat-list li::before {
    content: "♦";
    color: var(--crtcl-accent);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}

/* Footer */
.crtcl-bottom-area {
    background-color: #050505;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid var(--crtcl-accent-dim);
}

.crtcl-footer-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #222;
}

.crtcl-footer-slogan {
    font-size: 2.2rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.crtcl-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.crtcl-foot-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--crtcl-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.crtcl-foot-text {
    color: #888;
    font-size: 0.9rem;
}

.crtcl-foot-list {
    list-style: none;
}

.crtcl-foot-list li {
    color: #888;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.crtcl-foot-list strong {
    color: #aaa;
}

.crtcl-foot-nav a {
    color: #888;
}

.crtcl-foot-nav a:hover {
    color: var(--crtcl-accent);
}

.crtcl-footer-copy {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .crtcl-hero-heading {
        font-size: 2.8rem;
    }
    
    .crtcl-brand-zone {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .crtcl-top-bar .crtcl-layout-wrap {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .crtcl-metric-item {
        width: 100%;
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--crtcl-accent);
    }
}
