/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #333333;
    background-color: #FAFAFA;
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Anton', sans-serif;
    color: #1a1a1a;
}

/* Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #000000;
    color: #ffffff;
    padding: 2rem 0;
    z-index: 1000;
    overflow-y: auto;
}

.nav-header {
    padding: 0 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.nav-logo-img {
    margin-bottom: 1rem;
}

.ktb-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    display: block;
}

.sidebar-logo {
    max-width: 120px;
    height: auto;
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.25rem;
}

.nav-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    list-style: none;
    margin-top: 2rem;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 0.75rem 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #FDB913;
    background: rgba(253, 185, 19, 0.1);
    border-left-color: #FDB913;
}

/* Main Content */
.content {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 5rem 4rem 4rem;
    background: #000000;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero Image */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(253, 185, 19, 0.2);
    color: #FDB913;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FDB913;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Guideline Sections */
.guideline-section {
    padding: 1.6rem 4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    overflow-x: hidden;
    max-width: 100%;
}

.guideline-section:nth-child(even) {
    background: #FAFAFA;
}

.section-header {
    max-width: 800px;
    margin-bottom: 4rem;
}

.section-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E31B23;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

/* Campaign Overview */
.overview-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
}

.overview-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 107, 63, 0.1);
}

.overview-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #006B3F;
}

.overview-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #006B3F;
}

.overview-card p {
    color: #666;
    line-height: 1.6;
}

/* Video Showcase */
.video-showcase {
    max-width: 1000px;
}

.main-video {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 4rem;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.video-container {
    background: #000;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 1rem;
}

.play-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background: rgba(227, 27, 35, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-icon:hover {
    transform: scale(1.1);
}

.video-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.video-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.video-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec {
    font-size: 0.85rem;
    color: #888;
    background: #f5f5f5;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.subsection-title {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #333;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.video-card:hover {
    transform: translateY(-2px);
}

.video-thumbnail {
    height: 120px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-icon-small {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(227, 27, 35, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.video-card h4 {
    font-size: 1rem;
    padding: 1rem 1rem 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.video-card p {
    font-size: 0.85rem;
    color: #666;
    padding: 0 1rem 1rem;
}

/* Key Visuals */
.visuals-showcase {
    max-width: 1000px;
}

.hero-visual {
    margin-bottom: 4rem;
}

.visual-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #006B3F 0%, #004d2d 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    gap: 0.5rem;
    overflow: hidden;
}

.visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.visual-card:hover .visual-img {
    transform: scale(1.05);
}

/* Lightbox Modal with Asset Details */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow-y: auto;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10001;
    border-radius: 50%;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-image-section {
    flex: 1;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-details {
    width: 380px;
    padding: 2rem;
    overflow-y: auto;
    background: #fff;
    flex-shrink: 0;
}

.lightbox-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.lightbox-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.asset-detail-section {
    margin-bottom: 1.5rem;
}

.asset-detail-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #006B3F;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.asset-detail-section h4 i {
    font-size: 0.85rem;
}

.usage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.usage-list li {
    font-size: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.usage-list li i {
    color: #006B3F;
    font-size: 0.75rem;
    width: 16px;
}

.rights-info p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.rights-info strong {
    color: #333;
}

.asset-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.meta-label {
    color: #888;
}

.meta-value {
    color: #333;
    font-weight: 500;
}

.guidelines-note {
    background: rgba(0, 107, 63, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #006B3F;
}

.guidelines-note p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guidelines-note a {
    color: #006B3F;
    text-decoration: underline;
}

.lightbox-download-btn {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Lightbox Responsive */
@media (max-width: 900px) {
    .lightbox-container {
        flex-direction: column;
        max-height: none;
    }
    
    .lightbox-image-section {
        min-height: 250px;
    }
    
    .lightbox-details {
        width: 100%;
        max-height: 50vh;
    }
    
    .usage-list {
        grid-template-columns: 1fr;
    }
}

/* Email Capture Modal */
.email-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.email-modal.active {
    display: flex;
}

.email-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.email-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.email-modal-close:hover {
    color: #333;
}

.email-modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 107, 63, 0.1);
    color: #006B3F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.email-modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.email-modal-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-form input[type="email"] {
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.2s ease;
}

.email-form input[type="email"]:focus {
    outline: none;
    border-color: #006B3F;
}

.email-form .download-btn {
    padding: 1rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

/* Form Select Dropdowns */
.form-select {
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.2s ease;
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select:focus {
    outline: none;
    border-color: #006B3F;
}

.form-select option {
    padding: 0.5rem;
}

/* Consent Checkbox */
.consent-group {
    text-align: left;
    margin: 0.5rem 0;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #006B3F;
    cursor: pointer;
    flex-shrink: 0;
}

.consent-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.consent-text a {
    color: #006B3F;
    text-decoration: underline;
}

.email-privacy {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #999;
}

.email-privacy a {
    color: #006B3F;
    text-decoration: underline;
}

/* Privacy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.privacy-modal.active {
    display: flex;
}

.privacy-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.privacy-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.privacy-modal-close:hover {
    color: #333;
}

.privacy-modal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.privacy-updated {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 2rem;
    font-style: italic;
}

.privacy-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #006B3F;
}

.privacy-body p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-body ul {
    margin: 0.5rem 0 1rem 1.5rem;
    color: #555;
}

.privacy-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-body a {
    color: #006B3F;
}

.privacy-close-btn {
    margin-top: 2rem;
    width: 100%;
}

.visual-placeholder.large {
    background-image: url('images/keyvisuals/watamu_love.jpg');
    /* background-position: center; */
background-size: cover;
    background-repeat: no-repeat;
    height: 564px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.visual-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.visual-actions {
    display: flex;
    gap: 1rem;
}

.visuals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.visual-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.visual-card h4 {
    font-size: 1rem;
    padding: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Download Buttons & Links */
.download-btn {
    display: inline-block;
    background: #E31B23;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.download-btn:hover {
    background: #c41820;
    transform: translateY(-1px);
}

.download-btn.secondary {
    background: transparent;
    border: 2px solid #E31B23;
    color: #E31B23;
}

.download-btn.secondary:hover {
    background: #E31B23;
    color: #fff;
}

.download-btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.download-btn.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.download-link {
    display: inline-block;
    color: #E31B23;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.download-link:hover {
    color: #c41820;
}

/* Color System */
.color-system {
    max-width: 1000px;
}

.color-group {
    margin-bottom: 4rem;
}

.color-group-title {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #003D29;
    font-family: 'Graphik', sans-serif;
    font-weight: 500;
}

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

.color-swatch-large {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 61, 41, 0.1);
}

.swatch {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.color-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Graphik', sans-serif;
    font-weight: 500;
}

.color-code {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
    background: #f8f8f8;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.color-usage {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
}

.color-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.color-swatch-small {
    text-align: center;
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 61, 41, 0.1);
}

.color-swatch-small .swatch {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.color-name {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.color-swatch-small .color-code {
    font-size: 0.8rem;
}

/* Logo Showcase */
.logo-showcase {
    max-width: 800px;
}

.primary-logo-display {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 61, 41, 0.1);
}

.logo-container-large {
    margin-bottom: 2rem;
}

.logo-symbol {
    font-size: 6rem;
    color: #FF00A1;
    line-height: 1;
}

.primary-logo-display h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Graphik', sans-serif;
}

.primary-logo-display p {
    color: #666;
    max-width: 400px;
    margin: 0 auto;
}

.logo-variations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.logo-variant {
    text-align: center;
}

.logo-box {
    width: 300px;
    height: 250px;
    background: white;
    border: 1px solid rgba(0, 61, 41, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 1.6rem;
}

.logo-box> img{
    width: 100%;
}

.logo-box.dark {
    background: #003D29;
}

.logo-symbol-small {
    font-size: 2rem;
    color: #FF00A1;
}

.logo-symbol-small.white {
    color: #FAF1E5;
}

.logo-text {
    font-family: 'Graphik', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #003D29;
    letter-spacing: 2px;
}

.logo-variant span {
    font-size: 0.9rem;
    color: #666;
}

/* Typography System */
.typography-system {
    max-width: 1000px;
    display: grid;
    gap: 4rem;
}

.font-display {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 61, 41, 0.1);
    overflow: hidden;
}

.font-specimen {
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.display-font,
.body-font {
    font-size: 4.7rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.display-font {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
}

.body-font {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
}

.font-category {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.alphabet {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.font-weights-demo {
    padding: 2rem 3rem;
}

.weight-sample {
    display: grid;
    grid-template-columns: 60px 120px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 61, 41, 0.1);
}

.weight-sample:last-child {
    border-bottom: none;
}

.weight-number {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #666;
}

.weight-name {
    font-size: 0.9rem;
    color: #666;
}

.sample-text {
    font-size: 1.1rem;
}

.anton-regular { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; }
.gill-sans-light { font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif; font-weight: 300; }
.gill-sans-regular { font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif; font-weight: 400; }
.gill-sans-semibold { font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif; font-weight: 600; }

/* Typography Usage */
.typography-usage {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.usage-examples {
    display: grid;
    gap: 1rem;
}

.usage-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.usage-label {
    font-weight: 600;
    color: #333;
}

.usage-font {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Courier New', monospace;
}

/* Campaign Guidelines */
.guidelines-content {
    max-width: 900px;
    display: grid;
    gap: 2rem;
}

.guideline-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.guideline-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #006B3F;
}

.logo-guidelines {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.logo-example {
    text-align: center;
}

.logo-example .logo-box {
    width: 300px;
    height: 250px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
    padding: 1.6rem;
}

.logo-example .logo-box.dark {
    background: #1a1a1a;
}

.ktb-logo-display {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #006B3F;
    letter-spacing: 2px;
}

.ktb-logo-display.white {
    color: #ffffff;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: #333;
}

.tagline.white {
    color: #ffffff;
}

.logo-example span:last-child {
    font-size: 0.85rem;
    color: #666;
}

.guideline-rules {
    list-style: none;
    padding-left: 0;
}

.guideline-rules li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.guideline-rules li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #006B3F;
    font-weight: bold;
}

.tagline-examples {
    display: grid;
    gap: 1rem;
}

.tagline-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.tagline-display {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.tagline-context {
    font-size: 0.9rem;
    color: #666;
}

.dos-donts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dos h4, .donts h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.dos h4 {
    color: #006B3F;
}

.donts h4 {
    color: #E31B23;
}

.dos ul, .donts ul {
    list-style: none;
    padding: 0;
}

.dos li, .donts li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.dos li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #006B3F;
}

.donts li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #E31B23;
}

/* Asset Repository */
.assets-content {
    max-width: 900px;
    display: grid;
    gap: 2rem;
}

.asset-category {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.category-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: #006B3F;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-info h3 {
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.category-info p {
    font-size: 0.9rem;
    color: #666;
}

.asset-list {
    padding: 1rem 2rem;
}

.asset-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.asset-item:last-child {
    border-bottom: none;
}

.asset-name {
    font-weight: 500;
    color: #333;
}

.asset-size {
    font-size: 0.85rem;
    color: #888;
    margin-right: 1rem;
}

.full-download {
    background: linear-gradient(135deg, #006B3F 0%, #004d2d 100%);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.full-download-content h3 {
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.full-download-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.total-size {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.full-download .download-btn.large {
    background: #FDB913;
    color: #1a1a1a;
}

.full-download .download-btn.large:hover {
    background: #e5a711;
}

/* Additional Info */
.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.hashtags, .social-handles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hashtag, .handle {
    background: #006B3F;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Photography */
.photography-examples {
    max-width: 1000px;
    margin-bottom: 4rem;
}

.photo-example.large {
    margin-bottom: 3rem;
}

.photo-placeholder-large {
    height: 300px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.photo-placeholder-small {
    height: 150px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1rem;
}

.photo-example p {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

.photo-principles h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Graphik', sans-serif;
}

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

.principle {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 61, 41, 0.1);
}

.principle h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Graphik', sans-serif;
    color: #FF00A1;
}

.principle p {
    color: #666;
    line-height: 1.6;
}

/* Philosophy */
.philosophy-content {
    max-width: 800px;
}

.mission-statement {
    margin-bottom: 4rem;
    text-align: center;
}

.mission-statement blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: #003D29;
    font-family: 'Playfair Display', serif;
    padding: 2rem 0;
}

.core-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 61, 41, 0.1);
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Graphik', sans-serif;
    color: #003D29;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Voice & Tone */
.voice-overview {
    max-width: 900px;
}

.voice-characteristics {
    margin-bottom: 4rem;
}

.voice-characteristics h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Graphik', sans-serif;
}

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

.characteristic {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 61, 41, 0.1);
    text-align: center;
}

.trait {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #FF00A1;
    margin-bottom: 0.5rem;
}

.description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.tone-examples-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tone-example-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 61, 41, 0.1);
}

.tone-example-card h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Graphik', sans-serif;
    color: #003D29;
}

.tone-sample {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #FF00A1;
}

.tone-note {
    font-size: 0.85rem;
    color: #666;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
}

.contact-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 107, 63, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    background: rgba(0, 107, 63, 0.1);
    color: #006B3F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #006B3F;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-link {
    color: #E31B23;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    background: rgba(227, 27, 35, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.2s ease;
}

.contact-link:hover {
    background: #E31B23;
    color: white;
}

/* Press Kit Section */
.press-kit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin-bottom: 2rem;
}

.press-kit-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.press-kit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 107, 63, 0.1);
}

.press-kit-card.featured {
    background: linear-gradient(135deg, rgba(0, 107, 63, 0.05) 0%, rgba(0, 61, 41, 0.08) 100%);
    border-color: rgba(0, 107, 63, 0.2);
}

.press-kit-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 107, 63, 0.1);
    color: #006B3F;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.press-kit-content {
    flex: 1;
}

.press-kit-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.press-kit-content > p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.press-kit-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.press-kit-highlights li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.press-kit-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: #006B3F;
    border-radius: 50%;
}

.ceo-quote {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    padding: 1rem 1.25rem;
    background: rgba(0, 107, 63, 0.05);
    border-left: 3px solid #006B3F;
    border-radius: 0 8px 8px 0;
    margin: 1rem 0;
}

.ceo-name {
    font-size: 0.85rem;
    color: #006B3F;
    font-weight: 600;
    margin-bottom: 1rem;
}

.press-kit-card .download-btn.small {
    margin-top: auto;
    align-self: flex-start;
}

.press-contact {
    max-width: 1000px;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    color: #fff;
}

.press-contact-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.press-contact-content h3 i {
    color: #006B3F;
}

.press-contact-content > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.press-contact-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.press-contact-details .contact-link {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.press-contact-details .contact-link:hover {
    background: #006B3F;
}

@media (max-width: 768px) {
    .press-kit-grid {
        grid-template-columns: 1fr;
    }
    
    .press-contact-details {
        flex-direction: column;
        gap: 1rem;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 107, 63, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(0, 107, 63, 0.03);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 0.85rem;
    color: #006B3F;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: rgba(0, 107, 63, 0.05);
    color: #006B3F;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 0.75rem 0 1rem 1.5rem;
    color: #555;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-answer a {
    color: #006B3F;
    text-decoration: underline;
}

.attribution-example {
    font-style: italic;
    background: rgba(0, 107, 63, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border-left: 3px solid #006B3F;
}

/* Language Tabs */
.language-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    max-width: 1000px;
}

.language-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    transition: all 0.2s ease;
}

.language-tab:hover {
    border-color: #006B3F;
    color: #006B3F;
}

.language-tab.active {
    background: #006B3F;
    border-color: #006B3F;
    color: #fff;
}

.lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-name {
    font-weight: 600;
}

.language-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 107, 63, 0.05);
    border-radius: 8px;
    margin-bottom: 2rem;
    max-width: 1000px;
    font-size: 0.9rem;
    color: #555;
}

.language-notice i {
    color: #006B3F;
    font-size: 1.1rem;
}

.language-notice .current-language {
    color: #006B3F;
}

@media (max-width: 768px) {
    .language-tabs {
        gap: 0.5rem;
    }
    
    .language-tab {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .lang-name {
        display: none;
    }
    
    .language-tab.active .lang-name {
        display: inline;
    }
}

/* Footer */
.site-footer {
    background: #7e6565;
    color: #fff;
    padding: 4rem 0 0;
    margin-left: -4rem;
    margin-right: -4rem;
    margin-bottom: -4rem;
    padding-left: 4rem;
    padding-right: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Anton', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #FDB913;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #FDB913;
    color: #000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #FDB913;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(90deg, #232625 0%, #0f1f18 100%);
    z-index: 1001;
    padding: 0 1rem;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.mobile-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.mobile-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hamburger Menu Button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1002;
    flex-shrink: 0;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Close Button */
.nav-close {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.nav-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Nav Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mobile-header {
        display: flex;
    }
    
    .nav-close {
        display: flex;
    }
    
    .sidebar-nav {
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(180deg, #232625 0%, #0f1f18 100%);
    }
    
    .sidebar-nav.open {
        transform: translateX(0);
    }
    
    .nav-header {
        padding-top: 3rem;
    }
    
    .content {
        margin-left: 0;
        padding-top: 60px;
    }
    
    .hero-section {
        padding: 6rem 2rem 4rem;
        min-height: calc(100vh - 60px);
    }
    
    .guideline-section {
        padding: 1.6rem 2rem;
    }
    
    .site-footer {
        margin-left: -2rem;
        margin-right: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .main-video {
        grid-template-columns: 1fr;
    }
    
    .video-info {
        padding: 1.5rem;
    }
    
    .full-download {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 1rem 3rem;
        min-height: calc(100vh - 60px);
    }
    
    .guideline-section {
        padding: 3rem 1rem;
    }
    
    .mobile-header {
        padding: 0 0.75rem;
    }
    
    .mobile-title {
        font-size: 1.25rem;
    }
    
    .site-footer {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .color-swatches {
        grid-template-columns: 1fr;
    }
    
    .color-swatch-large {
        flex-direction: column;
        text-align: center;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .visuals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .visual-placeholder.large {
        height: 250px;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .logo-guidelines {
        flex-direction: column;
        align-items: center;
    }
    
    .dos-donts {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .asset-item {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .asset-name {
        flex: 1 1 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
    }
    
    .usage-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .mobile-header {
        padding: 0 0.5rem;
    }
    
    .mobile-title {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 4rem 0.75rem 3rem;
    }
    
    .guideline-section {
        padding: 2.5rem 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .color-grid-small {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .visuals-grid {
        grid-template-columns: 1fr;
    }
    
    .video-placeholder {
        height: 200px;
    }
    
    .visual-placeholder.large {
        height: 200px;
    }
    
    .visual-actions {
        flex-direction: column;
    }
    
    .download-btn {
        width: 100%;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .overview-card {
        padding: 1.5rem;
    }
    
    .guideline-card {
        padding: 1.5rem;
    }
    
    .category-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .asset-list {
        padding: 1rem 1.5rem;
    }
    
    .full-download {
        padding: 1.5rem;
    }
    
    .hashtags, .social-handles {
        justify-content: center;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .tone-examples-new {
        grid-template-columns: 1fr;
    }
}
