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





body {
    font-family: "neue-haas-unica", sans-serif, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #e3e0de;
    color: #141414;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-weight: 400;
}

/* Utility classes matching Tailwind pattern */
.relative { position: relative; }
.absolute { position: absolute; }
.flex { display: flex; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.text-center { text-align: center; }
.overflow-hidden { overflow: hidden; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 8px; }
.transition-colors { transition-property: color, background-color, border-color; }
.transition-opacity { transition-property: opacity; }
.transition-all { transition-property: all; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.delay-500 { transition-delay: 500ms; }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.space-y-\[48px\] > * + * { margin-top: 48px; }
.space-y-\[24px\] > * + * { margin-top: 24px; }
.gap-2 { gap: 8px; }
.gap-8 { gap: 32px; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.inline-block { display: inline-block; }

/* Container */
.max-w-\[508px\] { max-width: 508px; }
.max-w-\[856px\] { max-width: 856px; }

/* Positioning */
.left-6 { left: 24px; }
.right-6 { right: 24px; }
.top-8 { top: 32px; }
.top-10 { top: 40px; }
.top-20 { top: 80px; }
.bottom-\[60px\] { bottom: 60px; }
.left-0 { left: 0; }
.right-0 { right: 0; }

/* Margins and padding */
.mt-\[120px\] { margin-top: 120px; }
.mt-\[150px\] { margin-top: 150px; }
.mt-\[60px\] { margin-top: 60px; }
.mt-\[80px\] { margin-top: 80px; }
.mt-\[40px\] { margin-top: 40px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-16 { margin-top: 64px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-8 { padding-left: 32px; padding-right: 32px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.px-2 { padding-left: 8px; padding-right: 8px; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }
.p-8 { padding: 32px; }
.pb-\[60vh\] { padding-bottom: 60vh; }

/* Heights */
.h-9 { height: 36px; }
.h-full { height: 100%; }

/* Widths */
.w-full { width: 100%; }

/* Text sizes */
.text-lg { font-size: 18px; }
.text-sm { font-size: 14px; }
.text-\[16px\] { font-size: 16px; }
.text-\[18px\] { font-size: 18px; }
.text-\[20px\] { font-size: 20px; }
.text-\[24px\] { font-size: 24px; }
.text-\[28px\] { font-size: 28px; }
.text-\[30px\] { font-size: 30px; }
.text-\[40px\] { font-size: 40px; }
.text-\[14px\] { font-size: 14px; }
.text-\[12px\] { font-size: 12px; }

/* Font weights */
.font-bold { font-weight: 700; }

/* Line heights */
.leading-\[1\.4\] { line-height: 1.4; }
.leading-\[1\.6\] { line-height: 1.6; }

/* Colors */
.text-\[\#141414\] { color: #141414; }
.text-\[\#C8C8C8\] { color: #C8C8C8; }
.text-\[\#141414\]\/40 { color: rgba(35, 35, 35, 0.4); }
.text-white { color: white; }

/* Backgrounds */
.bg-\[\#141414\] { background-color: #141414; }
.bg-black\/\[0\.02\] { background-color: rgba(0, 0, 0, 0.02); }
.bg-black\/5 { background-color: rgba(0, 0, 0, 0.05); }

/* Borders */
.border { border: 1px solid; }
.border-black { border-color: #141414; }
.border-black\/5 { border-color: rgba(0, 0, 0, 0.05); }

/* Aspect ratios */
.aspect-\[16\/10\] { aspect-ratio: 16/10; }



/* Hover states */
.hover\:bg-black\/\[0\.03\]:hover { background-color: rgba(0, 0, 0, 0.03); }
.hover\:bg-\[\#141414\]\/80:hover { background-color: rgba(35, 35, 35, 0.8); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-2px); }
.hover\:text-\[\#141414\]:hover { color: #141414; }

/* Responsive */
@media (min-width: 1024px) {
    .lg\:max-w-\[856px\] { max-width: 856px; }
    .lg\:top-20 { top: 80px; }
    .lg\:mt-\[150px\] { margin-top: 150px; }
    .lg\:mt-\[80px\] { margin-top: 80px; }
    .lg\:text-\[40px\] { font-size: 40px; }
    .lg\:text-\[18px\] { font-size: 18px; }
    .lg\:text-\[28px\] { font-size: 28px; }
    .lg\:text-\[20px\] { font-size: 20px; }
    .lg\:mt-16 { margin-top: 64px; }
}

/* Word styling */
.word {
    transition: opacity 0.5s ease;
    margin-right: 0.1em;
}

.opacity-25 {
    opacity: 0.25 !important;
}

.opacity-100 {
    opacity: 1 !important;
}

/* Project highlights */
.project-highlight {
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(20px);
}

.project-highlight.animate {
    opacity: 1 !important;
    transform: translateY(0);
}

/* Value prop */
.value-prop {
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(30px);
}

.value-prop.animate {
    opacity: 1 !important;
    transform: translateY(0);
}

/* Additional utility classes */
.text-blue-600 { color: #2563eb; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:scale-105:hover { transform: scale(1.05); }
.border-blue-500 { border-color: #3b82f6; }
.border-green-500 { border-color: #10b981; }
.bg-pink-100 { background-color: #fce7f3; }
.text-pink-800 { color: #9d174d; }
.bg-green-100 { background-color: #dcfce7; }
.text-green-800 { color: #166534; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.bg-gray-50 { background-color: #f9fafb; }
.border-gray-300 { border-color: #d1d5db; }
.border-dashed { border-style: dashed; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.space-y-3 > * + * { margin-top: 0.75rem; }

/* Remove link styling */
a {
    text-decoration: none;
    color: inherit;
}

/* Expandable work section */
.work-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-section.expanded {
    max-height: 4000px; /* Increased for longer content */
}

.work-section-content {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.6;
    color: #141414;
}

@media (min-width: 1024px) {
    .work-section-content {
        font-size: 40px;
    }
}

/* Contact dropdown styles */
.contact-dropdown {
    position: relative;
}

.contact-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: #e3e0de;
    border: 1px solid #141414;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-menu.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-menu.hidden {
    display: none;
}

.contact-option {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #141414;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.15s ease;
    border-radius: 6px;
    margin: 4px;
}

.contact-option:first-child {
    border-radius: 6px 6px 0 0;
}

.contact-option:last-child {
    border-radius: 0 0 6px 6px;
}

.contact-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
}