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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
            background: white;
            color: #1a1a1a;
            line-height: 1.6;
        }

        /* Navigation */
        a{color:inherit;text-decoration:none}
        .topnav{position:fixed;top:0;left:0;right:0;height:var(--nav-height);display:flex;align-items:center;justify-content:space-between;padding:0 28px;background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7));border-bottom:1px solid rgba(0,0,0,0.04);z-index:60;backdrop-filter: blur(6px)}
        .brand{font-weight:700;letter-spacing:0.06em;color:var(--accent-blue);display:flex;align-items:center;gap:12px}
        .brand .name{font-size:14px;color:var(--text);font-weight:700}
        .brand .dot{width:60px;height:60px;border-radius:2px;box-shadow:0 0 8px rgba(184,248,100,0.18)}
        
        .brand .dot img {
          width: 100%;           /* fills the dot */
          height: 100%;
          object-fit: cover;     /* keeps image proportioned */
          display: block;
          margin-left: 8%;
        }
        .navlinks{display:flex;gap:20px;align-items:center;color:#55585b;font-size:14px}
        .navlinks a{padding:8px 10px;border-radius:4px}
        .navlinks a:hover{background:rgba(15,92,132,0.06);color:rgb(234 71 30)}

        /* Sections */
        section {
            min-height: 100vh;
            padding: 8rem 2rem;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .container-small {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Cover Section */
        #cover {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #fafafa 0%, white 100%);
            text-align: center;
        }

        .cover-title {
            font-size: clamp(8rem, 10vw, 20rem);
            font-weight: 900;
            line-height: 0.8;
            margin-bottom: 0.5rem;
            letter-spacing: -0.05em;
        }

        .cover-title.highlight {
            background: linear-gradient(90deg, #ea580c 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .project-grid {
            max-width: 900px;
            margin: 6rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: left;
            border-top: 1px solid #e5e5e5;
            padding-top: 3rem;
        }

        .project-item label {
            font-size: 0.625rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: #999;
            font-weight: 600;
            display: block;
            margin-bottom: 0.5rem;
        }

        .project-item p {
            font-size: 0.875rem;
            font-weight: 500;
        }

        .bounce {
            margin-top: 5rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Section Headers */
        .section-header {
            margin-bottom: 5rem;
        }

        .section-number {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: #999;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .section-number.orange {
            color: #ea580c;
        }

        .section-title {
            font-size: clamp(4rem, 8vw, 8rem);
            font-weight: 900;
            letter-spacing: -0.03em;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 0.875rem;
            color: #666;
            letter-spacing: 0.05em;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 5rem;
        }

        .card {
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
            padding: 2.5rem;
            border-radius: 1.5rem;
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .card-accent {
            height: 0.5rem;
            width: 3rem;
            background: #ea580c;
            border-radius: 1rem;
            margin-bottom: 1.5rem;
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.25rem;
        }

        .card-text {
            font-size: 0.875rem;
            line-height: 1.8;
            color: #555;
        }
        

        /* Alert Box */
        .alert-box {
            position: relative;
            background: linear-gradient(90deg, #fff7ed 0%, rgba(255, 247, 237, 0.5) 100%);
            border-left: 8px solid #ea580c;
            padding: 3rem;
            border-radius: 0 1.5rem 1.5rem 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .alert-label {
            font-size: 0.625rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: #ea580c;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .alert-title {
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .alert-text {
            font-size: 0.875rem;
            line-height: 1.8;
            color: #333;
            max-width: 1000px;
        }

        /* Dark Section */
        .dark-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            color: white;
        }

        .dark-section .section-subtitle {
            color: #999;
        }

        /* Mission Cards */
        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        .mission-card {
            position: relative;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 4rem 3rem;
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            height: 16rem;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .mission-card:hover {
            background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
            border-color: #ea580c;
        }

        .mission-number {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            font-size: 4rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.1);
            transition: all 0.5s ease;
        }

        .mission-card:hover .mission-number {
            color: rgba(255, 255, 255, 0.05);
        }

        .mission-title {
            font-size: 1.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .info-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .info-accent {
            height: 0.25rem;
            width: 5rem;
            background: #ea580c;
            border-radius: 1rem;
            margin-bottom: 2rem;
        }

        /* Focus Words Grid */
        .focus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .focus-card {
            background: linear-gradient(135deg, #fafafa 0%, white 100%);
            border: 1px solid #e5e5e5;
            border-radius: 1.5rem;
            padding: 2rem;
            min-height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: all 0.3s ease;
            cursor: default;
        }

        .focus-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
            border-color: #ea580c;
        }

        .focus-word {
            font-size: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #555;
            transition: color 0.3s ease;
        }

        .focus-word.highlight {
            color: #ea580c;
            font-weight: 900;
        }

        .focus-card:hover .focus-word {
            color: white;
        }

        /* Direction Section */
        .direction-tags {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            font-size: 1.125rem;
            font-weight: 500;
            margin-bottom: 3rem;
        }

        .tag {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
        }

        .tag-light {
            background: #fff7ed;
            color: #ea580c;
        }

        .design-showcase {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            height: 600px;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            margin-bottom: 4rem;
            position: relative;
            overflow: hidden;
        }


        .design-showcase::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(234, 88, 12, 0.1) 0%, transparent 100%);
        }

        .design-showcase-light {
            background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
            border: 1px solid #e0e0e0;
            
        }

        .showcase-text {
            color: rgba(255, 255, 255, 0.4);
            font-size: 1.125rem;
            position: relative;
            z-index: 10;
        }

        /* Analysis Boxes */
        .analysis-box {
            background: rgba(127, 29, 29, 0.2);
            border-left: 4px solid #dc2626;
            padding: 2.5rem;
            border-radius: 0 1.5rem 1.5rem 0;
        }

        .analysis-label {
            font-size: 0.625rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: #fca5a5;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .analysis-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fca5a5;
            margin-bottom: 1rem;
        }

        .analysis-text {
            font-size: 0.875rem;
            line-height: 1.8;
            color: #d1d5db;
        }

        .warning-box {
            background: #fef3c7;
            border-left: 4px solid #f59e0b;
            padding: 2.5rem;
            border-radius: 0 1.5rem 1.5rem 0;
        }

        .warning-label {
            font-size: 0.625rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: #b45309;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .warning-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #78350f;
            margin-bottom: 1rem;
        }

        .warning-text {
            font-size: 0.875rem;
            line-height: 1.8;
            color: #333;
        }

        /* Orange Section */
        .orange-section {
            background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #ea580c 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .orange-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1), transparent);
        }

        .orange-showcase {
            position: relative;
            height: 600px;
            border-radius: 2rem;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        
        .showcase-bg {
            position: absolute;
            inset: 0;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            z-index: 1;
        }
        
        .orange-showcase img {
            position: relative;
            z-index: 2;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        

        .orange-showcase-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.125rem;
        }

        /* Final Mark Section */
        .two-col-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .content-block h3 {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
        }

        .content-block p {
            font-size: 1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .image-placeholder {
            /* background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); */
            height: 500px;
            border-radius: 2rem;
            box-shadow: 0 20px 60px rgba(234, 88, 12, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Image styling for final mark and showcases */
        .image-placeholder img,
        .design-showcase img,
        .orange-showcase img,
        .system-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .image-placeholder::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.2), transparent);
        }

        .image-text {
            color: white;
            font-size: 1.125rem;
            position: relative;
            z-index: 10;
        }

        /* Color Swatches */
        .color-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 4rem;
        }

        .color-section-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: #999;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .swatch-large {
            width: 100%;
            height: 16rem;
            border-radius: 2rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .swatch-large:hover {
            transform: scale(1.05);
        }

        .swatch-small {
            width: 100%;
            height: 7rem;
            border-radius: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }

        .swatch-small:hover {
            transform: scale(1.05);
        }

        .color-info {
            background: white;
            padding: 1.5rem;
            border-radius: 1.5rem;
            border: 1px solid #e5e5e5;
        }

        .color-label {
            font-family: 'Courier New', monospace;
            font-size: 0.75rem;
            color: #999;
            margin-bottom: 0.5rem;
        }

        .color-value {
            font-family: 'Courier New', monospace;
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .color-specs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            font-family: 'Courier New', monospace;
            font-size: 0.75rem;
            color: #555;
        }

        .color-specs-triple {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
        }

        .color-spec-label {
            color: #999;
            margin-bottom: 0.25rem;
        }
        .typo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: 3rem;
            row-gap: 3rem;
        }
        
        /* Make left entire block span both rows */
        .typo-grid > div:first-child {
            grid-row: span 2;
            display: flex;
            flex-direction: column;
        }
        
        /* Make the left showcase stretch to match right column height */
        .typo-grid > div:first-child .typo-showcase {
            height: 100%;
            flex: 1;
        }
        
        /* Right side consistency */
        .typo-grid > div:nth-child(2) .typo-showcase {
            min-height: 300px;
        }
        
        
        /* Existing Typography Showcase CSS */
        .typo-showcase {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            padding: 3rem;
            border-radius: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 3rem;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .typo-showcase img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .typo-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: #999;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        

        .font-weight-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 3rem;
        }

        .font-weight-row {
            display: flex;
            flex-wrap: nowrap;         /* keep in one row */
            gap: 2rem;                 /* space between cards */
            overflow-x: auto;          /* optional: allows scroll on small screens */
            padding-bottom: 1rem;
        }
        
        .font-weight-card {
            flex: 0 0 300px;           /* makes each card a fixed width */
        }

        .weight-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .weight-name {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: #999;
        }

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

        .weight-samples {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .weight-sample {
            line-height: 1.6;
            color: #d1d5db;
        }

        .weight-sample.small { font-size: 0.875rem; color: #d1d5db; }
        .weight-sample.medium { font-size: 1rem; color: #e5e7eb; }
        .weight-sample.large { font-size: 1.25rem; color: white; }

       
        

        /* Prototypes Grid */
        .prototypes-grid {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        

        .prototype-card {
            cursor: pointer;
            height: 1000px;
            
        }
        


        .prototype-title {
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }


        .prototype-desc {
            font-size: 0.875rem;
            color: #666;
        }

        .prototypes-grid {
            grid-template-columns: 1fr;
        }

        .prototype-card {
            height: auto;
            width: 90vw;
            align-items: center;
        
        }


                /* Image styling for prototype items */
        .prototype-image {
            position: relative;
            overflow: hidden;
        }

        .prototype-image img {
            width: 90vw;
            height: auto;
            object-fit: cover;
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .prototype-card {
            height: auto;
            width: 90vw;
        }
        .prototype-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            position: static; /* or remove this line */
        }
        


        /* Visual Inspiration Grid */
        .inspiration-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.5rem;
        }

        .inspiration-item {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .inspiration-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(234, 88, 12, 0.3);
            z-index: 10;
        }

        .inspiration-item::before {
            display: none;
        }

        /* Image styling for inspiration items */
        .inspiration-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }

        .inspiration-overlay {
            display: none;
        }

        .inspiration-label {
            display: none;
        }

       

        /* Conclusion */
        .conclusion-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .conclusion-content {
            position: relative;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem;
            border-radius: 2rem;
        }

        .conclusion-content::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 0;
            bottom: 0;
            width: 0.25rem;
            background: linear-gradient(180deg, #ea580c 0%, #f97316 100%);
            border-radius: 1rem;
        }

        .conclusion-text {
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .conclusion-text.large {
            font-size: 1.25rem;
            color: #e5e7eb;
        }

        .conclusion-text.medium {
            font-size: 1rem;
            color: #d1d5db;
        }

        .divider {
            margin-top: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .divider-line {
            height: 1px;
            width: 6rem;
            background: linear-gradient(90deg, transparent 0%, #ea580c 100%);
        }

        .divider-line.reverse {
            background: linear-gradient(90deg, #ea580c 0%, transparent 100%);
        }

        .divider-icon {
            color: #ea580c;
            font-size: 1.5rem;
        }

        /* Footer */
        footer {
            background: #000;
            color: white;
            padding: 4rem 2rem;
        }

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

        .footer-title {
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .footer-subtitle {
            font-size: 0.875rem;
            color: #999;
        }

        .footer-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: #666;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .footer-text {
            font-size: 0.875rem;
            font-weight: 500;
        }

        .footer-small {
            font-size: 0.75rem;
            color: #666;
            margin-top: 0.25rem;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 2rem;
            text-align: center;
        }

        .footer-copyright {
            font-size: 0.75rem;
            color: #666;
        }

        /* Tablet & Mobile Responsive */
@media (max-width: 980px) {
    :root {
        --left-w: 260px;
    }

    /* Wrap layout adjustments */
    .wrap {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: calc(var(--nav-height) + 8px);
    }

    /* Navigation adjustments */
    .topnav {
        padding: 0 16px;
    }

    .brand .name {
        font-size: 13px;
    }

    .navlinks {
        display: none; /* use hamburger menu */
    }

    /* Grids adjustments */
    .project-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .two-col-grid,
    .typo-grid {
        grid-template-columns: 1fr;
    }

    .color-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .prototypes-grid {
        grid-template-columns: 1fr;
    }

    .inspiration-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Image placeholders */
    .image-placeholder,
    .design-showcase,
    .orange-showcase,
    .system-placeholder {
        height: auto;
        min-height: 300px;
    }

    .prototype-image img {
        width: 100%;
        height: auto;
    }

    .typo-showcase {
        min-height: 200px;
        padding: 2rem;
    }

    .cover-title {
        font-size: clamp(4rem, 12vw, 10rem);
    }

    .section-title {
        font-size: clamp(3rem, 8vw, 6rem);
    }
}

/* Mobile only */
@media (max-width: 520px) {
    body {
        font-size: 14px;
    }

    .cover-title {
        font-size: clamp(3rem, 10vw, 6rem);
    }

    .section-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .project-item p,
    .card-text,
    .alert-text,
    .warning-text,
    .analysis-text,
    .conclusion-text {
        font-size: 0.85rem;
    }

    .cards-grid,
    .project-grid,
    .mission-grid,
    .focus-grid,
    .two-col-grid,
    .typo-grid,
    .color-grid,
    .prototypes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .orange-showcase {
        height: 400px;
    }

    .image-placeholder {
        height: 300px;
    }

    .font-weight-row {
        flex-wrap: wrap;
        overflow-x: hidden;
    }

    .navlinks {
        display: none; /* hide nav links for mobile */
    }

    .brand .dot {
        width: 45px;
        height: 45px;
    }

    .brand .name {
        font-size: 12px;
    }
}

/* Hamburger button */
.hamburger {
    display: none; /* hidden on desktop */
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--accent-blue, #000000);
    z-index: 70;
}

/* Mobile nav menu (hidden by default) */
.navlinks {
    display: flex;
    gap: 20px;
    align-items: center;
    transition: max-height 0.3s ease;
}

/* Links inside nav menu */
.navlinks a {
    padding: 8px 10px;
    border-radius: 4px;
    text-decoration: none;
    color: #55585b;
}

.navlinks a:hover {
    background: rgba(15,92,132,0.06);
    color: rgb(234 71 30);
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .navlinks {
        position: absolute;
        top: var(--nav-height, 80px);
        right: 0;
        background: #ffffff;
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navlinks a {
        padding: 1rem 2rem;
        color:rgb(234 71 30);
        width: 100%;
        text-align: center;
    }

    .navlinks a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .navlinks.active {
        max-height: 500px; /* enough to show all links */
    }
}

