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

:root {
    --lynx-green: #289b41;
    --deep-pine: #0F3317;
    --hunters-moss: #96c31e;
    --forrest-mist: #F5FEF0;
    --beige: #f5ebe6;
    --black: #000000;
    --charcoal: #494949;
    --gray: #B8B8B8;
    --silver: #F8F3ED;
    --white: #FFFFFF;
}

body {
    font-family: 'Futura PT', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    color: var(--black);
    line-height: 1.6;
    background-color: var(--white);
    scroll-behavior: smooth;
    display: flex;
    min-height: 100vh;
}

body.modal-open {
    overflow: hidden;
}

/* Sidebar */
.sidebar {
    width: 240px;
    background-color: var(--white);
    border-right: 1px solid #e8e8e8;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 0 30px 50px 30px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 40px;
}

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

.sidebar-nav {
    padding: 0 30px;
    flex: 1 1 auto;
}

.sidebar-contact-box {
    margin-top: auto;
    padding: 24px 30px 40px;
    border-top: 1px solid #e8e8e8;
    background-color: var(--forrest-mist);
}

.sidebar-contact-heading {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.4;
}

.sidebar-contact-item {
    font-size: 12px;
    margin-bottom: 8px;
}

.sidebar-contact-item:last-child {
    margin-bottom: 0;
}

.sidebar-contact-name {
    display: block;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.sidebar-contact-email {
    color: var(--lynx-green);
    text-decoration: none;
}

.sidebar-contact-email:hover {
    text-decoration: underline;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-link {
    display: block;
    text-decoration: none;
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 400;
    padding: 12px 0;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
    position: relative;
}

.sidebar-link:hover {
    color: var(--lynx-green);
}

.sidebar-link.active {
    color: var(--black);
    font-weight: 500;
}

.sidebar-link.active::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background-color: var(--lynx-green);
}

.sidebar-item-has-submenu {
    border-bottom: 1px solid transparent;
}

.sidebar-parent-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
}

.sidebar-parent-row .sidebar-parent-label {
    flex: 1;
    padding: 12px 0 8px 0;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-parent-arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 4px 8px 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    transition: color 0.2s ease;
}

.sidebar-parent-arrow-btn:hover {
    color: var(--lynx-green);
}

.sidebar-parent-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.sidebar-item-has-submenu.submenu-open .sidebar-parent-arrow {
    transform: rotate(180deg);
}

.sidebar-submenu {
    list-style: none;
    padding-left: 0;
    margin: 0 0 6px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.sidebar-item-has-submenu.submenu-open .sidebar-submenu {
    max-height: 200px;
}

.sidebar-submenu li {
    margin: 0;
}

.sidebar-submenu .sidebar-link {
    padding: 6px 0 6px 16px;
    font-size: 13px;
    border-bottom: none;
}

.sidebar-submenu .sidebar-link::before {
    left: -14px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background-color: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

@media (max-width: 768px) {
    .sidebar-overlay.active {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 240px;
    background-color: var(--white);
}

.section {
    padding: 100px 0;
    border-bottom: 1px solid #f0f0f0;
}

.section:last-child {
    border-bottom: none;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Typography */
.page-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.section-heading-only .section-content {
    padding-bottom: 40px;
}

.section-subtitle {
    font-size: 28px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.section-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 20px;
    max-width: 700px;
}

.section-note {
    font-size: 14px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.large-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 60px;
    max-width: 800px;
}

/* Brand Story */
.intro-text {
    margin-bottom: 80px;
}

.positioning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 100px;
}

.positioning-block {
    padding-right: 20px;
}

.position-number {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray);
    display: block;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e8e8e8;
}

.position-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 15px;
}

.positioning-block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
}

.narrative-section {
    margin-top: 100px;
}

.narrative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    margin-top: 60px;
}

.narrative-block h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 15px;
}

.narrative-block p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--charcoal);
}

/* Logo Section */
.logo-display-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin: 60px 0;
}

.logo-display-item {
    text-align: center;
}

.logo-preview {
    padding: 80px 40px;
    margin-bottom: 30px;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.logo-preview.light {
    background-color: var(--white);
}

.logo-preview.dark {
    background-color: var(--deep-pine);
}

.logo-img {
    max-width: 100%;
    height: auto;
}

.logo-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.logo-download-section {
    margin-top: 60px;
}

.logo-download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
    margin-top: 24px;
}

.logo-download-slot {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logo-download-preview {
    width: 100%;
    height: 80px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    overflow: hidden;
}

.logo-download-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-slot-label {
    font-size: 12px;
    color: var(--charcoal);
}

.download-link {
    display: inline-block;
    font-size: 13px;
    color: var(--lynx-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--lynx-green);
    transition: color 0.2s ease;
}

.download-link:hover {
    color: var(--deep-pine);
    border-bottom-color: var(--deep-pine);
}

.alternative-section {
    margin-top: 100px;
    padding-top: 100px;
    border-top: 1px solid #e8e8e8;
}

.lockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

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

.lockup-preview {
    padding: 60px 30px;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    margin-bottom: 30px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lockup-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.lockup-tagline {
    font-size: 9px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.lockup-tagline-full {
    font-size: 9px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.lockup-tagline-full span {
    color: var(--lynx-green);
    font-weight: 500;
}

.lockup-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Colors Section */
.colors-group {
    margin-bottom: 100px;
}

.color-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.color-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8e8e8;
}

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

.color-swatch {
    width: 120px;
    height: 120px;
    border-radius: 2px;
    flex-shrink: 0;
    border: 1px solid #e8e8e8;
}

.color-details h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
}

.color-details p {
    font-size: 13px;
    color: var(--charcoal);
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    margin-bottom: 3px;
}

.hex-value {
    font-weight: 500;
}

.copy-hex-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 14px;
    background-color: transparent;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    color: var(--charcoal);
    font-size: 12px;
    font-weight: 400;
    font-family: 'Futura PT', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-hex-btn:hover {
    border-color: var(--lynx-green);
    color: var(--lynx-green);
    background-color: var(--forrest-mist);
}

.copy-hex-btn:active {
    transform: scale(0.98);
}

.copy-hex-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.copy-hex-btn.copied {
    border-color: var(--lynx-green);
    color: var(--lynx-green);
    background-color: var(--forrest-mist);
}

.copy-hex-btn.copied::after {
    content: 'Copied!';
    margin-left: 6px;
}

.copy-hex-btn.copied svg {
    display: none;
}

/* Pattern Section */
.pattern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

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

.pattern-preview {
    width: 100%;
    height: 300px;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    margin-bottom: 30px;
}

.pattern-1 {
    background-image: url("/assets/pattern/lynx-pattern1.png");
    background-size: cover;
}

.pattern-2 {
    background-image: url("/assets/pattern/lynx-pattern2.png");
    background-size: cover;
}

.pattern-3 {
    background-image: url("/assets/pattern/lynx-pattern3.png");
    background-size: cover;
}

.pattern-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Typography Section */
.typography-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 100px;
    margin-bottom: 100px;
}

.typography-info p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--charcoal);
}

.typography-specs {
    padding-left: 40px;
    border-left: 1px solid #e8e8e8;
}

.font-display {
    font-size: 64px;
    font-weight: 500;
    color: var(--black);
    margin: 30px 0 50px 0;
    letter-spacing: -0.02em;
}

.font-weights {
    margin-bottom: 50px;
}

.weight-item {
    margin-bottom: 20px;
}

.weight-item span {
    font-size: 14px;
    color: var(--charcoal);
    display: block;
    margin-bottom: 8px;
}

.weight-item .bold {
    font-weight: 700;
}

.divider {
    height: 1px;
    background-color: #e8e8e8;
    width: 100%;
}

.character-sets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.char-set h4 {
    font-size: 11px;
    color: var(--charcoal);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-weight: 400;
}

.char-set p {
    font-size: 13px;
    color: var(--black);
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.marketing-font-section {
    margin-top: 80px;
}

.marketing-font-section .typography-info p {
    font-size: 15px;
}

.marketing-font-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 30px;
}

.marketing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 0;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.marketing-btn.primary {
    background-color: var(--lynx-green);
    border-color: var(--lynx-green);
    color: var(--white);
}

.marketing-btn.primary:hover {
    background-color: #1e7a32;
    border-color: #1e7a32;
}

.marketing-btn.ghost {
    background-color: transparent;
    border-color: var(--lynx-green);
    color: var(--lynx-green);
}

.marketing-btn.ghost:hover {
    background-color: rgba(40, 155, 65, 0.08);
}

.jost-font {
    font-family: 'Jost', 'Futura PT', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.font-weights.marketing-font .weight-item span {
    text-transform: none;
}

.font-summary {
    margin-top: 80px;
    border-top: 1px solid #e8e8e8;
    padding-top: 80px;
}

.font-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.font-summary-card {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 24px;
    background-color: #fff;
}

.font-summary-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.font-summary-card p {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.6;
}

.font-modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1200;
}

.font-modal-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.font-modal {
    width: min(520px, calc(100% - 40px));
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
}

.font-modal-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--black);
}

.font-modal-steps {
    list-style: decimal inside;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--charcoal);
    font-size: 15px;
}

.font-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: var(--charcoal);
}

.font-modal-close:hover {
    color: var(--lynx-green);
}

.font-modal .modal-cta {
    margin-top: 30px;
    width: 100%;
}

.working-font-section {
    margin-top: 100px;
    padding-top: 100px;
    border-top: 1px solid #e8e8e8;
}

.recommended-sizes-section {
    margin-top: 40px;
}

.recommended-sizes-section .section-subtitle {
    font-size: 18px;
    margin-bottom: 16px;
}

.sizes-table {
    width: 100%;
    max-width: 400px;
    border-collapse: collapse;
    font-size: 14px;
}

.sizes-table th,
.sizes-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
}

.sizes-table th {
    font-weight: 500;
    color: var(--black);
}

.sizes-table td {
    color: var(--charcoal);
}

.working-font {
    font-family: 'Sitka Display', 'Sitka Text', 'Georgia', 'Times New Roman', serif;
}

.hierarchy-section {
    margin-top: 100px;
    padding-top: 100px;
    border-top: 1px solid #e8e8e8;
}

.hierarchy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-top: 60px;
}

.hierarchy-specs {
    padding-right: 40px;
}

.spec-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

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

.spec-item h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
}

.spec-item p {
    font-size: 12px;
    color: var(--charcoal);
    font-family: 'Courier New', monospace;
    line-height: 1.6;
}

.hierarchy-example {
    padding: 50px;
    background-color: var(--forrest-mist);
}

.example-eyebrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--lynx-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.example-headline {
    font-size: 48px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 25px;
}

.example-divider {
    height: 1px;
    background-color: #e8e8e8;
    margin: 25px 0;
}

.example-subhead {
    font-size: 24px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
}

.example-paragraph {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.7;
    letter-spacing: -0.01em;
    margin-bottom: 25px;
}

.example-paragraph strong {
    text-decoration: underline;
}

.example-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--lynx-green);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

/* Imagery Section */
.imagery-placeholder {
    padding: 150px 40px;
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

.photos-sample {
    margin-top: 24px;
    max-width: 800px;
}

.photos-sample-img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

/* Downloads Section */
.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
}

.download-category {
    padding-bottom: 50px;
    border-bottom: 1px solid #e8e8e8;
}

.download-category:last-child {
    border-bottom: none;
}

.category-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
}

.category-desc {
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 30px;
}

.download-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.download-btns .download-btn {
    margin: 0;
}

.download-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.download-item {
    display: flex;
    flex-direction: column;
}

.download-preview {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    overflow: hidden;
    background-color: #fafafa;
}

.preview-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.preview-image-file {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.download-preview-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f2f5 0%, #e4e8ec 100%);
    color: var(--charcoal);
    padding: 16px;
    text-align: center;
}

.download-preview-placeholder .placeholder-icon {
    font-size: 28px;
    color: var(--lynx-green);
    margin-bottom: 8px;
    opacity: 0.8;
}

.download-preview-placeholder .placeholder-text {
    font-size: 12px;
    line-height: 1.3;
    color: var(--charcoal);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.download-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 15px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--lynx-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 16px;
    background-color: var(--forrest-mist);
    border: 1px solid rgba(40, 155, 65, 0.25);
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    width: fit-content;
    position: relative;
}

.download-btn::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23289b41'%3E%3Cpath d='M8 11L3 6H6V1h4v5h3L8 11zm0 2l-7-2v2h14v-2L8 13z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.download-btn:hover {
    color: var(--deep-pine);
    background-color: rgba(245, 254, 240, 0.9);
    border-color: var(--lynx-green);
}

.download-btn:hover::before {
    opacity: 1;
}

.download-btn svg {
    width: 16px;
    height: 16px;
}

.download-btn:hover svg {
    transform: translateY(2px);
}

.no-downloads {
    font-size: 13px;
    color: var(--gray);
    font-style: italic;
}

.loading-message {
    font-size: 14px;
    color: var(--charcoal);
    text-align: center;
    padding: 40px 0;
}

.download-description {
    font-size: 12px;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sidebar {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }

    .section-content {
        padding: 0 40px;
    }

    .positioning-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .narrative-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .logo-display-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .lockup-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pattern-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .typography-grid,
    .hierarchy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .typography-specs {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e8e8e8;
        padding-top: 40px;
        margin-top: 40px;
    }
    
    .marketing-font-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .hierarchy-specs {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .sidebar {
        width: 280px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .sidebar.open {
        transform: translateX(0);
        z-index: 1000;
    }

    .main-content {
        margin-left: 0;
        padding-top: 70px;
        position: relative;
        z-index: 1;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open .main-content {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .section {
        padding: 50px 0;
    }

    .section-content {
        padding: 0 20px;
    }

    .page-title {
        font-size: 32px;
        margin-bottom: 30px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .section-intro {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .large-text {
        font-size: 17px;
        margin-bottom: 40px;
    }

    .positioning-grid {
        gap: 40px;
        margin-bottom: 60px;
    }

    .position-title {
        font-size: 20px;
    }

    .narrative-section {
        margin-top: 60px;
    }

    .narrative-grid {
        gap: 40px;
        margin-top: 40px;
    }

    .narrative-block h3 {
        font-size: 18px;
    }

    .logo-display-grid {
        gap: 50px;
        margin: 40px 0;
    }

    .logo-preview {
        padding: 50px 30px;
        min-height: 200px;
    }

    .alternative-section {
        margin-top: 60px;
        padding-top: 60px;
    }

    .lockup-grid {
        gap: 40px;
        margin-top: 40px;
    }

    .lockup-preview {
        padding: 40px 20px;
        min-height: 150px;
    }

    .colors-group {
        margin-bottom: 60px;
    }

    .color-list {
        gap: 30px;
        margin-top: 30px;
    }

    .color-item {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 30px;
    }

    .color-swatch {
        width: 100%;
        max-width: 200px;
        height: 100px;
    }

    .pattern-grid {
        gap: 40px;
        margin-top: 40px;
    }

    .pattern-preview {
        height: 200px;
    }

    .typography-grid {
        gap: 50px;
        margin-bottom: 60px;
    }

    .typography-info p {
        font-size: 14px;
    }

    .font-display {
        font-size: 48px;
        margin: 20px 0 40px 0;
    }

    .font-weights {
        margin-bottom: 40px;
    }

    .character-sets {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .marketing-font-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .marketing-btn {
        width: 100%;
        text-align: center;
    }

    .font-modal {
        padding: 30px 25px;
    }

    .working-font-section {
        margin-top: 60px;
        padding-top: 60px;
    }

    .hierarchy-section {
        margin-top: 60px;
        padding-top: 60px;
    }

    .hierarchy-grid {
        gap: 50px;
        margin-top: 40px;
    }

    .hierarchy-example {
        padding: 30px;
    }

    .example-headline {
        font-size: 36px;
    }

    .example-subhead {
        font-size: 20px;
    }

    .example-paragraph {
        font-size: 16px;
    }

    .downloads-list {
        gap: 40px;
        margin-top: 40px;
    }

    .download-category {
        padding-bottom: 40px;
    }

    .download-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 20px;
    }

    .download-preview {
        margin-bottom: 15px;
    }

    .download-name {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .imagery-placeholder {
        padding: 100px 20px;
    }
}

@media (max-width: 480px) {
    .section-content {
        padding: 0 15px;
    }

    .page-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .large-text {
        font-size: 16px;
    }

    .positioning-grid {
        gap: 30px;
    }

    .narrative-grid {
        gap: 30px;
    }

    .logo-display-grid {
        gap: 40px;
    }

    .lockup-grid {
        gap: 30px;
    }

    .pattern-grid {
        gap: 30px;
    }

    .download-items-grid {
        grid-template-columns: 1fr;
    }

    .font-display {
        font-size: 40px;
    }

    .font-modal {
        padding: 25px 20px;
    }

    .example-headline {
        font-size: 28px;
    }
}

