:root { --rust: #D35400; --orange: #E67E22; --warm-white: #FAF3E8; --dark-brown: #2E2723; --mono: 'Roboto Mono', monospace; --sans: 'Public Sans', sans-serif; } body { margin: 0; font-family: var(--sans); background-color: var(--warm-white); color: var(--dark-brown); line-height: 1.6; overflow-x: hidden; } .chill-top { position: sticky; top: 0; background: var(--warm-white); border-bottom: 2px solid var(--rust); display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } .brand-mark { font-family: var(--mono); font-weight: 700; font-size: 1.5rem; color: var(--rust); text-decoration: none; display: flex; align-items: center; gap: 10px; } .nav-links a { margin-left: 1.5rem; text-decoration: none; color: var(--dark-brown); font-family: var(--mono); font-size: 0.9rem; transition: color 0.2s ease; } .nav-links a:hover { color: var(--rust); } .hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; background: #fff; } .hero-text-zone { padding: 10% 15%; display: flex; flex-direction: column; justify-content: center; } .hero-text-zone h1 { font-family: var(--mono); font-size: 3rem; line-height: 1.1; margin-bottom: 1rem; color: var(--dark-brown); } .hero-text-zone p { font-size: 1.2rem; margin-bottom: 2.5rem; color: #555; } .action-btn { display: inline-block; background: var(--rust); color: #fff; padding: 1rem 2rem; text-decoration: none; font-family: var(--mono); font-weight: 700; border-radius: 4px; align-self: flex-start; transition: background 0.2s ease; border: none; cursor: pointer; } .action-btn:hover { background: var(--orange); } .hero-visual img { width: 100%; height: 100%; object-fit: cover; } .praise-row { padding: 4rem 5%; background: var(--warm-white); } .praise-row h2 { font-family: var(--mono); text-align: center; margin-bottom: 3rem; font-size: 2rem; } .feedback-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; } .feedback-card { background: #fff; padding: 2rem; border-left: 4px solid var(--orange); box-shadow: 0 4px 6px rgba(0,0,0,0.02); } .feedback-card img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; } .feedback-card p { font-style: italic; margin-bottom: 1rem; font-size: 0.95rem; } .origin-story { padding: 7rem 5%; background: var(--dark-brown); color: var(--warm-white); } .origin-content { max-width: 800px; margin: 0 auto; } .origin-content h2 { font-family: var(--mono); color: var(--orange); font-size: 2.5rem; margin-bottom: 1.5rem; } .origin-content p { font-size: 1.1rem; margin-bottom: 1.5rem; } .stat-row { display: flex; gap: 4rem; margin-top: 4rem; flex-wrap: wrap; } .stat-block { font-family: var(--mono); } .stat-number { font-size: 3rem; color: var(--rust); font-weight: 700; } .freight-solutions { padding: 5.5rem 5%; background: #fff; } .freight-solutions h2 { font-family: var(--mono); margin-bottom: 4rem; text-align: center; font-size: 2.5rem; } .solution-layout { display: flex; flex-direction: column; gap: 5rem; max-width: 1100px; margin: 0 auto; } .solution-item { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } .solution-item:nth-child(even) { direction: rtl; } .solution-item:nth-child(even) > * { direction: ltr; } .solution-item img { width: 100%; height: 380px; object-fit: cover; border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.08); } .solution-desc h3 { font-family: var(--mono); color: var(--rust); font-size: 1.8rem; margin-bottom: 1rem; } .dispatch-contact { padding: 3rem 5%; background: var(--warm-white); display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .contact-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; border-radius: 8px; } .form-wrap { max-width: 500px; padding: 2rem 0; } .form-wrap h2 { font-family: var(--mono); font-size: 2.2rem; margin-bottom: 2rem; } .form-group { margin-bottom: 1.5rem; } .form-group label { display: block; font-family: var(--mono); font-size: 0.85rem; margin-bottom: 0.5rem; font-weight: 700; } .form-group input, .form-group textarea { width: 100%; padding: 1rem; border: 1px solid #ccc; border-radius: 4px; font-family: var(--sans); box-sizing: border-box; background: #fff; } .form-group input:focus, .form-group textarea:focus { outline: 2px solid var(--orange); border-color: transparent; } .disclaimer-text { font-size: 0.75rem; color: #777; margin-top: 1.5rem; line-height: 1.4; } .site-footer { background: var(--dark-brown); color: #aaa; padding: 4rem 5% 2rem; font-size: 0.9rem; border-top: 5px solid var(--rust); } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 3rem; max-width: 1200px; margin-left: auto; margin-right: auto; } .footer-grid h4 { color: var(--warm-white); font-family: var(--mono); font-size: 1.2rem; margin-bottom: 1rem; } .footer-grid a { color: #aaa; text-decoration: none; transition: color 0.2s; } .footer-grid a:hover { color: var(--orange); } .footer-bottom { text-align: center; border-top: 1px solid #444; padding-top: 2rem; max-width: 1200px; margin: 0 auto; font-family: var(--mono); font-size: 0.8rem; } @media (max-width: 900px) { .hero-split, .solution-item, .dispatch-contact { grid-template-columns: 1fr; } .solution-item:nth-child(even) { direction: ltr; } .hero-text-zone { padding: 4rem 5%; text-align: center; } .hero-text-zone h1 { font-size: 2.2rem; } .action-btn { align-self: center; } .stat-row { flex-direction: column; gap: 2rem; text-align: center; } .contact-visual img { min-height: 300px; } .nav-links { display: none; } }